Created
February 28, 2019 02:18
-
-
Save rowanwins/966e7dbb444a3819dc8b7618c5dddccb to your computer and use it in GitHub Desktop.
Matching Base Z
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": { | |
"height": 1 | |
}, | |
"geometry": { | |
"type": "Polygon", | |
"coordinates": [ | |
[ | |
[ | |
0, | |
0, | |
0 | |
], | |
[ | |
0, | |
1, | |
0 | |
], | |
[ | |
1, | |
1, | |
0 | |
], | |
[ | |
1, | |
0, | |
0.1 | |
], | |
[ | |
0, | |
0, | |
0 | |
] | |
] | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"height": 2 | |
}, | |
"geometry": { | |
"type": "Polygon", | |
"coordinates": [ | |
[ | |
[ | |
1, | |
0, | |
0.1 | |
], | |
[ | |
1, | |
1, | |
0 | |
], | |
[ | |
2, | |
1, | |
0 | |
], | |
[ | |
2, | |
0, | |
0 | |
], | |
[ | |
1, | |
0, | |
0.1 | |
] | |
] | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment