Last active
April 2, 2021 03:36
-
-
Save cageyjames/4accd59dab7e0635301b6a77ab2d6f7c to your computer and use it in GitHub Desktop.
Sample problem from GeoJSON-Ballparks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "ballparks", | |
"type": "FeatureCollection", | |
"features": [{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [-111.88552836402256, 33.545239511955714] | |
}, | |
"properties": { | |
"Class": "Spring Training", | |
"League": "Cactus", | |
"Team": "Arizona Diamondbacks", | |
"Ballpark": "Salt River Fields at Talking Stick", | |
"Lat": "33.546111", | |
"Long": "-111.885278" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [-111.88552836402256, 33.545239511955714] | |
}, | |
"properties": { | |
"Class": "Spring Training", | |
"League": "Cactus", | |
"Team": "Colorado Rockies", | |
"Ballpark": "Salt River Fields at Talking Stick", | |
"Lat": "33.546111", | |
"Long": "-111.885278" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [-111.88552836402256, 33.545239511955714] | |
}, | |
"properties": { | |
"Class": "Rookie", | |
"League": "Arizona League", | |
"Team": "Arizona League Diamondbacks", | |
"Ballpark": "Salt River Fields at Talking Stick", | |
"Lat": "33.546111", | |
"Long": "-111.885278" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [-111.88552836402256, 33.545239511955714] | |
}, | |
"properties": { | |
"Class": "Off Season", | |
"League": "Arizona Fall League", | |
"Team": "Salt River Rafters, Scottsdale Scorpions", | |
"Ballpark": "Salt River Fields at Talking Stick", | |
"Lat": "33.546111", | |
"Long": "-111.885278" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment