Last active
August 1, 2019 23:05
-
-
Save springmeyer/45296f289e9bf816d3fb4d3290af104b to your computer and use it in GitHub Desktop.
World Mercator tiling scheme @ z1
This file contains 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
{ | |
"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