-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
The code was identical except for comments and print statements. So now we move it all into a single function that is part of the package, so the individual scripts are just a few lines. Only AGV was an outlier since it had a lot of code after the shared code. Perhaps @rbruijnshkv can comment on if that is needed or not. Another difference I noticed is this, AGV has this set to 5: ``` distance_interval = 50 # The distance interval you want to segment the lines at ``` This only deduplicates, I didn't want to start modifying the code at the same time. So I cannot run it since it relies on local paths that I don't have.
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
__version__ = "0.1.0" | ||
|
||
from peilbeheerst_model.parse_crossings import ParseCrossings | ||
from peilbeheerst_model.shortest_path import shortest_path_waterschap | ||
from peilbeheerst_model.waterschappen import waterschap_data | ||
|
||
__all__ = ["ParseCrossings", "waterschap_data"] | ||
__all__ = ["ParseCrossings", "shortest_path_waterschap", "waterschap_data"] |
Large diffs are not rendered by default.