Skip to content

Commit

Permalink
fix pre-commit issues after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
favyen2 committed Oct 22, 2024
1 parent b37da30 commit eb7f07f
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def create_json(fname: str) -> None:
json.dump(json_data, f)


def create_islands_file(fname):
def create_islands_file(fname: str) -> None:
json_data = {
"type": "FeatureCollection",
"crs": {
Expand Down
42 changes: 41 additions & 1 deletion tests/integration/maldives_ecosystem_mapping/data/islands.json
Original file line number Diff line number Diff line change
@@ -1 +1,41 @@
{"type": "FeatureCollection", "crs": {"properties": {"name": "EPSG:3857"}}, "features": [{"type": "Feature", "properties": {"atoll": "x", "islandName": "x", "FCODE": "x"}, "geometry": {"type": "Polygon", "coordinates": [[[0, 0], [0, 32], [32, 32], [32, 0]]]}}]}
{
"crs": {
"properties": {
"name": "EPSG:3857"
}
},
"features": [
{
"geometry": {
"coordinates": [
[
[
0,
0
],
[
0,
32
],
[
32,
32
],
[
32,
0
]
]
],
"type": "Polygon"
},
"properties": {
"FCODE": "x",
"atoll": "x",
"islandName": "x"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
}

0 comments on commit eb7f07f

Please sign in to comment.