get timzone unit tests to pass get validation tests to pass get updater and timezone unit test files to build with multiline string formatting update validateFeature to validate polygon outterings and tzid add tzid to all test fixtures of geojson features add txid to test fixture added tzid to hongkon test data but it already has timezone property
16 lines
386 B
JSON
16 lines
386 B
JSON
{
|
|
"type": "FeatureCollection",
|
|
"features": [ {
|
|
"type": "Feature",
|
|
"properties": {
|
|
"tzid": "Europe/Berlin",
|
|
"driving_side": "left",
|
|
"answer": 42,
|
|
"boolean": true,
|
|
"object": { "hello": "world" },
|
|
"array": [4, 8, 15, 16, 23, 42]
|
|
},
|
|
"geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [0, 2], [2, 2], [2, 0], [0, 0] ] ] }
|
|
} ]
|
|
}
|