Skip to content

Instantly share code, notes, and snippets.

@hrbrmstr
Last active August 29, 2015 14:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hrbrmstr/472f548d8d4ac84b6eb4 to your computer and use it in GitHub Desktop.
Save hrbrmstr/472f548d8d4ac84b6eb4 to your computer and use it in GitHub Desktop.

2015-08-05 UPDATE I got an official response from the Maritime Safety Office that included the official shapefile! I added that GeoJSON to this gist


So, I managed to determine that NIMA is directly associated with the NGIA and I found a GitHub org for NGIA: https://github.com/ngageoint?page=1

There's an iOS app repo there - https://github.com/ngageoint/anti-piracy-iOS-app which had a CSV file: https://raw.githubusercontent.com/ngageoint/anti-piracy-iOS-app/master/Asam/subregions.csv

That CSV file is a set of "spatial lines" for framing the sub-regions. I had to modify the subregions (I put the modified file in this gist) to remove duplicate IDs.

The R script in this gist will convert the CSV tile to a SpatialPolygonsDataFrame and also uses the geojsonio package to make a geojson file of the SPDF (which is also in the repo).

Thank you to everyone who went on the hunt! It's really weird this shapefile wasn't in any catalog.

The reason for this treasure hunt will become evident on September 19th! #rrrr

library(sp)
library(stringr)
dat <- readLines("subregions.csv")
SpatialPolygons(lapply(dat, function(x) {
region <- str_split_fixed(x, ",", 2)[,1]
poly_pts <- as.numeric(str_split(str_split_fixed(x, ",", 2)[,2], ",")[[1]])
poly_mat <- matrix(c(poly_pts, poly_pts[1], poly_pts[2]), ncol=2, byrow=TRUE)
tmp <- poly_mat[,2]
poly_mat[,2] <- poly_mat[,1]
poly_mat[,1] <- tmp
Polygons(list(Polygon(poly_mat)), ID=region)
}), proj4string=CRS("+proj=longlat")) -> subr
subr_dat <- data.frame(id=sapply(subr@polygons, function(x) { slot(x, "ID") }),
stringsAsFactors=FALSE)
rownames(subr_dat) <- subr_dat$id
subr <- SpatialPolygonsDataFrame(subr, subr_dat)
plot(subr)
library(geojsonio)
geojson_write(subr, geometry="polygon", file="subregions.geojson")
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 33 columns, instead of 19. in line 1.
11,32.750000000,-116.000000000,34.250270844,-107.428421021,44.002246857,-105.655769348,44.000003815,-93.000000000,40.499996185,-88.000000000,40.500003815,-82.000007629,35.527622223,-77.197044373,35.499992371,-74.750000000,32.935321808,-74.250007629,32.000000000,-79.599998474,23.499948502,-79.600051880,23.500000000,-86.000000000,23.499994278,-90.000007629,27.299686432,-100.679649353,28.985225677,-105.417129517,32.750000000,-116.000000000
12,35.527622223,-77.197044373,40.500003815,-82.000007629,45.308727264,-72.726028442,41.490531921,-72.377975464,40.880031586,-72.370025635,34.027954102,-68.000099182,32.935321808,-74.250007629,35.499992371,-74.750000000,35.527622223,-77.197044373
13,41.490531921,-72.377975464,45.308727264,-72.726028442,47.500000000,-68.500000000,47.000000000,-66.833000183,45.571815491,-66.833000183,45.000000000,-66.833000183,34.727268219,-64.000007629,34.027954102,-68.000099182,40.880031586,-72.370025635,41.490531921,-72.377975464
14,45.571815491,-66.833000183,47.000000000,-66.833000183,47.500000000,-68.500000000,45.308727264,-72.726028442,40.500003815,-82.000007629,40.499996185,-88.000000000,44.000003815,-93.000000000,44.002246857,-105.655769348,50.135452271,-104.540916443,49.999996185,-92.999992371,52.499992371,-55.750007629,56.999946594,-46.374122620,41.500000000,-27.500000000,36.255950928,-55.255950928,34.727268219,-64.000007629,45.000000000,-66.833000183,45.571815491,-66.833000183
15,49.999996185,-92.999992371,50.135452271,-104.540916443,50.357135773,-123.427871704,55.996353149,-129.862518311,59.827285767,-135.168716431,67.144081116,-139.915374756,69.611801147,-140.000000000,84.000000000,-140.000000000,84.000000000,-58.000007629,81.994918823,-61.014419556,80.603416443,-67.500137329,78.706398010,-73.801895142,76.682182312,-73.793853760,68.994766235,-60.980079651,56.999946594,-46.374122620,52.499992371,-55.750007629,49.999996185,-92.999992371
16a,67.144081116,-139.915374756,59.827285767,-135.168716431,59.000000000,-136.000000000,52.000000000,-150.000000000,45.000000000,-150.000000000,45.000000000,-180.000000000,59.136230469,-180.000000000,66.500000000,-168.000000000,74.017883301,-168.000000000,84.000000000,-168.000000000,84.000000000,-140.000000000,69.611801147,-140.000000000,67.144081116,-139.915374756
16b,50.000000000,170.000000000,53.000000000,170.000000000,59.141044617,180.000000000,45.000000000,180.000000000,45.000000000,170.000000000,50.000000000,170.000000000
17,45.000000000,-150.000000000,52.000000000,-150.000000000,59.000000000,-136.000000000,59.827285767,-135.168716431,55.996353149,-129.862518311,50.357135773,-123.427871704,49.950000763,-124.449996948,45.000000000,-135.000000000,45.000000000,-150.000000000
18,50.357135773,-123.427871704,50.135452271,-104.540916443,34.250270844,-107.428421021,32.750000000,-116.000000000,32.000000000,-120.000000000,18.000000000,-120.000000000,18.000000000,-135.000000000,45.000000000,-135.000000000,49.950000763,-124.449996948,50.357135773,-123.427871704
19,17.918098450,-180.000000000,45.000000000,-180.000000000,45.000000000,-150.000000000,45.000000000,-135.000000000,18.000000000,-135.000000000,17.918098450,-180.000000000
20,25.000000000,170.000000000,45.000000000,170.000000000,45.000000000,180.000000000,18.000000000,180.000000000,18.000000000,170.000000000,25.000000000,170.000000000
21,32.750000000,-116.000000000,28.985225677,-105.417129517,19.907112122,-101.226486206,14.563762665,-87.291870117,10.937788963,-84.805953979,8.903383255,-82.893020630,8.756045341,-82.008003235,8.589264870,-80.988677979,9.266214371,-79.497474670,9.014428139,-78.252540588,8.165849686,-77.666007996,5.000000000,-85.000000000,5.000000000,-120.000000000,18.000000000,-120.000000000,32.000000000,-120.000000000,32.750000000,-116.000000000
22,8.165849686,-77.666007996,5.476679325,-75.311500549,-14.171706200,-58.331077576,-34.083778381,-65.307380676,-52.016635895,-71.590248108,-51.966194153,-68.720603943,-53.000000000,-63.000000000,-60.000000000,-63.000000000,-60.000000000,-120.000000000,5.000000000,-120.000000000,5.000000000,-85.000000000,8.165849686,-77.666007996
23,-34.083778381,-65.307380676,-36.249954224,-57.162769318,-36.250000000,-20.000000000,-53.500000000,-20.000000000,-53.500000000,-47.000000000,-60.000000000,-47.000000000,-60.000000000,-63.000000000,-53.000000000,-63.000000000,-51.966194153,-68.720603943,-52.016635895,-71.590248108,-34.083778381,-65.307380676
24,23.999437332,-42.999435425,1.000000119,-20.000000000,-36.250000000,-20.000000000,-36.249954224,-57.162769318,-34.083778381,-65.307380676,-14.171706200,-58.331077576,5.476679325,-75.311500549,8.165849686,-77.666007996,13.250000954,-76.000007629,13.643375397,-72.049453735,13.500000000,-67.999992371,13.000000000,-65.000000000,11.250000000,-59.333000183,23.999437332,-42.999435425
25,34.727268219,-64.000007629,36.255950928,-55.255950928,23.999437332,-42.999435425,11.250000000,-59.333000183,13.000000000,-65.000000000,13.500000000,-67.999992371,13.643375397,-72.049453735,13.250000954,-76.000007629,17.750013351,-71.499992371,19.999984741,-71.500000000,34.727268219,-64.000007629
26,32.935321808,-74.250007629,34.027954102,-68.000099182,34.727268219,-64.000007629,19.999984741,-71.500000000,17.750013351,-71.499992371,13.250000954,-76.000007629,8.165849686,-77.666007996,9.014428139,-78.252540588,9.266214371,-79.497474670,8.589264870,-80.988677979,8.756045341,-82.008003235,14.000045776,-82.000022888,18.000001907,-81.000000000,19.899993896,-77.250007629,20.384473801,-75.757171631,21.749994278,-75.750000000,23.499948502,-79.600051880,32.000000000,-79.599998474,32.935321808,-74.250007629
27,23.500000000,-86.000000000,23.499948502,-79.600051880,21.749994278,-75.750000000,20.384473801,-75.757171631,19.899993896,-77.250007629,18.000001907,-81.000000000,21.500019073,-86.000007629,23.500000000,-86.000000000
28,28.985225677,-105.417129517,27.299686432,-100.679649353,23.499994278,-90.000007629,23.500000000,-86.000000000,21.500019073,-86.000007629,18.000001907,-81.000000000,14.000045776,-82.000022888,8.756045341,-82.008003235,8.903383255,-82.893020630,10.937788963,-84.805953979,14.563762665,-87.291870117,19.907112122,-101.226486206,28.985225677,-105.417129517
29,-53.500000000,-20.000000000,-60.000000000,-20.000000000,-60.000000000,-47.000000000,-53.500000000,-47.000000000,-53.500000000,-20.000000000
35,70.000000000,-0.000000182,56.580001831,0.000000010,54.000000000,-0.000000004,56.333000183,-5.333000183,52.166000366,-7.250000000,51.333000183,-8.000000000,50.498779297,-10.755830765,50.098834991,-13.333263397,49.743328094,-16.421730042,49.999992371,-19.298252106,70.000000000,-0.000000182
36,54.000000000,-0.000000004,50.080001831,-5.333000183,49.500000000,-6.750000000,42.190994263,-12.749922752,41.500000000,-27.500000000,49.999992371,-19.298252106,49.743328094,-16.421730042,50.098834991,-13.333263397,50.498779297,-10.755830765,51.333000183,-8.000000000,52.166000366,-7.250000000,56.333000183,-5.333000183,54.000000000,-0.000000004
37,56.580001831,0.000000010,56.580001831,8.170000076,56.576995850,8.174303055,56.000000000,9.000000000,54.580001831,9.000000000,53.500000000,10.250000000,50.000000000,10.250000000,42.799999237,0.249999940,42.554054260,-5.000000000,42.190994263,-12.749922752,49.500000000,-6.750000000,50.080001831,-5.333000183,54.000000000,-0.000000004,56.580001831,0.000000010
38,84.000000000,0.000000868,75.500000000,0.000000598,70.000000000,-0.000000182,49.999992371,-19.298252106,41.500000000,-27.500000000,56.999946594,-46.374122620,68.994766235,-60.980079651,76.682182312,-73.793853760,78.706398010,-73.801895142,80.603416443,-67.500137329,81.994918823,-61.014419556,84.000000000,-58.000007629,84.000000000,0.000000868
41a,56.336849213,129.539199829,50.000000000,102.750000000,50.000000000,99.000000000,55.099975586,97.199478149,75.498229980,89.997970581,78.002349854,86.998298645,84.000000000,86.999160767,84.000000000,180.000000000,74.000000000,180.000000000,74.000000000,178.000000000,67.800003052,178.000000000,56.336849213,129.539199829
41b,74.036087036,-180.000000000,84.002609253,-180.000000000,84.000000000,-168.000000000,74.017883301,-168.000000000,74.036087036,-180.000000000
42,61.000003815,35.000000000,66.991241455,24.016050339,69.750000000,31.000001907,71.000000000,33.000000000,75.500000000,33.000000000,75.500000000,0.000000598,84.000000000,0.000000868,84.000000000,36.067436218,84.000000000,86.528755188,84.000000000,86.999160767,78.002349854,86.998298645,75.498229980,89.997970581,55.099975586,97.199478149,50.000000000,99.000000000,50.000000000,91.935134888,50.000000000,62.041564941,50.000000000,43.000000000,50.000000000,35.000000000,61.000003815,35.000000000
43,66.991241455,24.016050339,60.000000000,8.170000076,56.580001831,8.170000076,56.580001831,0.000000010,70.000000000,-0.000000182,75.500000000,0.000000598,75.500000000,33.000000000,71.000000000,33.000000000,69.750000000,31.000001907,66.991241455,24.016050339
44,50.000000000,35.000000000,50.000000000,26.079999924,50.000000000,10.250000000,53.500000000,10.250000000,54.580001831,9.000000000,56.000000000,9.000000000,56.576995850,8.174303055,56.580001831,8.170000076,60.000000000,8.170000076,66.991241455,24.016050339,61.000003815,35.000000000,50.000000000,35.000000000
51,41.500000000,-27.500000000,42.190994263,-12.749922752,42.554054260,-5.000000000,30.000000000,-5.000000000,30.000000000,12.000000000,30.000000000,18.750000000,8.342633247,18.750000000,8.358990669,-7.238349438,4.239999771,-7.240001202,1.000000119,-20.000000000,23.999437332,-42.999435425,36.255950928,-55.255950928,41.500000000,-27.500000000
52,42.799999237,0.249999940,38.599998474,8.250000000,38.599998474,12.000000000,34.000000000,12.000000000,30.000000000,12.000000000,30.000000000,-5.000000000,42.554054260,-5.000000000,42.799999237,0.249999940
53,50.000000000,10.250000000,43.347511292,11.621723175,40.659999847,17.250000000,34.000000000,17.250000000,34.000000000,12.000000000,38.599998474,12.000000000,38.599998474,8.250000000,42.799999237,0.249999940,50.000000000,10.250000000
54,50.000000000,26.079999924,40.000000000,26.079999924,39.000000000,28.500000000,39.000000000,43.000000000,34.000000000,34.000000000,34.000000000,17.250000000,40.659999847,17.250000000,43.347511292,11.621723175,50.000000000,10.250000000,50.000000000,26.079999924
55,50.000000000,43.000000000,39.000000000,43.000000000,39.000000000,28.500000000,40.000000000,26.079999924,50.000000000,26.079999924,50.000000000,35.000000000,50.000000000,43.000000000
56,30.000000000,12.000000000,34.000000000,12.000000000,34.000000000,17.250000000,34.000000000,34.000000000,39.000000000,43.000000000,30.000000000,43.000000000,30.000000000,31.590322495,30.000000000,18.750000000,30.000000000,12.000000000
57,1.000000119,-20.000000000,4.239999771,-7.240001202,8.358990669,-7.238349438,8.342633247,18.750000000,-60.000000000,18.750000000,-60.000000000,-20.000000000,-53.500000000,-20.000000000,-36.250000000,-20.000000000,1.000000119,-20.000000000
61,8.342633247,18.750000000,8.038599014,45.912963867,11.136983871,51.005599976,11.133999825,54.000000000,0.000000041,54.000000000,0.000000005,90.000000000,-11.250000000,90.000000000,-34.000000000,90.000000000,-60.000000000,90.000000000,-60.000000000,18.750000000,8.342633247,18.750000000
62,8.038599014,45.912963867,8.342633247,18.750000000,30.000000000,18.750000000,30.000000000,31.590322495,30.000000000,43.000000000,39.000000000,43.000000000,50.000000000,43.000000000,50.000000000,62.041564941,26.588459015,62.042350769,25.094608307,62.076801300,22.795736313,63.676589966,20.539367676,64.475715637,18.000000000,64.000000000,15.815094948,62.759944916,13.934782982,60.785617828,12.171998978,57.730117798,11.133999825,54.000000000,11.136983871,51.005599976,8.038599014,45.912963867
63,26.588459015,62.042350769,50.000000000,62.041564941,50.000000000,91.935134888,50.000000000,99.000000000,26.544488907,99.000000000,8.249998093,99.000000000,5.000000000,90.000000000,0.000000005,90.000000000,0.000000041,54.000000000,11.133999825,54.000000000,12.171998978,57.730117798,13.934782982,60.785617828,15.815094948,62.759944916,18.000000000,64.000000000,20.539367676,64.475715637,22.795736313,63.676589966,25.094608307,62.076801300,26.588459015,62.042350769
71,0.000000005,90.000000000,5.000000000,90.000000000,8.249998093,99.000000000,1.749999762,104.000000000,7.400000095,107.000000000,7.400000095,116.410003662,7.400000095,117.500007629,6.399542809,118.500465393,-2.500000477,111.000000000,-6.500000000,108.500000000,-11.250000000,108.500000000,-11.250000000,90.000000000,0.000000005,90.000000000
72,6.399542809,118.500465393,5.400000095,119.500007629,4.400000095,119.500007629,4.780911446,123.500007629,1.000002384,123.500007629,0.999995172,121.000053406,-6.500000000,121.000000000,-8.500000000,118.919998169,-11.250000954,118.000000000,-11.250000000,108.500000000,-6.500000000,108.500000000,-2.500000477,111.000000000,6.399542809,118.500465393
73,4.780911446,123.500007629,5.400000095,130.000000000,1.500000000,130.000000000,-0.000000004,136.750000000,-1.000000000,141.250000000,-5.600006580,147.250015259,-8.100000381,150.750000000,-8.100000381,154.000000000,-15.000000000,162.000000000,-12.000000000,150.000000000,-10.000000000,146.000000000,-10.000000000,142.000000000,-9.500000000,132.000000000,-11.250000954,118.000000000,-8.500000000,118.919998169,-6.500000000,121.000000000,0.999995172,121.000053406,1.000002384,123.500007629,4.780911446,123.500007629
74,-11.250000000,90.000000000,-11.250000000,108.500000000,-11.250000954,118.000000000,-9.500000000,132.000000000,-10.000000000,142.000000000,-10.000000000,146.000000000,-12.000000000,150.000000000,-15.000000000,162.000000000,-27.000000000,162.000000000,-27.000000000,172.500000000,-27.000000000,177.000000000,-34.000000000,168.090911865,-34.000080109,151.048080444,-34.044635773,145.828018188,-28.202676773,130.957580566,-34.000000000,114.978965759,-34.000000000,90.000000000,-11.250000000,90.000000000
75,-34.000000000,90.000000000,-34.000000000,114.978965759,-28.202676773,130.957580566,-34.044635773,145.828018188,-34.000080109,151.048080444,-34.000000000,168.090911865,-60.000000000,135.000000000,-60.000000000,90.000000000,-34.000000000,90.000000000
76a,-60.000000000,135.000000000,-34.000000000,168.090911865,-27.000000000,177.000000000,-27.000000000,180.000000000,-60.000000000,180.000000000,-60.000000000,135.000000000
76b,-60.000000000,-175.000000000,-59.985656738,-180.000000000,-26.988185883,-180.000000000,-27.000000000,-175.000000000,-60.000000000,-175.000000000
81,21.500000000,130.000000000,23.500000000,130.000000000,23.500000000,150.000000000,25.000000000,150.000000000,25.000000000,170.000000000,18.000000000,170.000000000,18.000000000,180.000000000,4.000000000,180.000000000,-0.000000009,168.000000000,0.000000049,162.997329712,0.000000107,158.000000000,-0.000000004,136.750000000,1.500000000,130.000000000,5.400000095,130.000000000,13.250000000,130.000000000,21.500000000,130.000000000
82,-0.000000004,136.750000000,0.000000107,158.000000000,0.000000049,162.997329712,-17.999711990,172.500000000,-27.000000000,172.500000000,-27.000000000,162.000000000,-15.000000000,162.000000000,-8.100000381,154.000000000,-8.100000381,150.750000000,-5.600006580,147.250015259,-1.000000000,141.250000000,-0.000000004,136.750000000
83a,-27.000000000,172.500000000,-17.999711990,172.500000000,0.000000049,162.997329712,-0.000000009,168.000000000,4.000000000,180.000000000,-27.000000000,180.000000000,-27.000000000,177.000000000,-27.000000000,172.500000000
83b,-26.988185883,-180.000000000,17.918098450,-180.000000000,18.000000000,-135.000000000,18.000000000,-120.000000000,5.000000000,-120.000000000,-60.000000000,-120.000000000,-60.000000000,-175.000000000,-27.000000000,-175.000000000,-26.988185883,-180.000000000
91,13.000000000,118.999992371,15.000000000,118.250000000,21.500000000,118.250000000,21.500000000,123.500000000,21.500000000,130.000000000,13.250000000,130.000000000,13.250000000,127.000007629,13.000000000,127.000007629,13.000000000,118.999992371
92,7.400000095,116.410003662,13.000000000,118.999992371,13.000000000,127.000007629,13.250000000,127.000007629,13.250000000,130.000000000,5.400000095,130.000000000,4.780911446,123.500007629,4.400000095,119.500007629,5.400000095,119.500007629,6.399542809,118.500465393,7.400000095,117.500007629,7.400000095,116.410003662
93,8.249998093,99.000000000,26.544488907,99.000000000,41.546016693,99.000000000,23.239999771,116.699996948,21.500000000,118.250000000,15.000000000,118.250000000,13.000000000,118.999992371,7.400000095,116.410003662,7.400000095,107.000000000,1.749999762,104.000000000,8.249998093,99.000000000
94,21.500000000,118.250000000,23.239999771,116.699996948,41.546016693,99.000000000,41.537452698,113.226295471,41.515213013,124.297668457,39.900001526,124.310005188,33.000000000,124.310005188,21.500000000,123.500000000,21.500000000,118.250000000
95,41.515213013,124.297668457,42.083305359,129.567108154,42.148853302,130.175079346,42.150001526,130.210006714,40.830001831,140.750000000,39.000000000,140.500000000,36.000000000,138.000000000,35.099998474,135.500000000,34.166000366,131.000000000,33.000000000,128.000000000,33.000000000,124.310005188,39.900001526,124.310005188,41.515213013,124.297668457
96a,42.083305359,129.567108154,41.515213013,124.297668457,41.537452698,113.226295471,41.546016693,99.000000000,50.000000000,99.000000000,50.000000000,102.750000000,56.336849213,129.539199829,67.800003052,178.000000000,74.000000000,178.000000000,74.000000000,180.000000000,59.141044617,180.000000000,53.000000000,170.000000000,50.000000000,170.000000000,42.500000000,155.000000000,40.830001831,140.750000000,42.150001526,130.210006714,42.148853302,130.175079346,42.083305359,129.567108154
96b,59.136230469,-180.000000000,74.036087036,-180.000000000,74.017883301,-168.000000000,66.500000000,-168.000000000,59.136230469,-180.000000000
97,40.830001831,140.750000000,42.500000000,155.000000000,50.000000000,170.000000000,45.000000000,170.000000000,25.000000000,170.000000000,25.000000000,150.000000000,23.500000000,150.000000000,23.500000000,130.000000000,21.500000000,130.000000000,21.500000000,123.500000000,33.000000000,124.310005188,33.000000000,128.000000000,34.166000366,131.000000000,35.099998474,135.500000000,36.000000000,138.000000000,39.000000000,140.500000000,40.830001831,140.750000000
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "id": 0, "properties": { "id": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -116.0, 32.75 ], [ -107.428421021, 34.250270844 ], [ -105.655769348, 44.002246857 ], [ -93.0, 44.000003815 ], [ -88.0, 40.499996185 ], [ -82.000007629, 40.500003815 ], [ -77.197044373, 35.527622223 ], [ -74.75, 35.499992371 ], [ -74.250007629, 32.935321808 ], [ -79.599998474, 32.0 ], [ -79.60005188, 23.499948502 ], [ -86.0, 23.5 ], [ -90.000007629, 23.499994278 ], [ -100.679649353, 27.299686432 ], [ -105.417129517, 28.985225677 ], [ -116.0, 32.75 ], [ -116.0, 32.75 ] ] ] } },
{ "type": "Feature", "id": 1, "properties": { "id": "12" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.197044373, 35.527622223 ], [ -82.000007629, 40.500003815 ], [ -72.726028442, 45.308727264 ], [ -72.377975464, 41.490531921 ], [ -72.370025635, 40.880031586 ], [ -68.000099182, 34.027954102 ], [ -74.250007629, 32.935321808 ], [ -74.75, 35.499992371 ], [ -77.197044373, 35.527622223 ], [ -77.197044373, 35.527622223 ] ] ] } },
{ "type": "Feature", "id": 2, "properties": { "id": "13" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.377975464, 41.490531921 ], [ -72.726028442, 45.308727264 ], [ -68.5, 47.5 ], [ -66.833000183, 47.0 ], [ -66.833000183, 45.571815491 ], [ -66.833000183, 45.0 ], [ -64.000007629, 34.727268219 ], [ -68.000099182, 34.027954102 ], [ -72.370025635, 40.880031586 ], [ -72.377975464, 41.490531921 ], [ -72.377975464, 41.490531921 ] ] ] } },
{ "type": "Feature", "id": 3, "properties": { "id": "14" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.833000183, 45.571815491 ], [ -66.833000183, 47.0 ], [ -68.5, 47.5 ], [ -72.726028442, 45.308727264 ], [ -82.000007629, 40.500003815 ], [ -88.0, 40.499996185 ], [ -93.0, 44.000003815 ], [ -105.655769348, 44.002246857 ], [ -104.540916443, 50.135452271 ], [ -92.999992371, 49.999996185 ], [ -55.750007629, 52.499992371 ], [ -46.37412262, 56.999946594 ], [ -27.5, 41.5 ], [ -55.255950928, 36.255950928 ], [ -64.000007629, 34.727268219 ], [ -66.833000183, 45.0 ], [ -66.833000183, 45.571815491 ], [ -66.833000183, 45.571815491 ] ] ] } },
{ "type": "Feature", "id": 4, "properties": { "id": "15" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.999992371, 49.999996185 ], [ -104.540916443, 50.135452271 ], [ -123.427871704, 50.357135773 ], [ -129.862518311, 55.996353149 ], [ -135.168716431, 59.827285767 ], [ -139.915374756, 67.144081116 ], [ -140.0, 69.61180114699999 ], [ -140.0, 84.0 ], [ -58.000007629, 84.0 ], [ -61.014419556, 81.994918823 ], [ -67.500137329, 80.603416443 ], [ -73.801895142, 78.70639801 ], [ -73.79385376, 76.68218231199999 ], [ -60.980079651, 68.994766235 ], [ -46.37412262, 56.999946594 ], [ -55.750007629, 52.499992371 ], [ -92.999992371, 49.999996185 ], [ -92.999992371, 49.999996185 ] ] ] } },
{ "type": "Feature", "id": 5, "properties": { "id": "16a" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.915374756, 67.144081116 ], [ -135.168716431, 59.827285767 ], [ -136.0, 59.0 ], [ -150.0, 52.0 ], [ -150.0, 45.0 ], [ -180.0, 45.0 ], [ -180.0, 59.136230469 ], [ -168.0, 66.5 ], [ -168.0, 74.017883301 ], [ -168.0, 84.0 ], [ -140.0, 84.0 ], [ -140.0, 69.61180114699999 ], [ -139.915374756, 67.144081116 ], [ -139.915374756, 67.144081116 ] ] ] } },
{ "type": "Feature", "id": 6, "properties": { "id": "16b" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.0, 50.0 ], [ 170.0, 53.0 ], [ 180.0, 59.141044617 ], [ 180.0, 45.0 ], [ 170.0, 45.0 ], [ 170.0, 50.0 ], [ 170.0, 50.0 ] ] ] } },
{ "type": "Feature", "id": 7, "properties": { "id": "17" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -150.0, 45.0 ], [ -150.0, 52.0 ], [ -136.0, 59.0 ], [ -135.168716431, 59.827285767 ], [ -129.862518311, 55.996353149 ], [ -123.427871704, 50.357135773 ], [ -124.449996948, 49.950000763 ], [ -135.0, 45.0 ], [ -150.0, 45.0 ], [ -150.0, 45.0 ] ] ] } },
{ "type": "Feature", "id": 8, "properties": { "id": "18" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.427871704, 50.357135773 ], [ -104.540916443, 50.135452271 ], [ -107.428421021, 34.250270844 ], [ -116.0, 32.75 ], [ -120.0, 32.0 ], [ -120.0, 18.0 ], [ -135.0, 18.0 ], [ -135.0, 45.0 ], [ -124.449996948, 49.950000763 ], [ -123.427871704, 50.357135773 ], [ -123.427871704, 50.357135773 ] ] ] } },
{ "type": "Feature", "id": 9, "properties": { "id": "19" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.0, 17.91809845 ], [ -180.0, 45.0 ], [ -150.0, 45.0 ], [ -135.0, 45.0 ], [ -135.0, 18.0 ], [ -180.0, 17.91809845 ], [ -180.0, 17.91809845 ] ] ] } },
{ "type": "Feature", "id": 10, "properties": { "id": "20" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.0, 25.0 ], [ 170.0, 45.0 ], [ 180.0, 45.0 ], [ 180.0, 18.0 ], [ 170.0, 18.0 ], [ 170.0, 25.0 ], [ 170.0, 25.0 ] ] ] } },
{ "type": "Feature", "id": 11, "properties": { "id": "21" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -116.0, 32.75 ], [ -105.417129517, 28.985225677 ], [ -101.226486206, 19.907112122 ], [ -87.291870117, 14.563762665 ], [ -84.80595397899999, 10.937788963 ], [ -82.89302063, 8.903383255 ], [ -82.008003235, 8.756045341 ], [ -80.988677979, 8.58926487 ], [ -79.49747467, 9.266214371 ], [ -78.252540588, 9.014428139 ], [ -77.666007996, 8.165849686 ], [ -85.0, 5.0 ], [ -120.0, 5.0 ], [ -120.0, 18.0 ], [ -120.0, 32.0 ], [ -116.0, 32.75 ], [ -116.0, 32.75 ] ] ] } },
{ "type": "Feature", "id": 12, "properties": { "id": "22" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.666007996, 8.165849686 ], [ -75.311500549, 5.476679325 ], [ -58.331077576, -14.1717062 ], [ -65.30738067599999, -34.083778381 ], [ -71.590248108, -52.016635895 ], [ -68.720603943, -51.966194153 ], [ -63.0, -53.0 ], [ -63.0, -60.0 ], [ -120.0, -60.0 ], [ -120.0, 5.0 ], [ -85.0, 5.0 ], [ -77.666007996, 8.165849686 ], [ -77.666007996, 8.165849686 ] ] ] } },
{ "type": "Feature", "id": 13, "properties": { "id": "23" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.30738067599999, -34.083778381 ], [ -57.162769318, -36.249954224 ], [ -20.0, -36.25 ], [ -20.0, -53.5 ], [ -47.0, -53.5 ], [ -47.0, -60.0 ], [ -63.0, -60.0 ], [ -63.0, -53.0 ], [ -68.720603943, -51.966194153 ], [ -71.590248108, -52.016635895 ], [ -65.30738067599999, -34.083778381 ], [ -65.30738067599999, -34.083778381 ] ] ] } },
{ "type": "Feature", "id": 14, "properties": { "id": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -42.999435425, 23.999437332 ], [ -20.0, 1.000000119 ], [ -20.0, -36.25 ], [ -57.162769318, -36.249954224 ], [ -65.30738067599999, -34.083778381 ], [ -58.331077576, -14.1717062 ], [ -75.311500549, 5.476679325 ], [ -77.666007996, 8.165849686 ], [ -76.000007629, 13.250000954 ], [ -72.049453735, 13.643375397 ], [ -67.999992371, 13.5 ], [ -65.0, 13.0 ], [ -59.333000183, 11.25 ], [ -42.999435425, 23.999437332 ], [ -42.999435425, 23.999437332 ] ] ] } },
{ "type": "Feature", "id": 15, "properties": { "id": "25" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.000007629, 34.727268219 ], [ -55.255950928, 36.255950928 ], [ -42.999435425, 23.999437332 ], [ -59.333000183, 11.25 ], [ -65.0, 13.0 ], [ -67.999992371, 13.5 ], [ -72.049453735, 13.643375397 ], [ -76.000007629, 13.250000954 ], [ -71.499992371, 17.750013351 ], [ -71.5, 19.999984741 ], [ -64.000007629, 34.727268219 ], [ -64.000007629, 34.727268219 ] ] ] } },
{ "type": "Feature", "id": 16, "properties": { "id": "26" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.250007629, 32.935321808 ], [ -68.000099182, 34.027954102 ], [ -64.000007629, 34.727268219 ], [ -71.5, 19.999984741 ], [ -71.499992371, 17.750013351 ], [ -76.000007629, 13.250000954 ], [ -77.666007996, 8.165849686 ], [ -78.252540588, 9.014428139 ], [ -79.49747467, 9.266214371 ], [ -80.988677979, 8.58926487 ], [ -82.008003235, 8.756045341 ], [ -82.000022888, 14.000045776 ], [ -81.0, 18.000001907 ], [ -77.250007629, 19.899993896 ], [ -75.757171631, 20.384473801 ], [ -75.75, 21.749994278 ], [ -79.60005188, 23.499948502 ], [ -79.599998474, 32.0 ], [ -74.250007629, 32.935321808 ], [ -74.250007629, 32.935321808 ] ] ] } },
{ "type": "Feature", "id": 17, "properties": { "id": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.0, 23.5 ], [ -79.60005188, 23.499948502 ], [ -75.75, 21.749994278 ], [ -75.757171631, 20.384473801 ], [ -77.250007629, 19.899993896 ], [ -81.0, 18.000001907 ], [ -86.000007629, 21.500019073 ], [ -86.0, 23.5 ], [ -86.0, 23.5 ] ] ] } },
{ "type": "Feature", "id": 18, "properties": { "id": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -105.417129517, 28.985225677 ], [ -100.679649353, 27.299686432 ], [ -90.000007629, 23.499994278 ], [ -86.0, 23.5 ], [ -86.000007629, 21.500019073 ], [ -81.0, 18.000001907 ], [ -82.000022888, 14.000045776 ], [ -82.008003235, 8.756045341 ], [ -82.89302063, 8.903383255 ], [ -84.80595397899999, 10.937788963 ], [ -87.291870117, 14.563762665 ], [ -101.226486206, 19.907112122 ], [ -105.417129517, 28.985225677 ], [ -105.417129517, 28.985225677 ] ] ] } },
{ "type": "Feature", "id": 19, "properties": { "id": "29" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.0, -53.5 ], [ -20.0, -60.0 ], [ -47.0, -60.0 ], [ -47.0, -53.5 ], [ -20.0, -53.5 ], [ -20.0, -53.5 ] ] ] } },
{ "type": "Feature", "id": 20, "properties": { "id": "35" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.000000182, 70.0 ], [ 0.00000001, 56.580001831 ], [ -0.000000004, 54.0 ], [ -5.333000183, 56.333000183 ], [ -7.25, 52.166000366 ], [ -8.0, 51.333000183 ], [ -10.755830765, 50.498779297 ], [ -13.333263397, 50.098834991 ], [ -16.421730042, 49.743328094 ], [ -19.298252106, 49.999992371 ], [ -0.000000182, 70.0 ], [ -0.000000182, 70.0 ] ] ] } },
{ "type": "Feature", "id": 21, "properties": { "id": "36" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.000000004, 54.0 ], [ -5.333000183, 50.080001831 ], [ -6.75, 49.5 ], [ -12.749922752, 42.190994263 ], [ -27.5, 41.5 ], [ -19.298252106, 49.999992371 ], [ -16.421730042, 49.743328094 ], [ -13.333263397, 50.098834991 ], [ -10.755830765, 50.498779297 ], [ -8.0, 51.333000183 ], [ -7.25, 52.166000366 ], [ -5.333000183, 56.333000183 ], [ -0.000000004, 54.0 ], [ -0.000000004, 54.0 ] ] ] } },
{ "type": "Feature", "id": 22, "properties": { "id": "37" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.00000001, 56.580001831 ], [ 8.170000076, 56.580001831 ], [ 8.174303055, 56.57699585 ], [ 9.0, 56.0 ], [ 9.0, 54.580001831 ], [ 10.25, 53.5 ], [ 10.25, 50.0 ], [ 0.24999994, 42.799999237 ], [ -5.0, 42.55405426 ], [ -12.749922752, 42.190994263 ], [ -6.75, 49.5 ], [ -5.333000183, 50.080001831 ], [ -0.000000004, 54.0 ], [ 0.00000001, 56.580001831 ], [ 0.00000001, 56.580001831 ] ] ] } },
{ "type": "Feature", "id": 23, "properties": { "id": "38" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000868, 84.0 ], [ 0.000000598, 75.5 ], [ -0.000000182, 70.0 ], [ -19.298252106, 49.999992371 ], [ -27.5, 41.5 ], [ -46.37412262, 56.999946594 ], [ -60.980079651, 68.994766235 ], [ -73.79385376, 76.68218231199999 ], [ -73.801895142, 78.70639801 ], [ -67.500137329, 80.603416443 ], [ -61.014419556, 81.994918823 ], [ -58.000007629, 84.0 ], [ 0.000000868, 84.0 ], [ 0.000000868, 84.0 ] ] ] } },
{ "type": "Feature", "id": 24, "properties": { "id": "41a" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.539199829000012, 56.336849213 ], [ 102.75, 50.0 ], [ 99.0, 50.0 ], [ 97.199478149, 55.099975586 ], [ 89.997970581, 75.49822998 ], [ 86.998298645, 78.002349854 ], [ 86.999160767, 84.0 ], [ 180.0, 84.0 ], [ 180.0, 74.0 ], [ 178.0, 74.0 ], [ 178.0, 67.80000305199999 ], [ 129.539199829000012, 56.336849213 ], [ 129.539199829000012, 56.336849213 ] ] ] } },
{ "type": "Feature", "id": 25, "properties": { "id": "41b" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.0, 74.036087036 ], [ -180.0, 84.002609253 ], [ -168.0, 84.0 ], [ -168.0, 74.017883301 ], [ -180.0, 74.036087036 ], [ -180.0, 74.036087036 ] ] ] } },
{ "type": "Feature", "id": 26, "properties": { "id": "42" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 61.000003815 ], [ 24.016050339, 66.99124145499999 ], [ 31.000001907, 69.75 ], [ 33.0, 71.0 ], [ 33.0, 75.5 ], [ 0.000000598, 75.5 ], [ 0.000000868, 84.0 ], [ 36.067436218, 84.0 ], [ 86.528755188, 84.0 ], [ 86.999160767, 84.0 ], [ 86.998298645, 78.002349854 ], [ 89.997970581, 75.49822998 ], [ 97.199478149, 55.099975586 ], [ 99.0, 50.0 ], [ 91.93513488799999, 50.0 ], [ 62.041564941, 50.0 ], [ 43.0, 50.0 ], [ 35.0, 50.0 ], [ 35.0, 61.000003815 ], [ 35.0, 61.000003815 ] ] ] } },
{ "type": "Feature", "id": 27, "properties": { "id": "43" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.016050339, 66.99124145499999 ], [ 8.170000076, 60.0 ], [ 8.170000076, 56.580001831 ], [ 0.00000001, 56.580001831 ], [ -0.000000182, 70.0 ], [ 0.000000598, 75.5 ], [ 33.0, 75.5 ], [ 33.0, 71.0 ], [ 31.000001907, 69.75 ], [ 24.016050339, 66.99124145499999 ], [ 24.016050339, 66.99124145499999 ] ] ] } },
{ "type": "Feature", "id": 28, "properties": { "id": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 50.0 ], [ 26.079999924, 50.0 ], [ 10.25, 50.0 ], [ 10.25, 53.5 ], [ 9.0, 54.580001831 ], [ 9.0, 56.0 ], [ 8.174303055, 56.57699585 ], [ 8.170000076, 56.580001831 ], [ 8.170000076, 60.0 ], [ 24.016050339, 66.99124145499999 ], [ 35.0, 61.000003815 ], [ 35.0, 50.0 ], [ 35.0, 50.0 ] ] ] } },
{ "type": "Feature", "id": 29, "properties": { "id": "51" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.5, 41.5 ], [ -12.749922752, 42.190994263 ], [ -5.0, 42.55405426 ], [ -5.0, 30.0 ], [ 12.0, 30.0 ], [ 18.75, 30.0 ], [ 18.75, 8.342633247 ], [ -7.238349438, 8.358990669 ], [ -7.240001202, 4.239999771 ], [ -20.0, 1.000000119 ], [ -42.999435425, 23.999437332 ], [ -55.255950928, 36.255950928 ], [ -27.5, 41.5 ], [ -27.5, 41.5 ] ] ] } },
{ "type": "Feature", "id": 30, "properties": { "id": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.24999994, 42.799999237 ], [ 8.25, 38.599998474 ], [ 12.0, 38.599998474 ], [ 12.0, 34.0 ], [ 12.0, 30.0 ], [ -5.0, 30.0 ], [ -5.0, 42.55405426 ], [ 0.24999994, 42.799999237 ], [ 0.24999994, 42.799999237 ] ] ] } },
{ "type": "Feature", "id": 31, "properties": { "id": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.25, 50.0 ], [ 11.621723175, 43.347511292 ], [ 17.25, 40.659999847 ], [ 17.25, 34.0 ], [ 12.0, 34.0 ], [ 12.0, 38.599998474 ], [ 8.25, 38.599998474 ], [ 0.24999994, 42.799999237 ], [ 10.25, 50.0 ], [ 10.25, 50.0 ] ] ] } },
{ "type": "Feature", "id": 32, "properties": { "id": "54" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.079999924, 50.0 ], [ 26.079999924, 40.0 ], [ 28.5, 39.0 ], [ 43.0, 39.0 ], [ 34.0, 34.0 ], [ 17.25, 34.0 ], [ 17.25, 40.659999847 ], [ 11.621723175, 43.347511292 ], [ 10.25, 50.0 ], [ 26.079999924, 50.0 ], [ 26.079999924, 50.0 ] ] ] } },
{ "type": "Feature", "id": 33, "properties": { "id": "55" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 50.0 ], [ 43.0, 39.0 ], [ 28.5, 39.0 ], [ 26.079999924, 40.0 ], [ 26.079999924, 50.0 ], [ 35.0, 50.0 ], [ 43.0, 50.0 ], [ 43.0, 50.0 ] ] ] } },
{ "type": "Feature", "id": 34, "properties": { "id": "56" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 30.0 ], [ 12.0, 34.0 ], [ 17.25, 34.0 ], [ 34.0, 34.0 ], [ 43.0, 39.0 ], [ 43.0, 30.0 ], [ 31.590322495, 30.0 ], [ 18.75, 30.0 ], [ 12.0, 30.0 ], [ 12.0, 30.0 ] ] ] } },
{ "type": "Feature", "id": 35, "properties": { "id": "57" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.0, 1.000000119 ], [ -7.240001202, 4.239999771 ], [ -7.238349438, 8.358990669 ], [ 18.75, 8.342633247 ], [ 18.75, -60.0 ], [ -20.0, -60.0 ], [ -20.0, -53.5 ], [ -20.0, -36.25 ], [ -20.0, 1.000000119 ], [ -20.0, 1.000000119 ] ] ] } },
{ "type": "Feature", "id": 36, "properties": { "id": "61" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.75, 8.342633247 ], [ 45.912963867, 8.038599014 ], [ 51.005599976, 11.136983871 ], [ 54.0, 11.133999825 ], [ 54.0, 0.000000041 ], [ 90.0, 0.000000005 ], [ 90.0, -11.25 ], [ 90.0, -34.0 ], [ 90.0, -60.0 ], [ 18.75, -60.0 ], [ 18.75, 8.342633247 ], [ 18.75, 8.342633247 ] ] ] } },
{ "type": "Feature", "id": 37, "properties": { "id": "62" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.912963867, 8.038599014 ], [ 18.75, 8.342633247 ], [ 18.75, 30.0 ], [ 31.590322495, 30.0 ], [ 43.0, 30.0 ], [ 43.0, 39.0 ], [ 43.0, 50.0 ], [ 62.041564941, 50.0 ], [ 62.042350769, 26.588459015 ], [ 62.0768013, 25.094608307 ], [ 63.676589966, 22.795736313 ], [ 64.47571563699999, 20.539367676 ], [ 64.0, 18.0 ], [ 62.759944916, 15.815094948 ], [ 60.785617828, 13.934782982 ], [ 57.730117798, 12.171998978 ], [ 54.0, 11.133999825 ], [ 51.005599976, 11.136983871 ], [ 45.912963867, 8.038599014 ], [ 45.912963867, 8.038599014 ] ] ] } },
{ "type": "Feature", "id": 38, "properties": { "id": "63" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 62.042350769, 26.588459015 ], [ 62.041564941, 50.0 ], [ 91.93513488799999, 50.0 ], [ 99.0, 50.0 ], [ 99.0, 26.544488907 ], [ 99.0, 8.249998093 ], [ 90.0, 5.0 ], [ 90.0, 0.000000005 ], [ 54.0, 0.000000041 ], [ 54.0, 11.133999825 ], [ 57.730117798, 12.171998978 ], [ 60.785617828, 13.934782982 ], [ 62.759944916, 15.815094948 ], [ 64.0, 18.0 ], [ 64.47571563699999, 20.539367676 ], [ 63.676589966, 22.795736313 ], [ 62.0768013, 25.094608307 ], [ 62.042350769, 26.588459015 ], [ 62.042350769, 26.588459015 ] ] ] } },
{ "type": "Feature", "id": 39, "properties": { "id": "71" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.0, 0.000000005 ], [ 90.0, 5.0 ], [ 99.0, 8.249998093 ], [ 104.0, 1.749999762 ], [ 107.0, 7.400000095 ], [ 116.41000366199999, 7.400000095 ], [ 117.500007629, 7.400000095 ], [ 118.500465393, 6.399542809 ], [ 111.0, -2.500000477 ], [ 108.5, -6.5 ], [ 108.5, -11.25 ], [ 90.0, -11.25 ], [ 90.0, 0.000000005 ], [ 90.0, 0.000000005 ] ] ] } },
{ "type": "Feature", "id": 40, "properties": { "id": "72" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.500465393, 6.399542809 ], [ 119.500007629, 5.400000095 ], [ 119.500007629, 4.400000095 ], [ 123.500007629, 4.780911446 ], [ 123.500007629, 1.000002384 ], [ 121.000053406, 0.999995172 ], [ 121.0, -6.5 ], [ 118.919998169, -8.5 ], [ 118.0, -11.250000954 ], [ 108.5, -11.25 ], [ 108.5, -6.5 ], [ 111.0, -2.500000477 ], [ 118.500465393, 6.399542809 ], [ 118.500465393, 6.399542809 ] ] ] } },
{ "type": "Feature", "id": 41, "properties": { "id": "73" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.500007629, 4.780911446 ], [ 130.0, 5.400000095 ], [ 130.0, 1.5 ], [ 136.75, -0.000000004 ], [ 141.25, -1.0 ], [ 147.250015259, -5.60000658 ], [ 150.75, -8.100000381 ], [ 154.0, -8.100000381 ], [ 162.0, -15.0 ], [ 150.0, -12.0 ], [ 146.0, -10.0 ], [ 142.0, -10.0 ], [ 132.0, -9.5 ], [ 118.0, -11.250000954 ], [ 118.919998169, -8.5 ], [ 121.0, -6.5 ], [ 121.000053406, 0.999995172 ], [ 123.500007629, 1.000002384 ], [ 123.500007629, 4.780911446 ], [ 123.500007629, 4.780911446 ] ] ] } },
{ "type": "Feature", "id": 42, "properties": { "id": "74" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.0, -11.25 ], [ 108.5, -11.25 ], [ 118.0, -11.250000954 ], [ 132.0, -9.5 ], [ 142.0, -10.0 ], [ 146.0, -10.0 ], [ 150.0, -12.0 ], [ 162.0, -15.0 ], [ 162.0, -27.0 ], [ 172.5, -27.0 ], [ 177.0, -27.0 ], [ 168.09091186500001, -34.0 ], [ 151.04808044399999, -34.000080109 ], [ 145.828018187999987, -34.044635773 ], [ 130.95758056599999, -28.202676773 ], [ 114.978965759, -34.0 ], [ 90.0, -34.0 ], [ 90.0, -11.25 ], [ 90.0, -11.25 ] ] ] } },
{ "type": "Feature", "id": 43, "properties": { "id": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.0, -34.0 ], [ 114.978965759, -34.0 ], [ 130.95758056599999, -28.202676773 ], [ 145.828018187999987, -34.044635773 ], [ 151.04808044399999, -34.000080109 ], [ 168.09091186500001, -34.0 ], [ 135.0, -60.0 ], [ 90.0, -60.0 ], [ 90.0, -34.0 ], [ 90.0, -34.0 ] ] ] } },
{ "type": "Feature", "id": 44, "properties": { "id": "76a" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.0, -60.0 ], [ 168.09091186500001, -34.0 ], [ 177.0, -27.0 ], [ 180.0, -27.0 ], [ 180.0, -60.0 ], [ 135.0, -60.0 ], [ 135.0, -60.0 ] ] ] } },
{ "type": "Feature", "id": 45, "properties": { "id": "76b" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.0, -60.0 ], [ -180.0, -59.985656738 ], [ -180.0, -26.988185883 ], [ -175.0, -27.0 ], [ -175.0, -60.0 ], [ -175.0, -60.0 ] ] ] } },
{ "type": "Feature", "id": 46, "properties": { "id": "81" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.0, 21.5 ], [ 130.0, 23.5 ], [ 150.0, 23.5 ], [ 150.0, 25.0 ], [ 170.0, 25.0 ], [ 170.0, 18.0 ], [ 180.0, 18.0 ], [ 180.0, 4.0 ], [ 168.0, -0.000000009 ], [ 162.99732971200001, 0.000000049 ], [ 158.0, 0.000000107 ], [ 136.75, -0.000000004 ], [ 130.0, 1.5 ], [ 130.0, 5.400000095 ], [ 130.0, 13.25 ], [ 130.0, 21.5 ], [ 130.0, 21.5 ] ] ] } },
{ "type": "Feature", "id": 47, "properties": { "id": "82" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.75, -0.000000004 ], [ 158.0, 0.000000107 ], [ 162.99732971200001, 0.000000049 ], [ 172.5, -17.99971199 ], [ 172.5, -27.0 ], [ 162.0, -27.0 ], [ 162.0, -15.0 ], [ 154.0, -8.100000381 ], [ 150.75, -8.100000381 ], [ 147.250015259, -5.60000658 ], [ 141.25, -1.0 ], [ 136.75, -0.000000004 ], [ 136.75, -0.000000004 ] ] ] } },
{ "type": "Feature", "id": 48, "properties": { "id": "83a" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.5, -27.0 ], [ 172.5, -17.99971199 ], [ 162.99732971200001, 0.000000049 ], [ 168.0, -0.000000009 ], [ 180.0, 4.0 ], [ 180.0, -27.0 ], [ 177.0, -27.0 ], [ 172.5, -27.0 ], [ 172.5, -27.0 ] ] ] } },
{ "type": "Feature", "id": 49, "properties": { "id": "83b" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.0, -26.988185883 ], [ -180.0, 17.91809845 ], [ -135.0, 18.0 ], [ -120.0, 18.0 ], [ -120.0, 5.0 ], [ -120.0, -60.0 ], [ -175.0, -60.0 ], [ -175.0, -27.0 ], [ -180.0, -26.988185883 ], [ -180.0, -26.988185883 ] ] ] } },
{ "type": "Feature", "id": 50, "properties": { "id": "91" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.999992371, 13.0 ], [ 118.25, 15.0 ], [ 118.25, 21.5 ], [ 123.5, 21.5 ], [ 130.0, 21.5 ], [ 130.0, 13.25 ], [ 127.000007629, 13.25 ], [ 127.000007629, 13.0 ], [ 118.999992371, 13.0 ], [ 118.999992371, 13.0 ] ] ] } },
{ "type": "Feature", "id": 51, "properties": { "id": "92" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.41000366199999, 7.400000095 ], [ 118.999992371, 13.0 ], [ 127.000007629, 13.0 ], [ 127.000007629, 13.25 ], [ 130.0, 13.25 ], [ 130.0, 5.400000095 ], [ 123.500007629, 4.780911446 ], [ 119.500007629, 4.400000095 ], [ 119.500007629, 5.400000095 ], [ 118.500465393, 6.399542809 ], [ 117.500007629, 7.400000095 ], [ 116.41000366199999, 7.400000095 ], [ 116.41000366199999, 7.400000095 ] ] ] } },
{ "type": "Feature", "id": 52, "properties": { "id": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.0, 8.249998093 ], [ 99.0, 26.544488907 ], [ 99.0, 41.546016693 ], [ 116.699996948, 23.239999771 ], [ 118.25, 21.5 ], [ 118.25, 15.0 ], [ 118.999992371, 13.0 ], [ 116.41000366199999, 7.400000095 ], [ 107.0, 7.400000095 ], [ 104.0, 1.749999762 ], [ 99.0, 8.249998093 ], [ 99.0, 8.249998093 ] ] ] } },
{ "type": "Feature", "id": 53, "properties": { "id": "94" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.25, 21.5 ], [ 116.699996948, 23.239999771 ], [ 99.0, 41.546016693 ], [ 113.226295471, 41.537452698 ], [ 124.297668457, 41.515213013 ], [ 124.310005188, 39.900001526 ], [ 124.310005188, 33.0 ], [ 123.5, 21.5 ], [ 118.25, 21.5 ], [ 118.25, 21.5 ] ] ] } },
{ "type": "Feature", "id": 54, "properties": { "id": "95" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.297668457, 41.515213013 ], [ 129.56710815400001, 42.083305359 ], [ 130.17507934599999, 42.148853302 ], [ 130.210006714, 42.150001526 ], [ 140.75, 40.830001831 ], [ 140.5, 39.0 ], [ 138.0, 36.0 ], [ 135.5, 35.099998474 ], [ 131.0, 34.166000366 ], [ 128.0, 33.0 ], [ 124.310005188, 33.0 ], [ 124.310005188, 39.900001526 ], [ 124.297668457, 41.515213013 ], [ 124.297668457, 41.515213013 ] ] ] } },
{ "type": "Feature", "id": 55, "properties": { "id": "96a" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.56710815400001, 42.083305359 ], [ 124.297668457, 41.515213013 ], [ 113.226295471, 41.537452698 ], [ 99.0, 41.546016693 ], [ 99.0, 50.0 ], [ 102.75, 50.0 ], [ 129.539199829000012, 56.336849213 ], [ 178.0, 67.80000305199999 ], [ 178.0, 74.0 ], [ 180.0, 74.0 ], [ 180.0, 59.141044617 ], [ 170.0, 53.0 ], [ 170.0, 50.0 ], [ 155.0, 42.5 ], [ 140.75, 40.830001831 ], [ 130.210006714, 42.150001526 ], [ 130.17507934599999, 42.148853302 ], [ 129.56710815400001, 42.083305359 ], [ 129.56710815400001, 42.083305359 ] ] ] } },
{ "type": "Feature", "id": 56, "properties": { "id": "96b" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.0, 59.136230469 ], [ -180.0, 74.036087036 ], [ -168.0, 74.017883301 ], [ -168.0, 66.5 ], [ -180.0, 59.136230469 ], [ -180.0, 59.136230469 ] ] ] } },
{ "type": "Feature", "id": 57, "properties": { "id": "97" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.75, 40.830001831 ], [ 155.0, 42.5 ], [ 170.0, 50.0 ], [ 170.0, 45.0 ], [ 170.0, 25.0 ], [ 150.0, 25.0 ], [ 150.0, 23.5 ], [ 130.0, 23.5 ], [ 130.0, 21.5 ], [ 123.5, 21.5 ], [ 124.310005188, 33.0 ], [ 128.0, 33.0 ], [ 131.0, 34.166000366 ], [ 135.5, 35.099998474 ], [ 138.0, 36.0 ], [ 140.5, 39.0 ], [ 140.75, 40.830001831 ], [ 140.75, 40.830001831 ] ] ] } }
]
}
@mikeatlas
Copy link

I was mentioned on this from twitter, what's the hoopla all about? These subregions don't make a ton of sense without context, but sortof remind me of FAA regions:

faa-zones-map

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment