-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run engineering script, add dependencies
- Loading branch information
Showing
9 changed files
with
67 additions
and
52 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 |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
*.DS_Store | ||
*.dbf | ||
*.shp | ||
*.txt | ||
|
||
# Files generated by invoking Julia with --code-coverage | ||
*.jl.cov | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
using Rivers | ||
using ClimaRivers | ||
using Dates | ||
using TOML | ||
|
||
|
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 |
---|---|---|
@@ -1,5 +1,44 @@ | ||
module ClimaRivers | ||
|
||
greet() = print("Hello World!") | ||
export grid_points_to_basins, compute_basins_timeseries, merge_and_shift_grdc_files, | ||
gauges_to_basins, caravan_to_basins, create_graph, merge_era5_grdc, attribute_attributes, | ||
select_uniques, extract_basin_lists, write_routing_levels, write_routing_timeseries, | ||
write_routing_attributes | ||
|
||
end # module ClimaRivers | ||
export standard_longitudes! # used for plotting in the monte carlo example | ||
|
||
|
||
# engineering | ||
include("engineering/geo_utils.jl") | ||
|
||
include("engineering/grid_points_to_basins.jl") | ||
|
||
include("engineering/compute_basins_timeseries.jl") | ||
|
||
include("engineering/merge_and_shift_grdc_files.jl") | ||
|
||
include("engineering/gauges_to_basins.jl") | ||
|
||
include("engineering/caravan_to_basins.jl") | ||
|
||
include("engineering/create_graph.jl") | ||
|
||
include("engineering/merge_era5_grdc_single.jl") | ||
|
||
include("engineering/merge_era5_grdc_graph.jl") | ||
|
||
include("engineering/attribute_attributes_single.jl") | ||
|
||
include("engineering/attribute_attributes_graph.jl") | ||
|
||
include("engineering/select_uniques.jl") | ||
|
||
include("engineering/extract_basins.jl") | ||
|
||
include("engineering/write_routing_levels.jl") | ||
|
||
include("engineering/write_routing_timeseries.jl") | ||
|
||
include("engineering/write_routing_attributes.jl") | ||
|
||
end # Rivers module |
This file was deleted.
Oops, something went wrong.