Skip to content

Instantly share code, notes, and snippets.

@springmeyer
Last active August 1, 2019 23:05
Show Gist options
  • Save springmeyer/45296f289e9bf816d3fb4d3290af104b to your computer and use it in GitHub Desktop.
Save springmeyer/45296f289e9bf816d3fb4d3290af104b to your computer and use it in GitHub Desktop.
World Mercator tiling scheme @ z1
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"name": "world-merc-z1",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "z": 1, "x": 0, "y": 0, "bbox": "-20037508.342789248,0,-10018754.171394624,10018754.171394624" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.0, 0.0 ], [ -180.0, 66.653475896509008 ], [ -90.0, 66.653475896509008 ], [ -90.0, 0.0 ], [ -180.0, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "z": 1, "x": 0, "y": 1, "bbox": "-20037508.342789248,-10018754.171394624,-10018754.171394624,0" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.0, -66.653475896509008 ], [ -180.0, 0.0 ], [ -90.0, 0.0 ], [ -90.0, -66.653475896509008 ], [ -180.0, -66.653475896509008 ] ] ] } },
{ "type": "Feature", "properties": { "z": 1, "x": 1, "y": 0, "bbox": "-10018754.171394624,0,0,10018754.171394624" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.0, 0.0 ], [ -90.0, 66.653475896509008 ], [ 0.0, 66.653475896509008 ], [ 0.0, 0.0 ], [ -90.0, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "z": 1, "x": 1, "y": 1, "bbox": "-10018754.171394624,-10018754.171394624,0,0" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.0, -66.653475896509008 ], [ -90.0, 0.0 ], [ 0.0, 0.0 ], [ 0.0, -66.653475896509008 ], [ -90.0, -66.653475896509008 ] ] ] } },
{ "type": "Feature", "properties": { "z": 1, "x": 2, "y": 0, "bbox": "0,0,10018754.171394624,10018754.171394624" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 0.0 ], [ 0.0, 66.653475896509008 ], [ 90.0, 66.653475896509008 ], [ 90.0, 0.0 ], [ 0.0, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "z": 1, "x": 2, "y": 1, "bbox": "0,-10018754.171394624,10018754.171394624,0" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, -66.653475896509008 ], [ 0.0, 0.0 ], [ 90.0, 0.0 ], [ 90.0, -66.653475896509008 ], [ 0.0, -66.653475896509008 ] ] ] } },
{ "type": "Feature", "properties": { "z": 1, "x": 3, "y": 0, "bbox": "10018754.171394624,0,20037508.342789248,10018754.171394624" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.0, 0.0 ], [ 90.0, 66.653475896509008 ], [ 180.0, 66.653475896509008 ], [ 180.0, 0.0 ], [ 90.0, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "z": 1, "x": 3, "y": 1, "bbox": "10018754.171394624,-10018754.171394624,20037508.342789248,0" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.0, -66.653475896509008 ], [ 90.0, 0.0 ], [ 180.0, 0.0 ], [ 180.0, -66.653475896509008 ], [ 90.0, -66.653475896509008 ] ] ] } }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment