-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into master
- Loading branch information
Showing
157 changed files
with
1,559,908 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dem.nc filter=lfs diff=lfs merge=lfs -text | ||
dem.npy filter=lfs diff=lfs merge=lfs -text | ||
dem.wgs filter=lfs diff=lfs merge=lfs -text | ||
dem.kdt filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!python | ||
|
||
import os | ||
import sys | ||
|
||
current_dir = os.path.dirname(os.path.abspath(__file__)) | ||
src_dir = os.path.normpath(os.path.join(current_dir, '../src/')) | ||
if os.path.exists(src_dir): | ||
sys.path.append(src_dir) | ||
|
||
from lisfloodutilities.cddmap.cddmap import main | ||
|
||
if __name__ == '__main__': | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!python | ||
|
||
import os | ||
import sys | ||
|
||
current_dir = os.path.dirname(os.path.abspath(__file__)) | ||
src_dir = os.path.normpath(os.path.join(current_dir, '../src/')) | ||
if os.path.exists(src_dir): | ||
sys.path.append(src_dir) | ||
|
||
from lisfloodutilities.gridding.generate_grids import main_script | ||
|
||
if __name__ == '__main__': | ||
main_script() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!python | ||
|
||
import os | ||
import sys | ||
|
||
current_dir = os.path.dirname(os.path.abspath(__file__)) | ||
src_dir = os.path.normpath(os.path.join(current_dir, '../src/')) | ||
if os.path.exists(src_dir): | ||
sys.path.append(src_dir) | ||
|
||
from lisfloodutilities.ncextract import main_script | ||
|
||
if __name__ == '__main__': | ||
main_script() |
Oops, something went wrong.