This PR includes the data processing for the flowviz. @CeciliaNilsson709 can you let me know if you still have uncommitted/pushed local changes before I accept this one?
Note: the settings are implemented slightly different. Now it should be sufficient to just change the project_name. I had to update that one back to "example", so it would work for people trying out this repo.
For processing flyway data, you'd have to set this to "flyway" (and maybe customize some of the paths, especially the raw_data_dir which you had as all_flyway). This is how it was before:
# Where you store your raw data (needs a trailing slash)
raw_data_dir <- "../data/raw/all_flyway/"
# Where it should write the processed data (needs a trailing slash).
processed_data_dir <- "../data/processed/flyway/" # Make sure this folder exists!
# Your processing settings:
settings_file <- "../settings/flyway_settings.yaml"
# The radar metadata (incl. coordinates):
radars_metadata_file <- "../settings/radars.csv"
This PR includes the data processing for the flowviz. @CeciliaNilsson709 can you let me know if you still have uncommitted/pushed local changes before I accept this one?
Note: the settings are implemented slightly different. Now it should be sufficient to just change the project_name. I had to update that one back to "example", so it would work for people trying out this repo.
For processing flyway data, you'd have to set this to "flyway" (and maybe customize some of the paths, especially the
raw_data_dir
which you had asall_flyway
). This is how it was before: