Skip to content

Instantly share code, notes, and snippets.

@tannerjt
Created December 12, 2016 23:44
Show Gist options
  • Save tannerjt/2cd94966ec2da662a169b152dc4b0f10 to your computer and use it in GitHub Desktop.
Save tannerjt/2cd94966ec2da662a169b152dc4b0f10 to your computer and use it in GitHub Desktop.
USA State BBoxes
const bboxes = {
"Mississippi": [
-91.636942,
30.173943,
-88.097888,
34.996052
],
"Oklahoma": [
-103.002565,
33.615765,
-94.431215,
37.002206
],
"Delaware": [
-75.788658,
38.451013,
-75.048939,
39.838526
],
"Minnesota": [
-97.239155,
43.499356,
-89.489226,
49.384358
],
"Illinois": [
-91.512974,
36.970298,
-87.495211,
42.508302
],
"Arkansas": [
-94.617919,
33.004106,
-89.686924,
36.499496
],
"Ohio": [
-84.820157,
38.404338,
-80.518693,
41.977523
],
"Indiana": [
-88.071449,
37.776843,
-84.785111,
41.760592
],
"Maryland": [
-79.487651,
37.911717,
-75.048939,
39.722775
],
"Louisiana": [
-94.043147,
28.925011,
-88.817017,
33.019372
],
"District_of_Columbia": [
-77.1199,
38.791513,
-76.909395,
38.99511
],
"Idaho": [
-117.214889,
41.988057,
-111.043924,
49.000912
],
"Wyoming": [
-111.056888,
40.994746,
-104.05216,
45.005904
],
"West_Virginia": [
-82.644739,
37.202467,
-77.719029,
40.638801
],
"Arizona": [
-114.813613,
31.332502,
-109.045223,
37.003875
],
"Wisconsin": [
-92.888114,
42.49192,
-86.805415,
47.07757
],
"South_Carolina": [
-83.352485,
32.0346,
-78.541087,
35.210542
],
"Michigan": [
-90.418136,
41.696089,
-82.415937,
48.190975
],
"Kansas": [
-102.051744,
36.993083,
-94.589933,
40.003162
],
"Utah": [
-114.052718,
36.997968,
-109.041723,
42.001567
],
"Virginia": [
-83.675413,
36.540738,
-75.242266,
39.466012
],
"Oregon": [
-124.552441,
41.992671,
-116.463504,
46.269531
],
"New_Hampshire": [
-72.556214,
42.69699,
-70.703936,
45.305293
],
"Connecticut": [
-73.727775,
40.985171,
-71.789356,
42.049638
],
"Montana": [
-116.049415,
44.371038,
-104.040114,
49.001076
],
"California": [
-124.409591,
32.534156,
-114.131489,
42.009518
],
"Massachusetts": [
-73.508142,
41.237964,
-69.928261,
42.886589
],
"New_Mexico": [
-109.050044,
31.332301,
-103.001964,
37.000104
],
"South_Dakota": [
-104.057698,
42.479846,
-96.436589,
45.94545
],
"New_York": [
-79.762152,
40.496103,
-71.856214,
45.01585
],
"Vermont": [
-73.437429,
42.726853,
-71.464555,
45.016659
],
"Georgia": [
-85.605165,
30.358035,
-80.840549,
35.000771
],
"Pennsylvania": [
-80.51979,
39.719998,
-74.689767,
42.26986
],
"Florida": [
-87.634938,
24.544701,
-80.031362,
31.000888
],
"Hawaii": [
-160.555771,
18.917466,
-154.809379,
22.23317
],
"North_Dakota": [
-104.0489,
45.935054,
-96.554835,
49.000687
],
"Alaska": [
-179.14734,
51.219862,
179.77847,
71.352561
],
"Nebraska": [
-104.053249,
39.999998,
-95.30829,
43.001378
],
"Kentucky": [
-89.571509,
36.497129,
-81.968297,
39.147458
],
"Missouri": [
-95.774704,
35.995812,
-89.100766,
40.61364
],
"Iowa": [
-96.639704,
40.378264,
-90.140613,
43.500945
],
"Alabama": [
-88.471214,
30.221132,
-84.909052,
35.007712
],
"New_Jersey": [
-75.559446,
38.928519,
-73.893979,
41.357423
],
"Colorado": [
-109.060062,
36.992426,
-102.041574,
41.003444
],
"Washington": [
-124.733174,
45.543541,
-116.915989,
49.002357
],
"Puerto_Rico": [
-67.954119,
17.884813,
-65.22111,
18.515757
],
"Tennessee": [
-90.309877,
34.983375,
-81.6469,
36.678118
],
"Rhode_Island": [
-71.862772,
41.146339,
-71.12057,
42.018798
],
"North_Carolina": [
-84.321869,
33.844517,
-75.458659,
36.588117
],
"Texas": [
-106.627808,
25.856459,
-93.527644,
36.500397
],
"Nevada": [
-120.005746,
35.002085,
-114.039882,
42.000252
],
"Maine": [
-71.084334,
43.059621,
-66.949895,
47.459686
]
}
export default bboxes
@tannerjt
Copy link
Author

tannerjt commented Dec 12, 2016

This file is helpful when filtering queries based on the bbox of a particular state.

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