Skip to content

Commit

Permalink
Allow tables
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaraphael committed Aug 20, 2024
1 parent b88fedb commit 39b68ba
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion alembic/versions/5e03ce584f3c_add_eez.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ def upgrade() -> None:
session = orm.Session(bind=bind)

eez = get_eez_from_url() # geojson.load(open("EEZ_and_HighSeas_20230410.json"))
eez = {"features": []} # noqa
for feat in eez.get("features"):
sovereign_keys = [
k for k in list(feat["properties"].keys()) if k.startswith("SOVEREIGN")
Expand Down
1 change: 0 additions & 1 deletion alembic/versions/c0bd1215a3ca_add_iho.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ def upgrade() -> None:

iho = get_iho_from_url()

iho = {"features": []} # noqa
for feat in iho.get("features"):
geometry = shape(feat["geometry"]).buffer(0)
if not isinstance(geometry, MultiPolygon):
Expand Down
1 change: 0 additions & 1 deletion alembic/versions/f9b7166c86b7_add_mpa.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ def upgrade() -> None:
session = orm.Session(bind=bind)

mpa = get_mpa_from_url()
mpa = {"features": []} # noqa
for feat in mpa.get("features"):
geometry = shape(feat["geometry"]).buffer(0)
if not isinstance(geometry, MultiPolygon):
Expand Down

0 comments on commit 39b68ba

Please sign in to comment.