-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7420f40
commit adff901
Showing
1 changed file
with
172 additions
and
0 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,172 @@ | ||
1D_branches: | ||
data_type: GeoDataFrame | ||
driver: vector | ||
path: local_data/1D_rivers.geojson | ||
crs: 32647 | ||
rename: | ||
BRANCH_ID: branchid | ||
BR_TYPE: branchtype | ||
1D_rivers_xyzcrosssections: | ||
data_type: GeoDataFrame | ||
driver: vector | ||
path: local_data/1D_rivers_xyzcrosssections.geojson | ||
crs: 32647 | ||
rename: | ||
ORDER: order | ||
CRS_ID: crsid | ||
Z: z | ||
1D_rivers_pointcrosssections: | ||
data_type: GeoDataFrame | ||
driver: vector | ||
path: local_data/1D_rivers_pointcrosssections.geojson | ||
crs: 32647 | ||
rename: | ||
id: crsid | ||
TYPE: shape | ||
WIDTH: width | ||
HEIGHT: height | ||
BEDLEVEL: shift | ||
1d_manholes: | ||
data_type: GeoDataFrame | ||
driver: vector | ||
path: local_data/manholes.geojson | ||
crs: 32647 | ||
rename: | ||
ID: manholeid | ||
AREA: area | ||
STR_AREA: streetArea | ||
1d_bridges: | ||
data_type: GeoDataFrame | ||
driver: vector | ||
path: local_data/bridges.geojson | ||
crs: 32647 | ||
rename: | ||
STRUC_ID: structure_id | ||
STRUC_TYPE: structure_type | ||
SHAPE: shape | ||
WIDTH: width | ||
HEIGHT: height | ||
CLOSED: closed | ||
BEDLEV: shift | ||
LENGTH: length | ||
FLOW_DIR: allowedflowdir | ||
IN_LOSS: inletlosscoeff | ||
OUT_LOSS: outletlosscoeff | ||
1d_culverts: | ||
data_type: GeoDataFrame | ||
driver: vector | ||
path: local_data/culverts.geojson | ||
crs: 32647 | ||
rename: | ||
STRUC_ID: structure_id | ||
STRUC_TYPE: structure_type | ||
SHAPE: shape | ||
WIDTH: width | ||
HEIGHT: height | ||
CLOSED: closed | ||
INVLEV_UP: leftlevel | ||
INVLEV_DN: rightlevel | ||
FLOW_DIR: allowedflowdir | ||
1D_boundaries: | ||
data_type: GeoDataFrame | ||
driver: vector | ||
path: local_data/boundaries.geojson | ||
crs: 32647 | ||
1D_boundaries_timeseries: | ||
path: local_data/boundaries.geojson | ||
data_type: GeoDataset | ||
driver: vector | ||
crs: 32647 | ||
kwargs: | ||
fn_data: local_data/boundaries_series.csv | ||
1D_laterals_points: | ||
data_type: GeoDataFrame | ||
driver: vector | ||
path: local_data/laterals_points.geojson | ||
crs: 32647 | ||
1D_laterals_timeseries: | ||
path: local_data/laterals_points.geojson | ||
data_type: GeoDataset | ||
driver: vector | ||
crs: 32647 | ||
rename: | ||
1D_laterals_timeseries: lateral_discharge | ||
kwargs: | ||
fn_data: local_data/laterals_series.csv | ||
1D_laterals_polygons: | ||
data_type: GeoDataFrame | ||
driver: vector | ||
path: local_data/laterals_polygons.geojson | ||
crs: 32647 | ||
1D_laterals_polygons_timeseries: | ||
path: local_data/laterals_polygons.geojson | ||
data_type: GeoDataset | ||
driver: vector | ||
crs: 32647 | ||
rename: | ||
1D_laterals_polygons_timeseries: lateral_discharge | ||
kwargs: | ||
fn_data: local_data/laterals_series.csv | ||
assert_gtype: Polygon | ||
roads: | ||
path: local_data/roads.tiff | ||
data_type: RasterDataset | ||
crs: 32647 | ||
rename: | ||
roads: steps | ||
2D_boundary: | ||
data_type: GeoDataFrame | ||
driver: vector | ||
path: local_data/2d_boundary.geojson | ||
crs: 32647 | ||
meta: | ||
notes: created by buffer the extent by aqrt(2) * res. Must contain boundary_id if timeseries is specified | ||
2D_boundary_timeseries: | ||
data_type: DataFrame | ||
driver: csv | ||
path: local_data/2dboundaries_series.csv | ||
kwargs: | ||
index_col: time | ||
parse_dates: true | ||
dayfirst: true | ||
meta: | ||
notes: time series data for the 2D boundary, must contain time as index and boundary_id as columns | ||
meteo_timeseries_T2: | ||
path: local_data/rainfall_series.csv | ||
data_type: DataFrame | ||
driver: csv | ||
rename: | ||
T2_mm/day: precip | ||
kwargs: | ||
index_col: 0 | ||
parse_dates: True | ||
meta: | ||
unit: mm day-1 | ||
meteo_timeseries_T5: | ||
path: local_data/rainfall_series.csv | ||
data_type: DataFrame | ||
driver: csv | ||
rename: | ||
T5_mm/day: precip | ||
kwargs: | ||
index_col: 0 | ||
parse_dates: True | ||
meta: | ||
unit: mm day-1 | ||
dem: | ||
path: local_data/dem.tif | ||
data_type: RasterDataset | ||
crs: 4326 | ||
rename: | ||
dem: elevtn | ||
meta: | ||
category: dem | ||
history: temporary dem within model extent | ||
roughness_manning: | ||
path: local_data/frictioncoefficient.tif | ||
data_type: RasterDataset | ||
crs: 32647 | ||
rename: | ||
frictioncoefficient: roughness_manning | ||
meta: | ||
category: roughness_manning |