-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: standardize formatting and precision in feature collection …
…test fixtures
- Loading branch information
Showing
8 changed files
with
2,785 additions
and
2,173 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
559 changes: 430 additions & 129 deletions
559
tests/fixtures/results/aspc-with-circular-geometry.js
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,61 @@ | ||
module.exports = { | ||
"type": "FeatureCollection", | ||
"features": [ | ||
{ | ||
"type": "Feature", | ||
"id": "80375e33-8ee0-4072-8b0f-511e40fd4b78", | ||
"properties": { | ||
"name": "ED-R10B Todendorf-Putlos MON-SAT+", | ||
"class": "R", | ||
"upperCeiling": { | ||
"value": 40000, | ||
"unit": "FT", | ||
"referenceDatum": "MSL" | ||
}, | ||
"lowerCeiling": { | ||
"value": 0, | ||
"unit": "FT", | ||
"referenceDatum": "GND" | ||
} | ||
}, | ||
"geometry": { | ||
"type": "Polygon", | ||
"coordinates": [ | ||
[ | ||
[ | ||
10.666666666666666, | ||
54.416666666666664 | ||
], | ||
[ | ||
10.666666666666666, | ||
54.333333333333336 | ||
], | ||
[ | ||
10.666666666666666, | ||
54.25527777777778 | ||
], | ||
[ | ||
10.683333333333334, | ||
54.25 | ||
], | ||
[ | ||
10.883333333333333, | ||
54.325 | ||
], | ||
[ | ||
10.883333333333333, | ||
54.43333333333333 | ||
], | ||
[ | ||
10.833333333333334, | ||
54.416666666666664 | ||
], | ||
[ | ||
10.666666666666666, | ||
54.416666666666664 | ||
] | ||
] | ||
] | ||
} | ||
} | ||
] | ||
type: "FeatureCollection", | ||
features: [ | ||
{ | ||
type: "Feature", | ||
properties: { | ||
name: "ED-R10B Todendorf-Putlos MON-SAT+", | ||
class: "R", | ||
upperCeiling: { | ||
value: 40000, | ||
unit: "FT", | ||
referenceDatum: "MSL", | ||
}, | ||
lowerCeiling: { | ||
value: 0, | ||
unit: "FT", | ||
referenceDatum: "GND", | ||
}, | ||
}, | ||
geometry: { | ||
type: "Polygon", | ||
coordinates: [ | ||
[ | ||
[ | ||
10.66667, | ||
54.41667, | ||
], | ||
[ | ||
10.66667, | ||
54.33333, | ||
], | ||
[ | ||
10.66667, | ||
54.25528, | ||
], | ||
[ | ||
10.68333, | ||
54.25, | ||
], | ||
[ | ||
10.88333, | ||
54.325, | ||
], | ||
[ | ||
10.88333, | ||
54.43333, | ||
], | ||
[ | ||
10.83333, | ||
54.41667, | ||
], | ||
[ | ||
10.66667, | ||
54.41667, | ||
], | ||
], | ||
], | ||
}, | ||
}, | ||
], | ||
} |
Oops, something went wrong.