Skip to content

Commit

Permalink
including shape_id in default
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidOry committed Aug 19, 2020
1 parent d5513e6 commit ab59509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lasso/roadway.py
Original file line number Diff line number Diff line change
Expand Up @@ -1766,7 +1766,7 @@ def write_roadway_as_shp(

# unless specified that all the data goes to the DBF, only output A and B
dbf_link_output_variables = (
link_output_variables if data_to_dbf else ["A", "B", "geometry"]
link_output_variables if data_to_dbf else ["A", "B", "shape_id", "geometry"]
)

output_link_shp = (
Expand Down

1 comment on commit ab59509

@DavidOry
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@i-am-sijia
Adding shape_id to the default variables to facilitate the subsequent join (#104)

Please sign in to comment.