Skip to content

Commit

Permalink
Merged working (non-object) code into master!
Browse files Browse the repository at this point in the history
  • Loading branch information
gutmann committed Jul 11, 2016
2 parents e8afe07 + da1f978 commit ce3ace7
Show file tree
Hide file tree
Showing 39 changed files with 5,737 additions and 766 deletions.
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
*.dSYM
*.dll

# Debug Symbols
*.dSYM

# Fortran module files
*.mod

Expand All @@ -27,6 +30,9 @@
*.exe
*.out
*.app
test_sort
test_regression
test_calendar
test_master_file
test_qm
test_config
downscale
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ addons:
packages:
- gfortran
- libnetcdf-dev
- liblapack-dev
script:
- sed -i "s|NCDF_PATH = /usr/local|NCDF_PATH = /usr|" makefile
- make test -j4
- make -j4
- sed -i "s|NCDF_PATH = /usr/local|NCDF_PATH = /usr|" src/makefile
- sed -i "s|LAPACK_PATH = /usr/local|LAPACK_PATH = /usr|" src/makefile
- make -C src -j4 test
- make -C src -j4
5 changes: 5 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ This code is designed to provide a simple statistical downscaling method relying
regressions and statistical transformations from various inputs (e.g. precipitation,
humidity, wind, PCA, etc.) to various outputs (e.g. precipitation, temperature, etc.)

##Useful commands
Use the following to generate a list of e.g. GEFS precipitation files for input.
ls -1 gefs/2010/*/apcp_sfc_*_mean.nc | sed 's/*//g;s/$/"/g;s/^/"/g'>gefs_pr_file.txt


##Requirements
T.B.D

Expand Down
Loading

0 comments on commit ce3ace7

Please sign in to comment.