Skip to content

Commit

Permalink
Merge branch 'feat/refacto_pipeline_first_steps' of https://github.co…
Browse files Browse the repository at this point in the history
…m/InseeFrLab/cartiflette into feat/refacto_pipeline_first_steps
  • Loading branch information
tgrandje committed Nov 12, 2024
2 parents 0307832 + 9076e39 commit 07d4f64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cartiflette/mapshaper/mapshaper_add_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def mapshaper_add_field(

cmd = (
f"mapshaper {input_file} "
f'-each "{label}={value}"'
f'-each "{label}={value}" '
f"{quiet}"
"-proj EPSG:4326 "
f" -o {output} "
Expand Down
2 changes: 1 addition & 1 deletion cartiflette/mapshaper/mapshaper_convert_reproject.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def mapshaper_convert_reproject(
cmd = (
f"mapshaper {input_file} name='{output_name}' "
f"-proj EPSG:{epsg} "
f"{filter_by}"
f"{filter_by} "
f"{quiet}"
f"-o {output} force "
f'format={output_format} extension=".{output_format}" singles'
Expand Down
2 changes: 1 addition & 1 deletion cartiflette/mapshaper/mapshaper_dissolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def mapshaper_dissolve(
# fix_geo = "fix-geometry" if output_format == "topojson" else ""

cmd += (
f"{quiet}"
f" {quiet}"
f" -o {output} force "
# f"{fix_geo}"
)
Expand Down

0 comments on commit 07d4f64

Please sign in to comment.