Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add db parameter to split_by_square after recent changes to fmtm-splitter #2020

Merged
merged 7 commits into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
with:
context: src/backend
build_target: prod
scan_image: False
image_name: ghcr.io/${{ github.repository }}/backend

frontend-build:
Expand Down
3 changes: 2 additions & 1 deletion src/backend/app/projects/project_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -619,8 +619,9 @@ async def preview_split_by_square(

return split_by_square(
boundary_featcol,
osm_extract=parsed_extract,
settings.FMTM_DB_URL.unicode_string(),
meters=dimension_meters,
osm_extract=parsed_extract,
)


Expand Down
Loading