Skip to content

Instantly share code, notes, and snippets.

@alexbnlee
Created November 14, 2019 09:02
Show Gist options
  • Save alexbnlee/5a6821a00838e8a6e4dc3501cb09bcca to your computer and use it in GitHub Desktop.
Save alexbnlee/5a6821a00838e8a6e4dc3501cb09bcca to your computer and use it in GitHub Desktop.
Longitude and latitude bounding box around USA
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-125,
24
],
[
-125,
49
],
[
-66,
49
],
[
-66,
24
],
[
-125,
24
]
]
]
}
}
]
}
@alexbnlee
Copy link
Author

It's easy to get coordinates of bounding box with this website: https://boundingbox.klokantech.com/

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