Skip to content

Commit ce3ace7

Browse files
committed
Merged working (non-object) code into master!
2 parents e8afe07 + da1f978 commit ce3ace7

39 files changed

+5737
-766
lines changed

.gitignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
*.dSYM
1515
*.dll
1616

17+
# Debug Symbols
18+
*.dSYM
19+
1720
# Fortran module files
1821
*.mod
1922

@@ -27,6 +30,9 @@
2730
*.exe
2831
*.out
2932
*.app
33+
test_sort
34+
test_regression
3035
test_calendar
31-
test_master_file
36+
test_qm
37+
test_config
3238
downscale

.travis.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ addons:
1111
packages:
1212
- gfortran
1313
- libnetcdf-dev
14+
- liblapack-dev
1415
script:
15-
- sed -i "s|NCDF_PATH = /usr/local|NCDF_PATH = /usr|" makefile
16-
- make test -j4
17-
- make -j4
16+
- sed -i "s|NCDF_PATH = /usr/local|NCDF_PATH = /usr|" src/makefile
17+
- sed -i "s|LAPACK_PATH = /usr/local|LAPACK_PATH = /usr|" src/makefile
18+
- make -C src -j4 test
19+
- make -C src -j4

docs/index.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ This code is designed to provide a simple statistical downscaling method relying
44
regressions and statistical transformations from various inputs (e.g. precipitation,
55
humidity, wind, PCA, etc.) to various outputs (e.g. precipitation, temperature, etc.)
66

7+
##Useful commands
8+
Use the following to generate a list of e.g. GEFS precipitation files for input.
9+
ls -1 gefs/2010/*/apcp_sfc_*_mean.nc | sed 's/*//g;s/$/"/g;s/^/"/g'>gefs_pr_file.txt
10+
11+
712
##Requirements
813
T.B.D
914

0 commit comments

Comments
 (0)