Skip to content

Commit

Permalink
Updated paths to reflect an example
Browse files Browse the repository at this point in the history
  • Loading branch information
phillipjws committed Jan 21, 2025
1 parent fdf0d97 commit 3dbce4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tide_model_clipping/clip_tide_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@
# 1) Define inputs
# Path to geojson file, note this file should contain any area you may want to run coastsat in
# Ex: The whole country of Australia
geojson_file = r"C:\Users\psteeves\coastal\canada_region.geojson"
geojson_file = r"C:\path\to\example\region.geojson"
# Path to existing 'load_tide' directory
load_tide_dir = r"C:\Users\psteeves\coastal\load_tide" # 'radial' dataset
load_tide_dir = r"C:\path\to\load_tide" # 'radial' dataset
# Path to existing 'ocean_tide' directory
ocean_tide_dir = r"C:\Users\psteeves\coastal\ocean_tide" # 'tide' dataset
ocean_tide_dir = r"C:\path\to\ocean_tide" # 'tide' dataset
# Where the new clipped files will be put
output_dir = os.getcwd()

# Path to original fes2022.yaml file
original_yaml = r"C:\Users\psteeves\coastal\fes2022.yaml"
original_yaml = r"C:\path\to\existing\fes2022.yaml"
# Where the new fes2022_clipped.yaml will be put
new_yaml = os.path.join(os.getcwd(), "fes2022_clipped.yaml")

Expand Down

0 comments on commit 3dbce4c

Please sign in to comment.