Last active
May 21, 2019 21:07
-
-
Save springmeyer/54bf1ffae9948bf07fdc132ca314f69f to your computer and use it in GitHub Desktop.
WGS84 tiling scheme
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
{"type": "FeatureCollection", "features": [ | |
{"type": "Feature","properties": {"z":1, "x":0, "y": 0, "bbox": "-180,-90,-90,0"},"geometry": { "type": "Polygon", "coordinates": [[ [-180,-90], [-180,0], [-90,0], [-90,-90], [-180,-90] ]]}} | |
,{"type": "Feature","properties": {"z":1, "x":0, "y": 1, "bbox": "-180,0,-90,90"},"geometry": { "type": "Polygon", "coordinates": [[ [-180,0], [-180,90], [-90,90], [-90,0], [-180,0] ]]}} | |
,{"type": "Feature","properties": {"z":1, "x":1, "y": 0, "bbox": "-90,-90,0,0"},"geometry": { "type": "Polygon", "coordinates": [[ [-90,-90], [-90,0], [0,0], [0,-90], [-90,-90] ]]}} | |
,{"type": "Feature","properties": {"z":1, "x":1, "y": 1, "bbox": "-90,0,0,90"},"geometry": { "type": "Polygon", "coordinates": [[ [-90,0], [-90,90], [0,90], [0,0], [-90,0] ]]}} | |
,{"type": "Feature","properties": {"z":1, "x":2, "y": 0, "bbox": "0,-90,90,0"},"geometry": { "type": "Polygon", "coordinates": [[ [0,-90], [0,0], [90,0], [90,-90], [0,-90] ]]}} | |
,{"type": "Feature","properties": {"z":1, "x":2, "y": 1, "bbox": "0,0,90,90"},"geometry": { "type": "Polygon", "coordinates": [[ [0,0], [0,90], [90,90], [90,0], [0,0] ]]}} | |
,{"type": "Feature","properties": {"z":1, "x":3, "y": 0, "bbox": "90,-90,180,0"},"geometry": { "type": "Polygon", "coordinates": [[ [90,-90], [90,0], [180,0], [180,-90], [90,-90] ]]}} | |
,{"type": "Feature","properties": {"z":1, "x":3, "y": 1, "bbox": "90,0,180,90"},"geometry": { "type": "Polygon", "coordinates": [[ [90,0], [90,90], [180,90], [180,0], [90,0] ]]}} | |
]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment