Skip to content

Commit

Permalink
Remove AOI hack
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaraphael committed Nov 6, 2023
1 parent 56c561e commit bb33c6d
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 @@ -36,7 +36,6 @@ def upgrade() -> None:
session = orm.Session(bind=bind)

iho = get_iho_from_url()
iho = {"features": []} # noqa
for feat in iho.get("features"):
with session.begin():
aoi_iho = database_schema.AoiIho(
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"):
with session.begin():
aoi_mpa = database_schema.AoiMpa(
Expand Down

0 comments on commit bb33c6d

Please sign in to comment.