Skip to content

Commit

Permalink
Remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
margrietpalm committed Jan 21, 2025
1 parent 6598914 commit a14134f
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ def transform_column(table_name, srid):
op.execute(sa.text(f"CREATE TABLE {temp_table_name} ({col_str});"))
# Add geometry column with new srid!
geom_type = get_geom_type(table_name, 'geom')
print(table_name, geom_type)
add_geometry_column(temp_table_name, 'geom', srid, geom_type)
# Copy transformed geometry and other columns to temp table
col_str = ','.join(['id'] + col_names)
Expand Down

0 comments on commit a14134f

Please sign in to comment.