Skip to content

Commit

Permalink
minor linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewphilipsmith committed Oct 10, 2024
1 parent 5fdc222 commit 941c8a5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bash/combine-iterative-runs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# Run this script from the root of the `group_run_*` directory

# /datadrive/clim-recal-results/group_run_2024-09-26-15-11
# Manaually add in 1981 data from
# Manaually add in 1981 data from
# /datadrive/clim-recal-results/group_run_2024-09-30-16-04/run_24-09-30_16-07

# Manaually add in 1982 data from
# Manaually add in 1982 data from
# /datadrive/clim-recal-results/group_run_2024-10-07-12-31/run_24-10-07_12-37


Expand Down
2 changes: 1 addition & 1 deletion bash/remove-extra-cropfiles.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys
import pathlib
import re
import sys

# get input dir
root_dir = sys.argv[1]
Expand Down
2 changes: 1 addition & 1 deletion bash/run-pipeline-iteratively.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ cpm_end_year=1982
for year in $(seq $cpm_start_year $cpm_end_year); do
echo "Running for year={$year}"

# Including `1201` in the filter, guarantees that we only match on the
# Including `1201` in the filter, guarantees that we only match on the
# start year for each file, not the end year.
cpm_filter="*_${year}1201-*.nc"
# cpm_filter="*_198?1201-*.nc"
Expand Down
2 changes: 1 addition & 1 deletion python/clim_recal/resample.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@

# RESAMPLING_OUTPUT_PATH: Final[PathLike] = (
# CLIMATE_DATA_MOUNT_PATH / "CPM-365/andys-two-gdal-step-approach/resample"
#)
# )
RESAMPLING_OUTPUT_PATH: Final[PathLike] = "/datadrive/clim-recal-results/cropped"
RAW_HADS_PATH: Final[PathLike] = CLIMATE_DATA_MOUNT_PATH / "Raw/HadsUKgrid"
RAW_CPM_PATH: Final[PathLike] = CLIMATE_DATA_MOUNT_PATH / "Raw/UKCP2.2"
Expand Down

0 comments on commit 941c8a5

Please sign in to comment.