Skip to content

Commit

Permalink
updated local model locations
Browse files Browse the repository at this point in the history
  • Loading branch information
kthyng committed Nov 14, 2024
1 parent 2dc954e commit 4ac521c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions particle_tracking_manager/models/opendrift/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ def make_ciofs_kerchunk(start, end, name):
_description_
"""

if name in ["ciofs", "ciofs_fresh"]:
output_dir_single_files = f"/home/kristen/projects/kerchunk_setup/{name}"
if name == "ciofs":
output_dir_single_files = "/mnt/vault/ciofs/HINDCAST/.kerchunk_json"
elif name == "ciofs_fresh":
output_dir_single_files = "/mnt/vault/ciofs/HINDCAST_FRESHWATER/.kerchunk_json"
elif name == "aws_ciofs_with_angle":
output_dir_single_files = "/mnt/depot/data/packrat/prod/noaa/coops/ofs/aws_ciofs/processed/.kerchunk_json"
else:
Expand Down Expand Up @@ -191,7 +193,9 @@ def make_nwgoa_kerchunk(start, end):
"""

# this version of the daily json files has the grid file merged
output_dir_single_files = "/home/kristen/projects/kerchunk_setup/nwgoa_with_grids"
output_dir_single_files = (
"/mnt/depot/data/packrat/prod/aoos/nwgoa/processed/.kerchunk_json"
)

fs2 = fsspec.filesystem("") # local file system to save final jsons to

Expand Down

0 comments on commit 4ac521c

Please sign in to comment.