Socket
Socket
Sign inDemoInstall

turf

Package Overview
Dependencies
Maintainers
1
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

turf - npm Package Compare versions

Comparing version 0.0.93 to 0.0.94

lib/donuts.js

4

index.js
module.exports = {
donuts: require('./lib/donuts'),
within: require('./lib/within'),

@@ -52,3 +53,2 @@ concave: require('./lib/concave'),

union: require('./lib/union')
}
}
//https://github.com/jasondavies/conrec.js
//http://stackoverflow.com/questions/263305/drawing-a-topographical-map
var t = {}
var _ = require('lodash'),
fs = require('fs')
tin = require('./tin'),
inside = require('./inside'),
grid = require('./grid'),
extent = require('./extent'),
planepoint = require('./planepoint'),
featurecollection = require('./featurecollection'),
polygon = require('./polygon'),
square = require('./square')
t.tin = tin
t.inside = inside
t.grid = grid
t.extent = extent
t.planepoint = planepoint
t.featurecollection = featurecollection
t.polygon = polygon
t.square = square
var t = {}
t.tin = require('./tin')
t.inside = require('./inside')
t.grid = require('./grid')
t.extent = require('./extent')
t.planepoint = require('./planepoint')
t.featurecollection = require('./featurecollection')
t.polygon = require('./polygon')
t.square = require('./square')
//t.erase = require('./erase')
t.donuts = require('./donuts')

@@ -71,3 +65,3 @@ module.exports = function(points, z, resolution, breaks, done){

var contourList = c.contourList()
fs.writeFileSync(__dirname+'/../test/testOut/contourList.json', JSON.stringify(contourList))
//fs.writeFileSync(__dirname+'/../test/testOut/contourList.json', JSON.stringify(contourList))

@@ -89,4 +83,9 @@

})
//fs.writeFileSync('../test/testOut/contour.geojson',JSON.stringify(fc))
done(null, fc)
//fs.writeFileSync(__dirname+'/../test/testOut/contourList.json', JSON.stringify(fc))
// perform donuts function before returning if donuts option is true
t.donuts(fc, function(err, donutPolys){
//console.log(JSON.stringify(contourList))
done(null, donutPolys)
})
})

@@ -93,0 +92,0 @@ })

@@ -6,15 +6,33 @@ // look here for help http://svn.osgeo.org/grass/grass/branches/releasebranch_6_4/vector/v.overlay/main.c

var jsts = require('jsts')
var jsts = require('jsts'),
_ = require('lodash')
var t = {}
t.featurecollection = require('./featurecollection')
module.exports = function(polys1, polys2, done){
module.exports = function(poly1, poly2, done){
poly1 = correctRings(poly1)
poly2 = correctRings(poly2)
var reader = new jsts.io.GeoJSONReader()
var a = reader.read(JSON.stringify(polys1.features[0].geometry))
var b = reader.read(JSON.stringify(polys2.features[0].geometry))
var union = a.difference(b);
var a = reader.read(JSON.stringify(poly1.geometry))
var b = reader.read(JSON.stringify(poly2.geometry))
//console.log('aaaaaaaaa')
var erased = a.difference(b);
//console.log('bbbbbbbbb')
var parser = new jsts.io.GeoJSONParser()
union = parser.write(union)
union = t.featurecollection([union])
done(null, union)
erased = parser.write(erased)
poly1.geometry = erased
//console.log(poly1)
done(null, poly1)
}
function correctRings(poly){
_.each(poly.geometry.coordinates, function(ring){
var isWrapped =_.isEqual(ring[0], ring.slice(-1)[0])
if(!isWrapped){
ring.push(ring[0])
}
})
return poly
}
{
"name": "turf",
"version": "0.0.93",
"version": "0.0.94",
"description": "a node.js library for performing geospatial operations with geojson",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -92,2 +92,3 @@ turf

- [erase](#erase)
- [donuts](#donuts)

@@ -1039,3 +1040,3 @@ ####misc

Calculates polygon 1 minus polygon 2.
Returns polygon 1 minus polygon 2.

@@ -1056,2 +1057,19 @@ ```javascript

###donuts
Takes a set of overlapping polygons and returns non overlapping donuts.
```javascript
var t = require('turf')
t.load('../path/to/donutsIn.geojson', function(err, donutsIn){
if(err) throw err
t.donuts(donutsIn, function(err, donuts){
if(err) throw err
console.log(donuts)
})
})
```
- - -

@@ -1058,0 +1076,0 @@

@@ -13,3 +13,3 @@ var t = require('../index'),

lineOut.geometry.coordinates.should.be.ok
fs.writeFileSync('./testOut/bezier.geojson', JSON.stringify(lineOut))
//fs.writeFileSync('./testOut/bezier.geojson', JSON.stringify(lineOut))
done()

@@ -16,0 +16,0 @@ })

@@ -8,3 +8,3 @@ var t = require('../index'),

t.buffer(pt, 10, 'miles', false, function(err, buffered){
fs.writeFileSync('./testOut/buffered.geojson',JSON.stringify(buffered))
//fs.writeFileSync('./testOut/buffered.geojson',JSON.stringify(buffered))
if(err) throw err

@@ -18,3 +18,3 @@ done()

t.buffer(pt, 10, 'miles', false, function(err, buffered){
fs.writeFileSync('./testOut/bufferedLine.geojson',JSON.stringify(buffered))
//fs.writeFileSync('./testOut/bufferedLine.geojson',JSON.stringify(buffered))
if(err) throw err

@@ -28,3 +28,3 @@ done()

t.buffer(pt, 10, 'miles', false, function(err, buffered){
fs.writeFileSync('./testOut/bufferedPolygon.geojson',JSON.stringify(buffered))
//fs.writeFileSync('./testOut/bufferedPolygon.geojson',JSON.stringify(buffered))
if(err) throw err

@@ -38,3 +38,3 @@ done()

t.buffer(pt, 10, 'miles', false, function(err, buffered){
fs.writeFileSync('./testOut/buffered.geojson',JSON.stringify(buffered))
//fs.writeFileSync('./testOut/buffered.geojson',JSON.stringify(buffered))
if(err) throw err

@@ -48,3 +48,3 @@ done()

t.buffer(pt, 10, 'miles', true, function(err, buffered){
fs.writeFileSync('./testOut/buffered.geojson',JSON.stringify(buffered))
//fs.writeFileSync('./testOut/buffered.geojson',JSON.stringify(buffered))
if(err) throw err

@@ -51,0 +51,0 @@ done()

@@ -10,3 +10,3 @@ var t = require('../index'),

if(err) throw err
//fs.writeFileSync('./testOut/contours1.geojson', JSON.stringify(contours))
fs.writeFileSync('./testOut/contours1.geojson', JSON.stringify(contours))
contours.should.be.ok

@@ -24,3 +24,3 @@ contours.features.should.be.ok

if(err) throw err
//fs.writeFileSync('./testOut/contours2.geojson', JSON.stringify(contours))
fs.writeFileSync('./testOut/contours2.geojson', JSON.stringify(contours))
contours.should.be.ok

@@ -37,3 +37,3 @@ contours.features.should.be.ok

if(err) throw err
//fs.writeFileSync('./testOut/contours3.geojson', JSON.stringify(contours))
fs.writeFileSync('./testOut/contours3.geojson', JSON.stringify(contours))
contours.should.be.ok

@@ -49,3 +49,3 @@ contours.features.should.be.ok

if(err) throw err
//fs.writeFileSync('./testOut/contours4.geojson', JSON.stringify(contours))
fs.writeFileSync('./testOut/contours4.geojson', JSON.stringify(contours))
contours.should.be.ok

@@ -57,7 +57,7 @@ contours.features.should.be.ok

})
it('should take a set of points lopsided edges and output a set of contour polygons', function(done){
xit('should take a set of points lopsided edges and output a set of contour polygons', function(done){
t.load(__dirname+'/testIn/openContourPoints.geojson', function(err, points){
t.contour(points, 'elevation', 15, [5, 15, 40, 80, 90, 110], function(err, contours){
if(err) throw err
//fs.writeFileSync('./testOut/contoursEdges.geojson', JSON.stringify(contours))
fs.writeFileSync('./testOut/contoursEdges.geojson', JSON.stringify(contours))
contours.should.be.ok

@@ -73,3 +73,3 @@ contours.features.should.be.ok

if(err) throw err
//fs.writeFileSync('./testOut/contoursHoles.geojson', JSON.stringify(contours))
fs.writeFileSync('./testOut/contoursHoles.geojson', JSON.stringify(contours))
contours.should.be.ok

@@ -76,0 +76,0 @@ contours.features.should.be.ok

@@ -9,6 +9,6 @@ var t = require('../index'),

t.load(__dirname + '/testIn/Intersect2.geojson', function(err, polys2){
t.erase(polys1, polys2, function(err, erased){
t.erase(polys1.features[0], polys2.features[0], function(err, erased){
if(err) throw err
erased.features[0].should.be.ok
fs.writeFileSync(__dirname + '/testOut/erased.geojson', JSON.stringify(erased))
erased.should.be.ok
fs.writeFileSync(__dirname + '/testOut/erased1.geojson', JSON.stringify(erased))
done()

@@ -19,2 +19,34 @@ })

})
it('should return polygon 1 minus polygon 2 with 1 cut in half', function(done){
t.load(__dirname + '/testIn/erasedFC.geojson', function(err, polys1){
t.erase(polys1.features[0], polys1.features[1], function(err, erased){
if(err) throw err
erased.should.be.ok
fs.writeFileSync(__dirname + '/testOut/erase2.geojson', JSON.stringify(erased))
done()
})
})
})
it('should return polygon 1 minus polygon 2 with 1 having a hole', function(done){
t.load(__dirname + '/testIn/erasedHole.geojson', function(err, polys1){
t.erase(polys1.features[0], polys1.features[1], function(err, erased){
if(err) throw err
erased.should.be.ok
fs.writeFileSync(__dirname + '/testOut/erase3.geojson', JSON.stringify(erased))
done()
})
})
})
it('should return polygon 1 minus polygon 2 with 1 having a shared edge', function(done){
t.load(__dirname + '/testIn/eraseOutside.geojson', function(err, polys1){
t.load(__dirname + '/testIn/eraseInside.geojson', function(err, polys2){
t.erase(polys1, polys1, function(err, erased){
if(err) throw err
erased.should.be.ok
fs.writeFileSync(__dirname + '/testOut/erase3.geojson', JSON.stringify(erased))
done()
})
})
})
})
})

@@ -15,3 +15,3 @@ var t = require('../index'),

outPts.features.length.should.equal(10)
t.save('./testOut/sample.geojson', outPts, 'geojson', function(){})
//t.save('./testOut/sample.geojson', outPts, 'geojson', function(){})
done()

@@ -18,0 +18,0 @@ })

@@ -13,3 +13,3 @@ var t = require('../index'),

simplified.should.be.ok
fs.writeFileSync('./testOut/simplifiedPolygons.geojson', JSON.stringify(simplified))
//fs.writeFileSync('./testOut/simplifiedPolygons.geojson', JSON.stringify(simplified))
done()

@@ -26,3 +26,3 @@ })

simplified.should.be.ok
fs.writeFileSync('./testOut/simplifiedLines.geojson', JSON.stringify(simplified))
//fs.writeFileSync('./testOut/simplifiedLines.geojson', JSON.stringify(simplified))
done()

@@ -39,3 +39,3 @@ })

simplified.should.be.ok
fs.writeFileSync('./testOut/simplifiedPolygon.geojson', JSON.stringify(simplified))
//fs.writeFileSync('./testOut/simplifiedPolygon.geojson', JSON.stringify(simplified))
done()

@@ -52,3 +52,3 @@ })

simplified.should.be.ok
fs.writeFileSync('./testOut/simplifiedLine.geojson', JSON.stringify(simplified))
//fs.writeFileSync('./testOut/simplifiedLine.geojson', JSON.stringify(simplified))
done()

@@ -55,0 +55,0 @@ })

@@ -1,1 +0,1 @@

[[{"x":-90.3131103515625,"y":38.62259108300105},{"x":-90.30052185058594,"y":38.62888533348933},{"x":-90.29422760009766,"y":38.64147383446589},{"x":-90.28079862890671,"y":38.646927614739795},{"x":-90.27534484863283,"y":38.647822740949366},{"x":-90.26902113844709,"y":38.64779754465161},{"x":-90.24390305588885,"y":38.64779754465161},{"x":-90.23757934570314,"y":38.6477725475516},{"x":-90.23130543287263,"y":38.64774774729638},{"x":-90.20608775560393,"y":38.64774774729638},{"x":-90.19981384277344,"y":38.64772314156995},{"x":-90.19192447285192,"y":38.64936320438739},{"x":-90.16993770976525,"y":38.64936320438739},{"x":-90.16204833984375,"y":38.65217040258667},{"x":-90.14400238330447,"y":38.661193380856304},{"x":-90.13497940503484,"y":38.67923933739557},{"x":-90.1330689775175,"y":38.68802547799901},{"x":-90.1330689775175,"y":38.708218699721826},{"x":-90.13173755127909,"y":38.71700484032526},{"x":-90.1307565444362,"y":38.72347854784739},{"x":-90.1307565444362,"y":38.74829663573282},{"x":-90.13000370407771,"y":38.75477034325495},{"x":-90.129804544472,"y":38.760292050812886},{"x":-90.129804544472,"y":38.787014138626695},{"x":-90.12961878499101,"y":38.792535846184634},{"x":-90.12955408560697,"y":38.797807094877534},{"x":-90.12955408560697,"y":38.82503010042142},{"x":-90.12949093641123,"y":38.83030134911432},{"x":-90.12942928234989,"y":38.835447794550156},{"x":-90.12942928234989,"y":38.86292040660817},{"x":-90.12936907094551,"y":38.86806685204401},{"x":-90.12965643474153,"y":38.87344044987148},{"x":-90.12965643474153,"y":38.900458757146225},{"x":-90.12997821411756,"y":38.9058323549737},{"x":-90.13058745533573,"y":38.91213697339535},{"x":-90.13058745533573,"y":38.937293239481725},{"x":-90.1313426520938,"y":38.943597857903384},{"x":-90.13321228221027,"y":38.95252730319959},{"x":-90.13321228221027,"y":38.97243391553687},{"x":-90.13642888424766,"y":38.98136336083308},{"x":-90.14496870277969,"y":38.99844299789712},{"x":-90.16204833984375,"y":39.006982816429144},{"x":-90.17270071598016,"y":39.00847648762635},{"x":-90.18916146663703,"y":39.00847648762635},{"x":-90.19981384277344,"y":39.00964301810722},{"x":-90.20836343193314,"y":39.01057927460305},{"x":-90.22902975654343,"y":39.01057927460305},{"x":-90.23757934570314,"y":39.0113473162391},{"x":-90.24471946917573,"y":39.011988740290136},{"x":-90.26820472516022,"y":39.011988740290136},{"x":-90.27534484863281,"y":39.01253247320935},{"x":-90.28210475833733,"y":39.012368954058246},{"x":-90.30635044185797,"y":39.012368954058246},{"x":-90.3131103515625,"y":39.0121971218192},{"x":-90.31940006921609,"y":39.012839146109165},{"x":-90.3445861368386,"y":39.012839146109165},{"x":-90.35087585449219,"y":39.013372322257744},{"x":-90.35618255012275,"y":39.01382216813221},{"x":-90.38333466179134,"y":39.01382216813221},{"x":-90.38864135742188,"y":39.01420680334597},{"x":-90.39329878285393,"y":39.014471438330695},{"x":-90.42174943491949,"y":39.014471438330695},{"x":-90.42640686035155,"y":39.01470906896305},{"x":-90.43086934938171,"y":39.014666374732585},{"x":-90.45970987425108,"y":39.014666374732585},{"x":-90.46417236328124,"y":39.014622847623244},{"x":-90.46875566333985,"y":39.01454556370415},{"x":-90.49735456615232,"y":39.01454556370415},{"x":-90.50193786621092,"y":39.01446558248755},{"x":-90.50668396971629,"y":39.01438276025738},{"x":-90.53495726563524,"y":39.01438276025738},{"x":-90.53970336914061,"y":39.01429694290303},{"x":-90.54516061344185,"y":39.01367161946152},{"x":-90.57201162776906,"y":39.01367161946152},{"x":-90.5774688720703,"y":39.012860383574555},{"x":-90.5900058324467,"y":39.00659190338636},{"x":-90.60269741462359,"y":39.00659190338636},{"x":-90.60269741462359,"y":38.993900321209466},{"x":-90.60896589481179,"y":38.98136336083307},{"x":-90.61043026536717,"y":38.97655925120025},{"x":-90.61523437499999,"y":38.965373906554724},{"x":-90.62975174076756,"y":38.958115223670944},{"x":-90.63701042365133,"y":38.943597857903384},{"x":-90.6404838300442,"y":38.93108181001793},{"x":-90.6404838300442,"y":38.91834840285915},{"x":-90.642717485285,"y":38.9058323549737},{"x":-90.64370454503853,"y":38.896537022082555},{"x":-90.64370454503853,"y":38.87736218493516},{"x":-90.64451869719679,"y":38.86806685204401},{"x":-90.64629945674908,"y":38.861366430863406},{"x":-90.65299987792967,"y":38.849184100579166},{"x":-90.66558837890624,"y":38.842889850090884},{"x":-90.67188262939452,"y":38.83030134911433},{"x":-90.67188262939452,"y":38.81141859764948},{"x":-90.67188262939452,"y":38.792535846184634},{"x":-90.67706892234075,"y":38.77883938766601},{"x":-90.67706892234075,"y":38.76846680177358},{"x":-90.68002017561818,"y":38.754770343254954},{"x":-90.68204318380353,"y":38.746048146199115},{"x":-90.68204318380353,"y":38.7257270373811},{"x":-90.68342513720991,"y":38.71700484032526},{"x":-90.68131940225629,"y":38.70755886172219},{"x":-90.68131940225629,"y":38.68868531599865},{"x":-90.67751947976664,"y":38.67923933739558},{"x":-90.66934627915431,"y":38.66289293617093},{"x":-90.65299987792967,"y":38.65471973555861},{"x":-90.64685353165801,"y":38.647620180737555},{"x":-90.64242689137042,"y":38.64147383446589},{"x":-90.63336271924693,"y":38.62334549021894},{"x":-90.61523437499999,"y":38.61428131809546},{"x":-90.60667606853042,"y":38.61226663800578},{"x":-90.58602717853987,"y":38.61226663800578},{"x":-90.5774688720703,"y":38.6108968647089},{"x":-90.56947545946453,"y":38.611701744141975},{"x":-90.54769678174638,"y":38.611701744141975},{"x":-90.53970336914062,"y":38.61270958912681},{"x":-90.52940345225528,"y":38.614008248421534},{"x":-90.51223778309625,"y":38.614008248421534},{"x":-90.50193786621092,"y":38.61574481604253},{"x":-90.48746049454478,"y":38.618185703202336},{"x":-90.47864973494737,"y":38.618185703202336},{"x":-90.46417236328124,"y":38.62186839530908},{"x":-90.4456580053088,"y":38.62222268950863},{"x":-90.44492121832398,"y":38.62222268950863},{"x":-90.42640686035155,"y":38.62259108300105},{"x":-90.40752410888672,"y":38.62259108300105},{"x":-90.38864135742188,"y":38.62259108300105},{"x":-90.36975860595703,"y":38.62259108300105},{"x":-90.35087585449219,"y":38.62259108300105},{"x":-90.33199310302734,"y":38.62259108300105},{"x":-90.3131103515625,"y":38.62259108300105}],[{"x":-90.50193786621092,"y":38.639817785055186},{"x":-90.50052074385437,"y":38.640056712109335},{"x":-90.49702669227156,"y":38.64147383446589},{"x":-90.46929849939657,"y":38.64659997058123},{"x":-90.46417236328125,"y":38.64754764400486},{"x":-90.45742826308864,"y":38.64821793465848},{"x":-90.43351462555242,"y":38.64858159966677},{"x":-90.42640686035153,"y":38.64943371530368},{"x":-90.41822062703226,"y":38.64966006778519},{"x":-90.39682759074118,"y":38.6496600677852},{"x":-90.38864135742188,"y":38.649899670478916},{"x":-90.37958015831381,"y":38.650535033573966},{"x":-90.35993705360028,"y":38.650535033573966},{"x":-90.35087585449219,"y":38.65127403255012},{"x":-90.34113556273093,"y":38.651214126227174},{"x":-90.32285064332379,"y":38.651214126227174},{"x":-90.3131103515625,"y":38.65115494784124},{"x":-90.30019750991049,"y":38.654386676117895},{"x":-90.29170618945453,"y":38.65783517528761},{"x":-90.27534484863283,"y":38.66052055391631},{"x":-90.25655118335595,"y":38.660445672118705},{"x":-90.25637441403498,"y":38.660444269063724},{"x":-90.23757934570311,"y":38.66036997372301},{"x":-90.21875760721166,"y":38.66029557295736},{"x":-90.2186355812649,"y":38.66029557295736},{"x":-90.19981384277344,"y":38.66022175577805},{"x":-90.18406928163292,"y":38.66349477625504},{"x":-90.17085923348236,"y":38.67042844375695},{"x":-90.16204833984375,"y":38.673563538828226},{"x":-90.15826447413218,"y":38.675455471684},{"x":-90.15637254127641,"y":38.67923933739557},{"x":-90.1547955118643,"y":38.68649216537503},{"x":-90.14867372961324,"y":38.703630230094745},{"x":-90.14664698000915,"y":38.71700484032526},{"x":-90.14389626769655,"y":38.73515691247246},{"x":-90.14359178766625,"y":38.73631379107744},{"x":-90.14144543840501,"y":38.75477034325495},{"x":-90.14084795958787,"y":38.771335465928765},{"x":-90.14084795958787,"y":38.775970723510824},{"x":-90.14029068114492,"y":38.792535846184634},{"x":-90.14009658299277,"y":38.80834959226333},{"x":-90.14009658299277,"y":38.81448760303563},{"x":-90.13990713540555,"y":38.83030134911433},{"x":-90.13972217322157,"y":38.84574068542183},{"x":-90.13972217322157,"y":38.85262751573649},{"x":-90.13954153900842,"y":38.86806685204401},{"x":-90.14040363039648,"y":38.884187645526424},{"x":-90.14040363039648,"y":38.88971156149129},{"x":-90.14136896852453,"y":38.9058323549737},{"x":-90.14319121051811,"y":38.92468948429932},{"x":-90.1432051577419,"y":38.92475467580155},{"x":-90.1454622824533,"y":38.943597857903384},{"x":-90.14833380535923,"y":38.95731239238789},{"x":-90.15997361168027,"y":38.97928863266959},{"x":-90.16072097891488,"y":38.98136336083308},{"x":-90.16116343255786,"y":38.98224826811898},{"x":-90.16204833984375,"y":38.982690721761934},{"x":-90.16359217687932,"y":38.98290719786865},{"x":-90.19142457651435,"y":38.98975262709216},{"x":-90.19981384277344,"y":38.99067132679616},{"x":-90.21026646430073,"y":38.99181598236037},{"x":-90.22434718034917,"y":38.99459552618704},{"x":-90.23757934570314,"y":38.99578422119181},{"x":-90.2534235503452,"y":38.997207565475144},{"x":-90.25864057693595,"y":38.99806763252994},{"x":-90.27534484863281,"y":38.99933969210254},{"x":-90.29289661073423,"y":38.99891512293449},{"x":-90.2956974505377,"y":38.998776261857856},{"x":-90.3131103515625,"y":38.9983336379321},{"x":-90.33197950452328,"y":39.000259710802},{"x":-90.33200670153143,"y":39.000259710802},{"x":-90.3508758544922,"y":39.00185923924772},{"x":-90.36679594138386,"y":39.003208776871105},{"x":-90.37272127053023,"y":39.003208776871105},{"x":-90.38864135742188,"y":39.004362682512394},{"x":-90.40261363371805,"y":39.00515658746659},{"x":-90.41243458405539,"y":39.00515658746659},{"x":-90.42640686035153,"y":39.00586947936365},{"x":-90.43979432744204,"y":39.00574139667226},{"x":-90.45078489619074,"y":39.00574139667226},{"x":-90.46417236328124,"y":39.00561081534422},{"x":-90.47792226345706,"y":39.00537896358693},{"x":-90.4881879660351,"y":39.00537896358693},{"x":-90.50193786621092,"y":39.00513901993716},{"x":-90.51617617672704,"y":39.004890553246646},{"x":-90.5254650586245,"y":39.004890553246646},{"x":-90.53970336914061,"y":39.00463310118358},{"x":-90.55607510204433,"y":39.002757130859045},{"x":-90.56109713916658,"y":39.002757130859045},{"x":-90.5774688720703,"y":39.00032342319816},{"x":-90.59010891364703,"y":38.994003402409795},{"x":-90.5964289344354,"y":38.98136336083307},{"x":-90.60082204610151,"y":38.966951031934606},{"x":-90.60755315695111,"y":38.951279075952264},{"x":-90.61038925882643,"y":38.94359785790339},{"x":-90.61139991763126,"y":38.939763400534666},{"x":-90.615234375,"y":38.92521540150478},{"x":-90.62110500752677,"y":38.911702987500476},{"x":-90.62215269999568,"y":38.905832354973704},{"x":-90.62297462773589,"y":38.89809210223779},{"x":-90.6265640051747,"y":38.879396482218716},{"x":-90.62755633573101,"y":38.86806685204401},{"x":-90.63201648989045,"y":38.85128473715355},{"x":-90.632401504371,"y":38.847468478485354},{"x":-90.63960651018162,"y":38.83030134911432},{"x":-90.64036698413271,"y":38.81766845531736},{"x":-90.64036698413273,"y":38.805168739981596},{"x":-90.64104573883859,"y":38.792535846184634},{"x":-90.6455361517377,"y":38.78507211999267},{"x":-90.65299987792967,"y":38.767602158014896},{"x":-90.65754944436016,"y":38.75931990968544},{"x":-90.65852976513584,"y":38.754770343254954},{"x":-90.66019966985094,"y":38.747570551333695},{"x":-90.66659122381607,"y":38.73059618621166},{"x":-90.66874464991099,"y":38.71700484032526},{"x":-90.66587457210521,"y":38.70413014614972},{"x":-90.65299987792967,"y":38.6816906192761},{"x":-90.65194065058502,"y":38.68029856474023},{"x":-90.65113467456989,"y":38.679239337395565},{"x":-90.640283011021,"y":38.66652247048689},{"x":-90.63456083911468,"y":38.65991287328089},{"x":-90.6212809182519,"y":38.64147383446589},{"x":-90.61926540383459,"y":38.63744280563128},{"x":-90.61523437499999,"y":38.63542729121397},{"x":-90.60732619576922,"y":38.63356565523511},{"x":-90.59143368112052,"y":38.627509025415655},{"x":-90.5774688720703,"y":38.6252739310543},{"x":-90.5627509573238,"y":38.626755919719386},{"x":-90.55201775133142,"y":38.62915945227508},{"x":-90.53970336914062,"y":38.63071210430802},{"x":-90.53014659902955,"y":38.63191706435483},{"x":-90.50392974704654,"y":38.63948195363028},{"x":-90.50193786621092,"y":38.639817785055186}],[{"x":-90.50193786621092,"y":38.67356106279695},{"x":-90.49714555122209,"y":38.67444702240675},{"x":-90.47122305690324,"y":38.67923933739557},{"x":-90.46527245621647,"y":38.680339430330804},{"x":-90.46417236328124,"y":38.6805428055075},{"x":-90.46269715677441,"y":38.6807145439024},{"x":-90.4330174432773,"y":38.68584992032131},{"x":-90.42640686035155,"y":38.686526826868054},{"x":-90.41888847232615,"y":38.68675772542098},{"x":-90.39703269660784,"y":38.68763067658154},{"x":-90.38864135742188,"y":38.68788352263251},{"x":-90.37907585300616,"y":38.688804841811304},{"x":-90.36205695870578,"y":38.69042044160917},{"x":-90.3508758544922,"y":38.69150068130681},{"x":-90.33768515807719,"y":38.69243003381058},{"x":-90.32621186278371,"y":38.69234084861678},{"x":-90.3131103515625,"y":38.69343356127986},{"x":-90.29903558837059,"y":38.69331410058748},{"x":-90.28933729678954,"y":38.693231785552314},{"x":-90.27534484863281,"y":38.69311302351546},{"x":-90.26158792551198,"y":38.69299626051642},{"x":-90.25124851221632,"y":38.692908503908775},{"x":-90.23757934570314,"y":38.692792485751056},{"x":-90.2221225790242,"y":38.6946961040745},{"x":-90.21520297500345,"y":38.6946284696256},{"x":-90.19981384277344,"y":38.6972011095652},{"x":-90.18952130219894,"y":38.70671229975076},{"x":-90.18381082134941,"y":38.71700484032527},{"x":-90.17876872675298,"y":38.73372522723449},{"x":-90.17690152796234,"y":38.73991715513635},{"x":-90.1724224940764,"y":38.75477034325495},{"x":-90.17134866428214,"y":38.76407066769334},{"x":-90.16941798245152,"y":38.785166203576864},{"x":-90.16860283013996,"y":38.792535846184634},{"x":-90.16831330733417,"y":38.79880081367505},{"x":-90.16747225267274,"y":38.82487743628534},{"x":-90.16722819848691,"y":38.83030134911432},{"x":-90.16706841690029,"y":38.83532142617088},{"x":-90.16615694963446,"y":38.8639582422533},{"x":-90.16602617869535,"y":38.86806685204401},{"x":-90.16665424320124,"y":38.87267275540148},{"x":-90.17025207425239,"y":38.89762862056506},{"x":-90.17135069823136,"y":38.9058323549737},{"x":-90.17398961876708,"y":38.91777363389702},{"x":-90.17657073320902,"y":38.92907546453813},{"x":-90.17971975020919,"y":38.943597857903384},{"x":-90.18876391676707,"y":38.95464778390975},{"x":-90.19981384277344,"y":38.95978297163453},{"x":-90.21454723963387,"y":38.96662996397263},{"x":-90.223691576442,"y":38.96747559157195},{"x":-90.23757934570312,"y":38.971313879888456},{"x":-90.24638967789912,"y":38.972553028637094},{"x":-90.26803012409435,"y":38.97404863629462},{"x":-90.27534484863283,"y":38.97495600564766},{"x":-90.28211321356841,"y":38.97459499589747},{"x":-90.30583538469678,"y":38.97408839396734},{"x":-90.31311035156249,"y":38.97367322785636},{"x":-90.32081310854936,"y":38.973660603846206},{"x":-90.34559079759796,"y":38.97607830393884},{"x":-90.35087585449219,"y":38.97606773077854},{"x":-90.35577679843442,"y":38.97646241689083},{"x":-90.38724756841086,"y":38.97996957182205},{"x":-90.38864135742188,"y":38.98008842811971},{"x":-90.38987061975395,"y":38.980134098501004},{"x":-90.40281752750504,"y":38.98136336083307},{"x":-90.42411657071753,"y":38.9836536504671},{"x":-90.42640686035155,"y":38.98377050536514},{"x":-90.42879119311826,"y":38.98374769359979},{"x":-90.46243807320562,"y":38.9830976509087},{"x":-90.46417236328124,"y":38.98308073464666},{"x":-90.46586125882268,"y":38.98305225637452},{"x":-90.50147045692248,"y":38.981830770121526},{"x":-90.50193786621092,"y":38.98182261356117},{"x":-90.50238924216949,"y":38.98181473679163},{"x":-90.5150965373677,"y":38.98136336083307},{"x":-90.53869483141385,"y":38.9803548231063},{"x":-90.53970336914062,"y":38.979815548582124},{"x":-90.54596337958374,"y":38.97510335038994},{"x":-90.56157420831708,"y":38.96546869707986},{"x":-90.56535617737039,"y":38.95571055260329},{"x":-90.5724240391482,"y":38.943597857903384},{"x":-90.57341593227096,"y":38.93954491810404},{"x":-90.5774688720703,"y":38.92445767263092},{"x":-90.58135398867206,"y":38.90971747157547},{"x":-90.58237799987465,"y":38.9058323549737},{"x":-90.58306037331303,"y":38.90024085373096},{"x":-90.58526397552141,"y":38.87586195549512},{"x":-90.58628641857823,"y":38.86806685204401},{"x":-90.58704562525143,"y":38.85849009886288},{"x":-90.58841273118013,"y":38.84124520822416},{"x":-90.58928031654125,"y":38.83030134911432},{"x":-90.59012702869502,"y":38.817643192489584},{"x":-90.59084071633089,"y":38.80590769044522},{"x":-90.59174689284137,"y":38.792535846184634},{"x":-90.5988205280089,"y":38.77612199919354},{"x":-90.60457323411273,"y":38.76543148414219},{"x":-90.60991152992054,"y":38.75477034325495},{"x":-90.61023629026906,"y":38.74977225852402},{"x":-90.61523437499999,"y":38.72545244740915},{"x":-90.61667451436746,"y":38.71844497969273},{"x":-90.61723441687832,"y":38.71700484032526},{"x":-90.61637017557469,"y":38.71586903975055},{"x":-90.61523437499999,"y":38.71437635137744},{"x":-90.600051263537,"y":38.694422448858575},{"x":-90.58849829170704,"y":38.67923933739557},{"x":-90.58303369051418,"y":38.673674518951685},{"x":-90.5774688720703,"y":38.67007162729349},{"x":-90.5683263214334,"y":38.67009678675867},{"x":-90.5523855042425,"y":38.666557202293696},{"x":-90.53970336914061,"y":38.666579320086406},{"x":-90.52901864622775,"y":38.668554614482716},{"x":-90.50890397088635,"y":38.67227323272014},{"x":-90.50193786621092,"y":38.67356106279695}],[{"x":-90.3508758544922,"y":38.823895655606115},{"x":-90.34625415582332,"y":38.82567965044545},{"x":-90.34002741148223,"y":38.83030134911432},{"x":-90.3428130649689,"y":38.8383641386376},{"x":-90.34874803651469,"y":38.8659390340665},{"x":-90.3493534047417,"y":38.86806685204401},{"x":-90.35030079627633,"y":38.86864191025989},{"x":-90.35087585449219,"y":38.86892368868008},{"x":-90.35207413013816,"y":38.86926512768998},{"x":-90.3795635957338,"y":38.8771446137321},{"x":-90.38864135742189,"y":38.87971901784212},{"x":-90.39752907903448,"y":38.876954573656626},{"x":-90.40791364186258,"y":38.86806685204401},{"x":-90.40683380733738,"y":38.849874402128506},{"x":-90.40647109055894,"y":38.84813108225139},{"x":-90.40506715384855,"y":38.83030134911432},{"x":-90.39592280786557,"y":38.82301989867061},{"x":-90.38864135742188,"y":38.82104322382351},{"x":-90.37994268444793,"y":38.82160267614036},{"x":-90.35773842109911,"y":38.8234387825074},{"x":-90.3508758544922,"y":38.823895655606115}],[{"x":-90.23757934570312,"y":38.74907762585324},{"x":-90.23407814328378,"y":38.75126914083562},{"x":-90.23176101313204,"y":38.75477034325495},{"x":-90.23069111596996,"y":38.761658572988104},{"x":-90.22720204336142,"y":38.78215854384293},{"x":-90.22564600685382,"y":38.792535846184634},{"x":-90.22480601444205,"y":38.80530917744571},{"x":-90.22399673757018,"y":38.81671874098138},{"x":-90.22311335421284,"y":38.830301349114315},{"x":-90.22253466436686,"y":38.84534603045058},{"x":-90.2222105130584,"y":38.85269801939928},{"x":-90.22162623182089,"y":38.86806685204401},{"x":-90.22346283150979,"y":38.882183366237335},{"x":-90.22490817538575,"y":38.89316118465632},{"x":-90.22656128187134,"y":38.9058323549737},{"x":-90.22833602112485,"y":38.915075679551954},{"x":-90.23204526436894,"y":38.938063776569194},{"x":-90.23305455179256,"y":38.943597857903384},{"x":-90.23588120119855,"y":38.94529600240795},{"x":-90.23757934570312,"y":38.94576533395351},{"x":-90.24010156487286,"y":38.94612007707311},{"x":-90.26749372065264,"y":38.95144898588356},{"x":-90.27534484863281,"y":38.95242289445367},{"x":-90.2837230122972,"y":38.95197602156778},{"x":-90.30678275044724,"y":38.949925459018644},{"x":-90.31311035156249,"y":38.94956435695518},{"x":-90.31906708814829,"y":38.949554594489186},{"x":-90.34782925105668,"y":38.946644461338884},{"x":-90.35087585449219,"y":38.94663836637583},{"x":-90.3541826696239,"y":38.94690467303508},{"x":-90.38373204960656,"y":38.9485071657187},{"x":-90.38864135742188,"y":38.94892581025267},{"x":-90.39417489550124,"y":38.94913139598275},{"x":-90.42132125091264,"y":38.948683467342285},{"x":-90.42640686035155,"y":38.94889471117413},{"x":-90.4316092161484,"y":38.94880021370024},{"x":-90.4594562779145,"y":38.94831394327012},{"x":-90.46417236328124,"y":38.948228396664895},{"x":-90.46866946161484,"y":38.948094956236986},{"x":-90.49823060560217,"y":38.94730511851214},{"x":-90.50193786621092,"y":38.947195743915366},{"x":-90.50475949262365,"y":38.9464194843161},{"x":-90.50888549499459,"y":38.943597857903384},{"x":-90.51135183154773,"y":38.93418389256658},{"x":-90.51539980800726,"y":38.919294296770026},{"x":-90.51883348747184,"y":38.9058323549737},{"x":-90.51996355711498,"y":38.88780666406964},{"x":-90.52006467950262,"y":38.886193665335725},{"x":-90.5212010887275,"y":38.868066852044},{"x":-90.52238047060618,"y":38.85074395350957},{"x":-90.52263104703067,"y":38.847373671224254},{"x":-90.52380708851742,"y":38.83030134911433},{"x":-90.52463032651642,"y":38.81522830649012},{"x":-90.52507051459831,"y":38.80716870072695},{"x":-90.52586971103084,"y":38.79253584618463},{"x":-90.52760895411178,"y":38.78044143115581},{"x":-90.53171909241482,"y":38.76275461998074},{"x":-90.53306003891389,"y":38.75477034325495},{"x":-90.51987983672745,"y":38.73682837273843},{"x":-90.50193786621094,"y":38.72849454950845},{"x":-90.4900413769627,"y":38.72890132957349},{"x":-90.47830422986357,"y":38.73113670690759},{"x":-90.46417236328124,"y":38.73148533604375},{"x":-90.44926289916042,"y":38.73191430444609},{"x":-90.4416362784743,"y":38.73223425844801},{"x":-90.42640686035155,"y":38.73266069859205},{"x":-90.4104200936256,"y":38.73299160705121},{"x":-90.40474558032179,"y":38.733109063225186},{"x":-90.38864135742188,"y":38.73344240289776},{"x":-90.37116808132204,"y":38.734478116425095},{"x":-90.36859185026928,"y":38.73472083610234},{"x":-90.35087585449219,"y":38.73569572357873},{"x":-90.33441533399862,"y":38.73830982276137},{"x":-90.32847424173403,"y":38.739406453083426},{"x":-90.31311035156249,"y":38.74195740122764},{"x":-90.30129418170354,"y":38.74295417339598},{"x":-90.28377449589262,"y":38.746340695995144},{"x":-90.27534484863281,"y":38.74721063351849},{"x":-90.26797394466668,"y":38.74739943928881},{"x":-90.24343297929913,"y":38.748916709658936},{"x":-90.23757934570312,"y":38.74907762585324}],[{"x":-90.3131103515625,"y":38.77990032857186},{"x":-90.30182107486318,"y":38.78124656948532},{"x":-90.29143719140491,"y":38.792535846184634},{"x":-90.28307585446473,"y":38.80026685201655},{"x":-90.28046501916246,"y":38.82518117858468},{"x":-90.27846456503327,"y":38.83030134911433},{"x":-90.27951469987855,"y":38.834471200360056},{"x":-90.2843400546869,"y":38.859071645989935},{"x":-90.28696978129497,"y":38.86806685204401},{"x":-90.30015738883372,"y":38.881019814772806},{"x":-90.3131103515625,"y":38.885285947932594},{"x":-90.32616809551497,"y":38.892774611021224},{"x":-90.3473482391191,"y":38.90230473960061},{"x":-90.35087585449219,"y":38.90403327048576},{"x":-90.35227598348278,"y":38.9044322259831},{"x":-90.35724279772815,"y":38.9058323549737},{"x":-90.37102770939994,"y":38.923446002995625},{"x":-90.38864135742188,"y":38.928357621889646},{"x":-90.40388058911398,"y":38.92835862621126},{"x":-90.41152537690178,"y":38.9287163744536},{"x":-90.42640686035156,"y":38.928717451346294},{"x":-90.44295825377452,"y":38.92238374839667},{"x":-90.45450645639657,"y":38.9058323549737},{"x":-90.45874620579936,"y":38.90040619749182},{"x":-90.46131479255169,"y":38.870924422773555},{"x":-90.46229529018989,"y":38.86806685204401},{"x":-90.46239884364863,"y":38.866293332411395},{"x":-90.46417236328124,"y":38.83602179875297},{"x":-90.46487435380993,"y":38.83100333964301},{"x":-90.46488033271794,"y":38.83030134911432},{"x":-90.4648884981083,"y":38.82958521428727},{"x":-90.46832580634621,"y":38.79668928924962},{"x":-90.46836501295877,"y":38.792535846184634},{"x":-90.466618637312,"y":38.79008957215387},{"x":-90.46417236328124,"y":38.789376060178625},{"x":-90.45966187694171,"y":38.7880253598451},{"x":-90.43985824710613,"y":38.77908445943006},{"x":-90.42640686035155,"y":38.776492842807784},{"x":-90.41037270279371,"y":38.776501688626794},{"x":-90.40454796951481,"y":38.776629234091686},{"x":-90.38864135742188,"y":38.77663839213466},{"x":-90.37297846051742,"y":38.77687294928018},{"x":-90.36617765780959,"y":38.77723404286724},{"x":-90.35087585449217,"y":38.77748107700228},{"x":-90.33574070628474,"y":38.7774006979772},{"x":-90.32563134821267,"y":38.78001484953446},{"x":-90.3131103515625,"y":38.77990032857186}],[{"x":-90.3131103515625,"y":38.753012397569535},{"x":-90.31148916379958,"y":38.753149155492025},{"x":-90.30310218293202,"y":38.75477034325495},{"x":-90.30919567449614,"y":38.758685020321316},{"x":-90.3131103515625,"y":38.7582181969304},{"x":-90.3165900314819,"y":38.75825002317436},{"x":-90.34080818794523,"y":38.76483800980192},{"x":-90.35087585449217,"y":38.764891476686465},{"x":-90.36083618712748,"y":38.76473067589023},{"x":-90.37829654470437,"y":38.76511515597246},{"x":-90.38864135742188,"y":38.76496023892506},{"x":-90.39882538975634,"y":38.764954375589426},{"x":-90.41586883048868,"y":38.765308373117826},{"x":-90.42640686035155,"y":38.76530255943509},{"x":-90.43945252443983,"y":38.767816007343214},{"x":-90.45092624176672,"y":38.76801646476945},{"x":-90.46417236328124,"y":38.77198311922769},{"x":-90.4800840744289,"y":38.77662413503696},{"x":-90.49144331893602,"y":38.792535846184634},{"x":-90.49134331115725,"y":38.803130401238306},{"x":-90.49286013050907,"y":38.82122361341247},{"x":-90.49275662589989,"y":38.83030134911432},{"x":-90.49267775682685,"y":38.83956145849841},{"x":-90.49531775039083,"y":38.86144673622392},{"x":-90.4952444779103,"y":38.86806685204401},{"x":-90.49513408238235,"y":38.87487063587259},{"x":-90.49992446405012,"y":38.9038189528129},{"x":-90.4998769934018,"y":38.9058323549737},{"x":-90.50033715655425,"y":38.907433064630375},{"x":-90.50193786621091,"y":38.908205112630334},{"x":-90.50244505197942,"y":38.906339540742195},{"x":-90.50257441766709,"y":38.90583235497369},{"x":-90.50261699363787,"y":38.90515322754674},{"x":-90.50476479276801,"y":38.8708937786011},{"x":-90.50494201892275,"y":38.868066852044},{"x":-90.50516149051279,"y":38.86484322774215},{"x":-90.50700691947726,"y":38.83537040238067},{"x":-90.50735610554003,"y":38.83030134911432},{"x":-90.5076691274109,"y":38.824570087914346},{"x":-90.50903130851299,"y":38.7996292884867},{"x":-90.50941872805345,"y":38.79253584618463},{"x":-90.51067520522876,"y":38.78379850716679},{"x":-90.51213463513848,"y":38.76496711218249},{"x":-90.51384716616222,"y":38.75477034325495},{"x":-90.50880359215616,"y":38.747904617309715},{"x":-90.50193786621094,"y":38.74471557258799},{"x":-90.49221553403343,"y":38.74504801107745},{"x":-90.4760472023593,"y":38.742895504176886},{"x":-90.46417236328124,"y":38.74318845308535},{"x":-90.45291438267114,"y":38.74351236264486},{"x":-90.43743560160621,"y":38.74374160200028},{"x":-90.42640686035155,"y":38.74405041865836},{"x":-90.41590432663267,"y":38.74426780953607},{"x":-90.39878963589719,"y":38.744622064779634},{"x":-90.38864135742189,"y":38.74483212296407},{"x":-90.37925925334264,"y":38.74538823917572},{"x":-90.359871560097,"y":38.745774637650115},{"x":-90.35087585449219,"y":38.746269659259156},{"x":-90.34354015472479,"y":38.74743464348755},{"x":-90.31521828933204,"y":38.75266240548542},{"x":-90.3131103515625,"y":38.753012397569535}],[{"x":-90.23757934570314,"y":38.82601395894978},{"x":-90.23729538375706,"y":38.830017387168255},{"x":-90.23727691548832,"y":38.83030134911433},{"x":-90.23726481723051,"y":38.83061587758694},{"x":-90.23569660362907,"y":38.866184109969936},{"x":-90.23562502689356,"y":38.86806685204401},{"x":-90.23585001753452,"y":38.86979618021262},{"x":-90.23757934570314,"y":38.88293094415194},{"x":-90.24819593849568,"y":38.895215762181145},{"x":-90.24426453866229,"y":38.9058323549737},{"x":-90.24805255395368,"y":38.916305563224256},{"x":-90.25254870637889,"y":38.92862849722761},{"x":-90.25790933529221,"y":38.94359785790339},{"x":-90.27250532425245,"y":38.94643738228374},{"x":-90.27534484863281,"y":38.94678961665517},{"x":-90.27837498647386,"y":38.94662799574444},{"x":-90.3124506040174,"y":38.943597857903384},{"x":-90.31281733638436,"y":38.94330484272524},{"x":-90.3131103515625,"y":38.94322119969082},{"x":-90.33030836695401,"y":38.92303037036522},{"x":-90.3341492529552,"y":38.9058323549737},{"x":-90.31963922353873,"y":38.89930348299746},{"x":-90.3131103515625,"y":38.89555915145315},{"x":-90.29779194094445,"y":38.89051394435565},{"x":-90.29066325925088,"y":38.89051394435565},{"x":-90.27534484863283,"y":38.87573111978598},{"x":-90.26395425783954,"y":38.87945744283728},{"x":-90.25095325913013,"y":38.86806685204401},{"x":-90.24500578254087,"y":38.86064041520627},{"x":-90.23928265163366,"y":38.832004655044855},{"x":-90.2386012071704,"y":38.830301349114315},{"x":-90.23860930346808,"y":38.82927139134937},{"x":-90.23757934570314,"y":38.82601395894978}]]
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.40347388749522,39.11245],[-75.39282224024916,39.12823474024917],[-75.3770375,39.135447305104925],[-75.35235519043113,39.13713230956888],[-75.34721355956887,39.13713230956888],[-75.32253125,39.139083755473514],[-75.29670096335326,39.141125963353275],[-75.29326540004632,39.14171584995367],[-75.268025,39.14408623760705],[-75.25277832507136,39.15170957507138],[-75.24515498760704,39.166956250000005],[-75.23985410433178,39.1932916043318],[-75.23985410433178,39.19512714566821],[-75.23607469121049,39.2214625],[-75.23324391324394,39.24118766324395],[-75.23324391324394,39.25624358675606],[-75.23104443417348,39.27596875],[-75.22621125895654,39.28866125895655],[-75.21351874999999,39.30405720540773],[-75.19590688693847,39.31286313693849],[-75.18710095540773,39.33047500000001],[-75.18476066926435,39.35622316926436],[-75.18476066926435,39.359233080735656],[-75.1827803677246,39.38498125],[-75.18108292305178,39.407051673051775],[-75.18108292305178,39.41741707694823],[-75.17961177196392,39.439487500000006],[-75.17842510611122,39.4589001061112],[-75.17842510611122,39.474581143888805],[-75.1773677140917,39.49399375],[-75.17806096906195,39.513042219061944],[-75.17806096906195,39.52945153093805],[-75.17880864635877,39.548500000000004],[-75.17436569692443,39.56385319692442],[-75.1590125,39.57861883514683],[-75.14275422343123,39.586747973431216],[-75.13462508514682,39.60300625000001],[-75.13199158752832,39.630027162471684],[-75.13192154096123,39.63042154096124],[-75.12971192190646,39.6575125],[-75.12958254641065,39.68258879641065],[-75.12958254641065,39.68694245358936],[-75.12945449224796,39.712018750000006],[-75.13075282512311,39.73826532512311],[-75.13075282512311,39.74027842487689],[-75.13219370977114,39.766525],[-75.13492951020307,39.79060798979694],[-75.13711471606355,39.799133466063545],[-75.14033360353974,39.821031250000004],[-75.1408737447648,39.839170005235225],[-75.14206588619443,39.85859088619443],[-75.14260248550531,39.87553750000001],[-75.14807249033687,39.88647750966314],[-75.1590125,39.8919475144947],[-75.17435420501783,39.89087920501784],[-75.20237093707816,39.886685312921855],[-75.21351874999999,39.88578343964871],[-75.22299781995783,39.88501656995784],[-75.26614108689465,39.87742141310536],[-75.268025,39.877239581040996],[-75.26957725960418,39.87708975960419],[-75.27684240189953,39.87553750000001],[-75.28419540106952,39.85936709893049],[-75.29112392832597,39.84413017832599],[-75.30162746500874,39.821031250000004],[-75.30816161875036,39.806661618750354],[-75.32253125,39.77506054072003],[-75.32519930917472,39.76919305917473],[-75.32641252811797,39.766525],[-75.3296491997708,39.75940705022919],[-75.34223699959911,39.73172449959911],[-75.35119759122719,39.712018750000006],[-75.36046052535204,39.69544177535203],[-75.3754130206531,39.659136979346904],[-75.37616437518106,39.6575125],[-75.3766762492428,39.65715124924281],[-75.3770375,39.65615200822954],[-75.39832547007784,39.62429422007785],[-75.4082395514723,39.60300625000001],[-75.4215797545908,39.5930422545908],[-75.43154375,39.56834216367474],[-75.45835566060614,39.57531191060614],[-75.45895426960922,39.5755957303908],[-75.48605,39.57947734440668],[-75.48898805047145,39.60006819952855],[-75.48994051537133,39.60300625],[-75.49123821601205,39.60819446601205],[-75.49220788576012,39.651354614239885],[-75.49509104207014,39.6575125],[-75.50305100880664,39.67451350880663],[-75.50416029911807,39.69390845088193],[-75.52933401544658,39.70079651544659],[-75.54055625,39.707797525000004],[-75.5417414003631,39.71083359963691],[-75.54210361986804,39.71201875000001],[-75.5424789600527,39.71394146005272],[-75.5438968233805,39.76318442661949],[-75.54488896795854,39.766525],[-75.54664835702378,39.77261710702379],[-75.54776976280363,39.81381773719638],[-75.55227698676161,39.821031250000004],[-75.56289470095811,39.84336970095812],[-75.56358754189749,39.852506208102504],[-75.57539756961809,39.8558725696181],[-75.59506249999998,39.868174228685255],[-75.59931300492002,39.871286995079984],[-75.60432992735852,39.87553750000001],[-75.63504292712292,39.89006332287709],[-75.64956874999999,39.89284139354837],[-75.66838020678718,39.89434895678719],[-75.68308195946902,39.896530540530996],[-75.704075,39.89798053092993],[-75.72818318448331,39.89964568448332],[-75.73375331940231,39.9003654305977],[-75.75858125,39.901872157624666],[-75.78514101585267,39.90348398414733],[-75.78652773414733,39.90348398414733],[-75.8130875,39.904921352207175],[-75.83722610887358,39.905905141126446],[-75.84345514112644,39.905905141126446],[-75.86759375,39.906814783587755],[-75.88844527239183,39.89638902239184],[-75.89887103358774,39.87553750000001],[-75.89854841478977,39.85198591478977],[-75.89854841478977,39.84458283521024],[-75.89821670830216,39.821031250000004],[-75.89787552465965,39.79680677465965],[-75.89787552465965,39.79074947534036],[-75.89752445181962,39.766525],[-75.89716305350223,39.74158805350222],[-75.89716305350223,39.73695569649778],[-75.89679086738143,39.712018750000006],[-75.89640740311208,39.686326153112084],[-75.89640740311208,39.683205096887924],[-75.89601214017446,39.6575125],[-75.89560452551711,39.63101702551712],[-75.89560452551711,39.6295017244829],[-75.8951839709748,39.60300625000001],[-75.89475288239396,39.57584711760604],[-75.8947466163539,39.57565286635391],[-75.89430149673764,39.548500000000004],[-75.89387073552223,39.52222301447779],[-75.89380341704393,39.520203417043916],[-75.8933591950366,39.49399375],[-75.89292978011362,39.468657719886366],[-75.89279284789451,39.46468659789453],[-75.89235076838531,39.439487500000006],[-75.8913260472361,39.4157552027639],[-75.89062746202809,39.408014962028105],[-75.88953890003162,39.38498125],[-75.88715925199065,39.365415748009355],[-75.88127062628152,39.34415187628153],[-75.87907248368842,39.33047500000001],[-75.87748307496805,39.32058567503195],[-75.86759375,39.29476457315633],[-75.85538716547042,39.288175334529576],[-75.8282870350059,39.275968750000004],[-75.8173286270748,39.27172762292521],[-75.8130875,39.25578472660005],[-75.79794874486377,39.236601255136236],[-75.79760439720079,39.2214625],[-75.7676722437337,39.2123715062663],[-75.75858125,39.21117295929072],[-75.74836987958975,39.21125112958973],[-75.7137522708571,39.21178522914291],[-75.704075,39.21186046264999],[-75.67996146438593,39.19734896438593],[-75.66694581884633,39.20408543115368],[-75.67566107970288,39.193048579702875],[-75.67054949218115,39.166956250000005],[-75.6635559114541,39.15296908854591],[-75.64956874999999,39.145975507818854],[-75.62914609464218,39.14653359464219],[-75.61467186011258,39.14734688988742],[-75.5950625,39.14791373192817],[-75.57631446045869,39.148208210458705],[-75.5587435012753,39.148768998724705],[-75.54055625,39.14906393405724],[-75.52104203854152,39.13196421145847],[-75.51527029981442,39.11245]]]},"properties":{"elevation":25}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.5950625,39.21178892387218],[-75.58718720364257,39.21358720364258],[-75.57683279168444,39.2214625],[-75.5833712560365,39.23315374396349],[-75.5950625,39.23917997734168],[-75.61025864339783,39.23665864339783],[-75.63337127948925,39.2214625],[-75.60316219017295,39.21336280982705],[-75.5950625,39.21178892387218]]]},"properties":{"elevation":25}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.42462299749141,39.11245],[-75.41026178986195,39.13373196013806],[-75.40696771278515,39.14238021278516],[-75.40118018387972,39.14281356612028],[-75.3770375,39.15384514918886],[-75.36476426471306,39.15468301471307],[-75.32966038784052,39.159827112159476],[-75.32253125,39.16039075985232],[-75.31644681100838,39.16087181100838],[-75.28101038080463,39.166956250000005],[-75.27215611070427,39.171087360704284],[-75.268025,39.173014800849835],[-75.25586459596235,39.20930209596235],[-75.2541194441789,39.2214625],[-75.2517894664742,39.2376980335258],[-75.24736832947102,39.25531207947102],[-75.24506498151227,39.275968750000004],[-75.23636526612178,39.2988152661218],[-75.21351874999999,39.32652796973392],[-75.21088739648926,39.32784364648928],[-75.2095717197339,39.33047500000001],[-75.20917710138283,39.33481664861717],[-75.2026319684356,39.37409446843561],[-75.20179466190426,39.38498125],[-75.20081782923347,39.39768217076652],[-75.1971802660082,39.42314901600822],[-75.19609118953504,39.439487500000006],[-75.19495650509043,39.45804974490957],[-75.19316077121857,39.47363577121858],[-75.19205188536506,39.49399375],[-75.19280572077375,39.514706779226266],[-75.19387450100837,39.52885575100838],[-75.19464556344579,39.548500000000004],[-75.18695988870726,39.57505886129275],[-75.18715678294673,39.57664428294673],[-75.1666516635226,39.59536708647742],[-75.1590125,39.60271390326429],[-75.15881760217619,39.60281135217619],[-75.15872015326428,39.603006250000014],[-75.1586885839308,39.60333016606921],[-75.15056542772642,39.64906542772643],[-75.14987645943165,39.6575125],[-75.14982907964549,39.66669592035451],[-75.14946185718655,39.702468107186554],[-75.14941308604632,39.712018750000006],[-75.14986555569041,39.7211656943096],[-75.15407248035834,39.76158498035835],[-75.15434367758806,39.766525],[-75.15481994688514,39.77071755311486],[-75.1590125,39.78707459879357],[-75.17015524452633,39.777667744526326],[-75.17554577123,39.766525],[-75.19072601344496,39.743732263444954],[-75.21351874999999,39.72626586701747],[-75.22154330192456,39.72004330192457],[-75.22568671414815,39.712018750000006],[-75.24372783439254,39.68772158439256],[-75.268025,39.66276171421982],[-75.27095988559293,39.660447385592946],[-75.27253689822156,39.65751250000001],[-75.29564588587353,39.63062713587354],[-75.30014680443543,39.62539069556457],[-75.31938708229495,39.60300625000001],[-75.3206485407079,39.601123540707896],[-75.32253125,39.59934827523721],[-75.34603494837354,39.572003698373535],[-75.36623726636837,39.548500000000004],[-75.3712035232975,39.5426660232975],[-75.3770375,39.53593483625461],[-75.39642401087355,39.51338026087354],[-75.41308745044176,39.493993749999994],[-75.42209016274701,39.48454016274701],[-75.43154375,39.47633348859197],[-75.45248415231366,39.460427902313654],[-75.48134943426723,39.4394875],[-75.48380644918463,39.43724394918462],[-75.48605,39.43614231211656],[-75.48928223617024,39.43625526382978],[-75.4903302122473,39.439487500000006],[-75.48879769385374,39.44223519385374],[-75.50403050801866,39.47601324198134],[-75.50188513796127,39.49399375],[-75.50096072423234,39.50890447423233],[-75.50003399936197,39.53451600063804],[-75.49920818365102,39.5485],[-75.50350182535018,39.5659518253502],[-75.50594959861722,39.58310665138278],[-75.51240070263628,39.60300625],[-75.51803405776701,39.62552844223299],[-75.53412099936986,39.65107724936987],[-75.53713401945234,39.6575125],[-75.53822535665897,39.659843393341035],[-75.54055625,39.661297524999995],[-75.55479673190399,39.697778268096016],[-75.55914907441348,39.71201875000001],[-75.56365907185703,39.73512157185705],[-75.56389138398606,39.74318986601393],[-75.5708218788517,39.766524999999994],[-75.57625379695997,39.78533370304003],[-75.5950625,39.80999057500002],[-75.60331695629138,39.81277679370862],[-75.61696665318749,39.82103125],[-75.63598134487074,39.83461865512927],[-75.64956874999999,39.84598289863266],[-75.67375153811362,39.851354711886394],[-75.68495003637533,39.85641253637532],[-75.704075,39.86262546903669],[-75.71237276378626,39.86723973621375],[-75.72729450134734,39.87553750000001],[-75.75500113208446,39.879117617915554],[-75.75858125,39.8793348837244],[-75.76262397357884,39.879580223578834],[-75.80427830428683,39.8843466957132],[-75.8130875,39.88482343397292],[-75.82276796949361,39.885217969493624],[-75.85536063387363,39.88777061612638],[-75.86759375,39.88823161045794],[-75.87605649030529,39.8840002403053],[-75.88028786045794,39.87553750000001],[-75.88011632139194,39.86301492860808],[-75.87927459086333,39.83271209086333],[-75.8791100749439,39.821031250000004],[-75.87895012882986,39.80967487117014],[-75.87801504371583,39.776946293715824],[-75.87786401327533,39.766525],[-75.87771729791137,39.75640145208862],[-75.87667916185802,39.72110416185802],[-75.87654356128657,39.712018750000006],[-75.87641194889216,39.70320055110784],[-75.87525978905394,39.66517853905395],[-75.87514185231404,39.6575125],[-75.87502748934546,39.650078760654544],[-75.8737488457014,39.609161345701416],[-75.87365114775463,39.60300625000001],[-75.87355650280765,39.59704349719235],[-75.87213717494092,39.553043424940924],[-75.87206269412773,39.548500000000004],[-75.87199061587184,39.54410313412817],[-75.87041435692575,39.49681435692575],[-75.87036655106587,39.49399375],[-75.87032033870064,39.491267161299355],[-75.86856848329367,39.44046223329367],[-75.86855138309357,39.439487500000006],[-75.86851174557063,39.43856950442937],[-75.86759375,39.428398223059936],[-75.85558645632462,39.39698854367538],[-75.84282772549453,39.38498125000001],[-75.82485856774923,39.37321018225078],[-75.81308749999998,39.36621882550267],[-75.78824504557899,39.360138795578976],[-75.78437168447935,39.359190815520655],[-75.75858125,39.35287877361359],[-75.7405825433421,39.34847370665791],[-75.71607585276067,39.342475852760685],[-75.704075,39.3395387217245],[-75.69679340220483,39.33775659779518],[-75.66704144972948,39.33047500000001],[-75.65218890482414,39.327854845175864],[-75.64956875000001,39.32753949202867],[-75.64635318337574,39.327259433375744],[-75.602650202953,39.32288729704699],[-75.59506250000001,39.32224493172269],[-75.58656113015239,39.32197363015239],[-75.5502174445752,39.3208138054248],[-75.54055625,39.320505490728905],[-75.52321593414193,39.31313468414194],[-75.50404897819743,39.312476021802574],[-75.48897691798635,39.27889566798633],[-75.48687649788674,39.275968750000004],[-75.48690450305884,39.275114246941186],[-75.49223399495102,39.227646494951024],[-75.4924058797691,39.22146250000001],[-75.49454815088544,39.21296434911457],[-75.4986213704424,39.1795276204424],[-75.5031272303659,39.16695625],[-75.49314695092573,39.15985929907428],[-75.49881792101455,39.125217921014546],[-75.49504153966595,39.11245000000001]]]},"properties":{"elevation":45}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.3770375,39.16304407123083],[-75.3733753292021,39.163294079202124],[-75.34838427992393,39.16695625000001],[-75.33175038835495,39.17617538835495],[-75.32253125,39.17901842197422],[-75.2999189009979,39.189568599002094],[-75.29359014025088,39.19252139025089],[-75.268025,39.20444924238886],[-75.26375466125992,39.21719216125994],[-75.2631418206631,39.22146250000001],[-75.26232360820691,39.22716389179309],[-75.25367533282052,39.26161908282052],[-75.25207525518167,39.275968750000004],[-75.24226680144675,39.301726948553245],[-75.24180675306997,39.30425675306998],[-75.22237149643702,39.33047500000001],[-75.2220085300143,39.338964780014315],[-75.21351874999999,39.37056875495243],[-75.2114601376563,39.382922637656314],[-75.2113018089941,39.38498125],[-75.2111170969392,39.38738290306078],[-75.20490506204955,39.43087381204957],[-75.2043308983206,39.439487500000006],[-75.20373268995971,39.44927356004028],[-75.2001235963048,39.480598596304816],[-75.19939397100174,39.49399375],[-75.19988998002448,39.50762251997553],[-75.20211646750471,39.53709771750469],[-75.20256402198929,39.548500000000004],[-75.19810295887748,39.56391579112251],[-75.20146004470354,39.590947544703546],[-75.18825341185077,39.60300625],[-75.18574376557561,39.629737515575606],[-75.18166740247523,39.634857597524764],[-75.17191218237326,39.6575125],[-75.19407791639472,39.67695333360529],[-75.21351875,39.67469821193057],[-75.22064490559814,39.664638655598154],[-75.22755295067203,39.6575125],[-75.24542626695205,39.63491376695206],[-75.268025,39.621446479638905],[-75.27654866365131,39.61152991365132],[-75.2838750750453,39.603006250000014],[-75.29938415779242,39.57985915779242],[-75.32253125,39.5580330406563],[-75.3269377261513,39.55290647615132],[-75.33072525911871,39.54850000000001],[-75.35202095465868,39.523483454658695],[-75.3770375,39.49461960167368],[-75.37732678865132,39.49428303865132],[-75.3775754431921,39.49399375],[-75.38831666494156,39.48271458505844],[-75.40385941160507,39.46630941160506],[-75.40981756830362,39.461213681696385],[-75.43154375,39.44235314875331],[-75.4331723625051,39.44111611250511],[-75.43541732219828,39.439487500000006],[-75.46188333751188,39.41532083751187],[-75.48604999999999,39.40345442868098],[-75.50519210683079,39.404123356830794],[-75.51200800107759,39.38498125],[-75.50278815904838,39.36824309095164],[-75.48605,39.35994040710163],[-75.46811152302735,39.34841347697267],[-75.45397498834684,39.33047500000001],[-75.4526043579814,39.30941439201861],[-75.45395072787456,39.29837572787457],[-75.4529281563755,39.275968750000004],[-75.45522960748046,39.25228289251955],[-75.45582579464556,39.24574454464556],[-75.45821665124757,39.2214625],[-75.45885532445985,39.19426782445984],[-75.45887043705308,39.19413581294693],[-75.45963333179351,39.166956250000005],[-75.45521012220817,39.14328987779183],[-75.43154375,39.130712583948025],[-75.42154658593897,39.15695908593899],[-75.38424135699611,39.159752393003885],[-75.3770375,39.16304407123083]]]},"properties":{"elevation":55}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.5950625,39.352575121922534],[-75.57272583585042,39.36264458585043],[-75.5602164706145,39.38498125],[-75.55034419688917,39.39476919688917],[-75.54055625,39.42617426574463],[-75.52812389591863,39.427055145918644],[-75.53215479247841,39.439487500000006],[-75.52155929527933,39.45848445472066],[-75.51400097055078,39.467438470550796],[-75.51083248936344,39.49399375],[-75.50938575277922,39.517329502779226],[-75.50909161824804,39.52545838175196],[-75.50773091092375,39.548500000000004],[-75.51421227296241,39.574843977037574],[-75.51551183084901,39.57796183084903],[-75.52363079626876,39.60300625],[-75.52701723697207,39.61654526302792],[-75.54055625,39.638047525],[-75.54658438176027,39.65148436823972],[-75.54868180199166,39.6575125],[-75.55301971083148,39.6699759608315],[-75.56132439767443,39.69125060232557],[-75.56767180168622,39.71201875000001],[-75.57214552014385,39.734935729856154],[-75.5790253189746,39.75048781897462],[-75.58378833429829,39.766525],[-75.58631468642665,39.775272813573345],[-75.5950625,39.78674057500002],[-75.62069959899891,39.79539415100109],[-75.62887653371122,39.80033903371122],[-75.64956875,39.810810625],[-75.66080278303697,39.809797216963034],[-75.69542654012076,39.812382790120765],[-75.70407499999999,39.81125724353567],[-75.7104686786109,39.814637571389106],[-75.7221193817367,39.82103125],[-75.74555116957197,39.834061330428035],[-75.75858125,39.841307170871566],[-75.78057896563755,39.853539784362475],[-75.80425654708596,39.86670654708597],[-75.8130875,39.87161731307339],[-75.8177396192814,39.870885380718605],[-75.82244843360907,39.87553750000001],[-75.8643147908288,39.87881645917121],[-75.86759375,39.878940023893044],[-75.86986209926202,39.87780584926203],[-75.87099627389304,39.87553750000001],[-75.87095029463576,39.87218095536425],[-75.86958480072718,39.823022300727196],[-75.86955675826475,39.82103125000001],[-75.86952949474578,39.819095505254225],[-75.86804026511672,39.76697151511672],[-75.86803379400318,39.766525],[-75.86802750777522,39.76609124222477],[-75.86759375,39.75134320025793],[-75.86519248638483,39.714420013615175],[-75.86545260177591,39.712018750000006],[-75.86532930676266,39.709754306762655],[-75.86274863876136,39.66235761123865],[-75.862484830844,39.6575125],[-75.86219064090982,39.652109390909814],[-75.85993411383801,39.610665886161996],[-75.85951705991206,39.60300625000001],[-75.85905197505697,39.59446447505699],[-75.85711958891466,39.558974161085345],[-75.85654928898015,39.548500000000004],[-75.8541879160769,39.535094166076895],[-75.85257127728326,39.50901622271674],[-75.84907390172074,39.49399375],[-75.84243453896877,39.46883453896877],[-75.84209208382048,39.46498916617953],[-75.83116966876847,39.43948750000001],[-75.82486365847076,39.427711341529246],[-75.8130875,39.41640919924883],[-75.78813049397137,39.40993825602864],[-75.78203101683818,39.40843101683819],[-75.75858125000002,39.40246730936841],[-75.74453332849343,39.39902917150658],[-75.70956453584591,39.39047078584591],[-75.704075,39.38912725747932],[-75.70074418735616,39.38831206264384],[-75.68713478701969,39.384981249999996],[-75.6569550462189,39.377594953781106],[-75.64956875,39.375787205590235],[-75.63151687807493,39.36692937807494],[-75.6201623787589,39.3598813712411],[-75.5950625,39.352575121922534]]]},"properties":{"elevation":55}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.32253125,39.21045286351326],[-75.3150241697975,39.2139554197975],[-75.29893413480784,39.2214625],[-75.27904713516418,39.232484635164184],[-75.268025,39.2358836839279],[-75.25998233617001,39.26792608617002],[-75.25908552885106,39.275968750000004],[-75.25358811242354,39.290405637576455],[-75.24964404598737,39.31209404598736],[-75.23601847600366,39.33047500000001],[-75.23509597753186,39.35205222753187],[-75.23092649457584,39.36757350542415],[-75.22977067214259,39.38498125],[-75.22875877953668,39.400221279536694],[-75.21351874999999,39.43237541105387],[-75.21262985809089,39.438598608090906],[-75.21257060710617,39.4394875],[-75.21250887482901,39.440497375170985],[-75.20708642139105,39.487561421391064],[-75.20673605663843,39.49399375],[-75.20697423927523,39.50053826072479],[-75.21035843400102,39.54533968400103],[-75.2104824805328,39.548500000000004],[-75.20924602904772,39.55277272095227],[-75.21351874999999,39.58717730453668],[-75.2384430703514,39.573424320351414],[-75.24521663327435,39.57130836672564],[-75.268025,39.562087200948426],[-75.2730821603374,39.5535571603374],[-75.27853880444088,39.548500000000004],[-75.30011181991756,39.526080569917575],[-75.32253125,39.51609396430072],[-75.33268555510146,39.50414805510146],[-75.34147499085667,39.49399375],[-75.35503089359898,39.47198714359899],[-75.3770375,39.45330436709277],[-75.38375944196432,39.44620944196432],[-75.39161903897195,39.439487500000006],[-75.40649883708355,39.41444258708355],[-75.43154374999999,39.38591785526921],[-75.4320422588557,39.38547975885571],[-75.43347914495153,39.38498125],[-75.43219426732144,39.38433073267857],[-75.43154375,39.38339742712491],[-75.41389741479371,39.34812133520631],[-75.4096307842499,39.33047500000001],[-75.41022905969527,39.30916030969527],[-75.41215026972897,39.29536223027103],[-75.41282661780227,39.275968750000004],[-75.41328258895186,39.25770758895186],[-75.41654083874948,39.236465411250514],[-75.41702276785715,39.2214625],[-75.39965947531094,39.19884052468906],[-75.3770375,39.19338238216443],[-75.35768651786907,39.20211151786907],[-75.3384499599674,39.20554379003259],[-75.32253125,39.21045286351326]]]},"properties":{"elevation":65}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.5950625,39.381992175629954],[-75.59300221220003,39.382920962200046],[-75.59184837416906,39.38498125],[-75.5660923107108,39.4105173107108],[-75.5645373827149,39.415506367285104],[-75.55281107025593,39.439487500000006],[-75.54731804324388,39.44624929324389],[-75.54055625,39.45344283088235],[-75.52199455587535,39.47543205587535],[-75.51977984076562,39.49399375],[-75.51840664102652,39.51614335897348],[-75.51760878534351,39.52555253534352],[-75.51625363819649,39.5485],[-75.52105218803683,39.568004061963165],[-75.53212888445965,39.59457888445967],[-75.53486088990122,39.60300625000001],[-75.53600041617715,39.60756208382285],[-75.54055625,39.614797525],[-75.5537847025121,39.64428404748789],[-75.55838739286995,39.657512499999996],[-75.56785645846006,39.68471854153995],[-75.567889642756,39.68484589275601],[-75.57619452895894,39.71201875000001],[-75.57927623170843,39.72780501829155],[-75.59506250000001,39.76349057500002],[-75.5980832295565,39.76350427044351],[-75.61280378612435,39.76652500000001],[-75.64330894379182,39.772784806208186],[-75.64956875,39.775952670454544],[-75.65821633284679,39.77517258284678],[-75.6882644123134,39.76652500000001],[-75.70097760416667,39.763427604166665],[-75.704075,39.76267296590908],[-75.70729829282531,39.76330170717468],[-75.71485061444142,39.766525],[-75.7435733941862,39.7815328558138],[-75.75858124999999,39.78967873050458],[-75.77872957535769,39.80088292464232],[-75.81073935054421,39.81868310054422],[-75.8130875,39.81998887270642],[-75.83623641749176,39.78967391749176],[-75.84144011039271,39.766525],[-75.84505936497023,39.74399061497023],[-75.84448308540239,39.73512941459761],[-75.8469865338043,39.712018750000006],[-75.84579989620228,39.69022489620229],[-75.84523609829424,39.67987015170575],[-75.8440187628724,39.65751250000001],[-75.84266123034944,39.632579980349455],[-75.84242157337091,39.628178426629106],[-75.84105099194045,39.60300625000001],[-75.83960704844755,39.57648670155245],[-75.8395225644966,39.57493506449662],[-75.83808322100855,39.548500000000004],[-75.83433974133347,39.52724775866651],[-75.82818147901412,39.50908772901412],[-75.82466745610054,39.49399375],[-75.82224962661778,39.484831623382235],[-75.8130875,39.46858930527104],[-75.79112087544114,39.46145412455887],[-75.776557244598,39.457463494597995],[-75.75858125,39.45205584512323],[-75.74848411364476,39.44958463635525],[-75.70722812430988,39.439487500000006],[-75.70469497250751,39.438867527492505],[-75.704075,39.438715793234145],[-75.70305321893116,39.43846571893115],[-75.66090583137023,39.42815041862977],[-75.64956875,39.42537574134506],[-75.63366928305851,39.40088071694149],[-75.60110743806177,39.38498125],[-75.59737766101244,39.38266608898755],[-75.5950625,39.381992175629954]]]},"properties":{"elevation":65}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.268025,39.31288632207868],[-75.26531863182213,39.327768631822124],[-75.26331243513701,39.33047500000001],[-75.26310195869493,39.33539804130507],[-75.268025,39.36530691361004],[-75.28687045459382,39.34932045459384],[-75.29426934899185,39.33047500000001],[-75.2825202909897,39.31597970901031],[-75.268025,39.31288632207868]]]},"properties":{"elevation":85}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.5950625,39.42397556179775],[-75.58728477448197,39.43170977448197],[-75.58348161636059,39.439487500000006],[-75.56424100801247,39.46317225801248],[-75.54055625,39.48836930147059],[-75.53798172652446,39.49141922652447],[-75.53767454356996,39.49399375],[-75.53748407954544,39.49706592045455],[-75.53370376183813,39.54164751183814],[-75.53329909274193,39.548500000000004],[-75.53473201818565,39.55432423181434],[-75.54055624999998,39.568297525],[-75.55254124290178,39.59102125709823],[-75.55738456647987,39.60300625000001],[-75.56822857598077,39.62984017401923],[-75.56858657672606,39.63103657672608],[-75.57779857462651,39.6575125],[-75.58225590971007,39.670319090289915],[-75.59243778850069,39.709394038500704],[-75.59323998350438,39.712018750000006],[-75.59353765483765,39.713543595162356],[-75.5950625,39.71699057500002],[-75.6000569690226,39.717013219022604],[-75.62575849108354,39.712018750000006],[-75.64491799364161,39.707367993641626],[-75.64956875,39.706236761363634],[-75.65721320612981,39.70437429387019],[-75.68874761513158,39.696691365131585],[-75.704075,39.69295705681818],[-75.72538476424234,39.690708985757674],[-75.73773947353484,39.69117697353485],[-75.75858125,39.68813890667346],[-75.78254480606677,39.681476056066764],[-75.79465263709686,39.6575125],[-75.79815398202611,39.642578982026116],[-75.79552725666343,39.62056649333658],[-75.79781021150168,39.60300625000001],[-75.78665008700627,39.57656883700626],[-75.78645187042456,39.575135629575456],[-75.7800081790452,39.56992692904519],[-75.75858125,39.55080673995759],[-75.75739769055477,39.549683559445235],[-75.75594218731179,39.548500000000004],[-75.72616975494775,39.52640524505225],[-75.704075,39.51850716774744],[-75.69235018024554,39.50571856975446],[-75.67733383165786,39.49399375],[-75.66321515552997,39.48034734447003],[-75.64956875,39.47497741569427],[-75.63128778972593,39.457768460274075],[-75.61172321445335,39.439487500000006],[-75.60453161999637,39.43001838000364],[-75.5950625,39.42397556179775]]]},"properties":{"elevation":85}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.5950625,39.44451629213484],[-75.57308550821904,39.47201675821905],[-75.55252745553544,39.49399375],[-75.54956860015254,39.503006100152554],[-75.54321764285405,39.545838607145946],[-75.54255246359635,39.548500000000004],[-75.54440939212513,39.55235314212514],[-75.5605695148987,39.5829929851013],[-75.56865718908865,39.60300625000001],[-75.57625684797769,39.6218119020223],[-75.58347105252531,39.64592105252533],[-75.58750416550481,39.657512499999996],[-75.5894556353351,39.6631193646649],[-75.59506250000001,39.684636802743995],[-75.61688341172379,39.67933341172381],[-75.63124558666065,39.67583566333936],[-75.64956875,39.671378806818176],[-75.66071855811404,39.66866230811404],[-75.7032994441106,39.658288055889415],[-75.704075,39.65809910227272],[-75.70460562414162,39.65804312414161],[-75.7064826958955,39.6575125],[-75.74506496705358,39.643996217053584],[-75.75858125,39.625042803619266],[-75.76546054781512,39.60988554781513],[-75.76635490479697,39.60300625000001],[-75.76404744103439,39.597540058965635],[-75.75858125,39.59266233682701],[-75.73592210686448,39.57115914313553],[-75.70805662325924,39.548500000000004],[-75.70577112031744,39.546803879682585],[-75.704075,39.54619757789662],[-75.67910579828008,39.51896295171992],[-75.65826673542576,39.502691735425756],[-75.64956875,39.49565417837078],[-75.64860357577626,39.49495892422374],[-75.64779895209581,39.49399375],[-75.62063719508139,39.46841905491861],[-75.5950625,39.44451629213484]]]},"properties":{"elevation":95}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.5950625,39.46505702247191],[-75.58220932907142,39.48114057907142],[-75.57018601997913,39.49399375],[-75.56286259677525,39.51630009677526],[-75.56114025890676,39.527915991093245],[-75.55599556343496,39.548500000000004],[-75.56870022392629,39.5748622760737],[-75.56966715422426,39.57761090422427],[-75.57992981169744,39.60300625000001],[-75.58428511997462,39.61378363002538],[-75.5950625,39.649800556818185],[-75.60525857872598,39.647316421274034],[-75.63268950109648,39.64063325109649],[-75.64956875,39.636520852272724],[-75.6765176260965,39.6299551260965],[-75.67732213040867,39.62975911959135],[-75.704075,39.62324114772727],[-75.71714515658991,39.61607640658991],[-75.72780496940379,39.60300625000001],[-75.71565158788708,39.59142966211294],[-75.70407499999999,39.5818751101123],[-75.68703423729656,39.565540762703456],[-75.6840017215569,39.548500000000004],[-75.66742572655997,39.530643023440035],[-75.64956875,39.51619490870787],[-75.63666365484563,39.506898845154375],[-75.62590523952096,39.493993749999994],[-75.61001977580024,39.47903647419976],[-75.5950625,39.46505702247191]]]},"properties":{"elevation":105}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.5950625,39.49731546819571],[-75.57993990252011,39.533377402520124],[-75.57616021319289,39.548500000000004],[-75.58230728172472,39.56125521827528],[-75.5950625,39.597513625],[-75.60721904841166,39.590849701588354],[-75.62957898609139,39.583016486091395],[-75.64956875,39.554985535473065],[-75.65150587721637,39.55043712721638],[-75.65116115269461,39.548500000000004],[-75.65039457177217,39.54767417822785],[-75.64956875,39.547006004213486],[-75.64422655300163,39.54315780300163],[-75.61754564551501,39.526016854485],[-75.5950625,39.49731546819571]]]},"properties":{"elevation":120}}]}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc