Catchment#
Routing methods#
Catchment accepts exactly three routing methods, matched case-insensitively and stored in one
spelling:
| Written as | Stored as | Routes |
|---|---|---|
muskingum |
Muskingum |
Cell to cell along the flow-direction network. |
maxbas |
MAXBAS |
Every cell straight to the outlet through a triangular function. |
kinematic |
Kinematic |
The flood model's own path (Run.run_flood). |
Calibration does not take one at all: it holds a Catchment, and reads the method off the model
it was given.
Anything else raises a ValueError naming the three. Before this check the constructor stored
whatever string it was handed, so a run configured as "Max_bas" — or as a descriptive label such
as "Muskingum-Cunge" — was accepted and then silently routed with Muskingum, because the routing
loop compared against "Muskingum" exactly. That comparison is gone: which router runs is decided
by the entry point you call, and the stored method is read by Run.run_flood, which derives
skip_hydraulic_cells from "Kinematic", and by the cross-check against parameters.maxbas. One
spelling is what keeps both honest; a script passing a spelling outside the table has to be updated
to one of the three.
A YAML run configuration reaches only the first two: kinematic selects the flood model, which
hapi.config does not describe.
Catchment#
hapi.catchment.Catchment
#
Catchment for reading meteorological/spatial inputs and running the model.
The Catchment class includes methods to read the meteorological and
spatial inputs of the distributed hydrological model. It also reads the
data of the gauges. Build the catchment, then hand it to whichever
:class:hapi.run.Run entry point suits it -- Run.run_distributed(model). Run states what it
needs as a protocol, which this class satisfies structurally; neither class inherits
from the other.
A run assigns its output to :attr:results, and that is the only place the arrays
live: read them as model.results.q_total, model.results.quz and so on. This class
carries no result attributes of its own and no forwarding properties.
Source code in src/hapi/catchment.py
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 | |
__init__(name: str, start_data: str, end: str, fmt: str = '%Y-%m-%d', spatial_resolution: str = 'Lumped', temporal_resolution: str = 'Daily', routing_method: str = 'Muskingum')
#
Initialize a Catchment instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the Catchment. |
required |
start_data
|
str
|
Starting date. |
required |
end
|
str
|
End date. |
required |
fmt
|
str
|
Format of the given date. Default is "%Y-%m-%d". |
'%Y-%m-%d'
|
spatial_resolution
|
str
|
"Lumped" or "Distributed". Default is "Lumped". |
'Lumped'
|
temporal_resolution
|
str
|
"Hourly" or "Daily". Default is "Daily". |
'Daily'
|
routing_method
|
str
|
"Muskingum", "MAXBAS" or "Kinematic", matched case-insensitively and stored canonicalised. Default is "Muskingum". |
'Muskingum'
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
ValueError
|
If |
ValueError
|
If |
ValueError
|
If |
Source code in src/hapi/catchment.py
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | |
extract_discharge(calculate_metrics=True, factor=None)
#
Extract and sum discharge at gauge locations.
Which hydrograph is the right one depends on how the run was routed, and the results
say so, so nothing has to be passed in. Under Muskingum the discharge accumulates
downstream, so each gauge is read from its own cell of q_total. Under MAXBAS every
cell is routed straight to the outlet, making a cell that cell's contribution; the
hydrograph is then the basin-wide sum the run already computed into qout.
This used to be a frame_work_1 flag the caller had to set to match the entry point
they had called, with a ValueError when they got it wrong. The routing is a
property of the arrays, so it is read off them instead.
Optionally computes performance metrics (RMSE, NSE, NSEhf, KGE, WB, Pearson-CC, R2) between the simulated and observed hydrographs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
calculate_metrics
|
bool
|
Whether to calculate performance metrics. Default is True. |
True
|
factor
|
list
|
List of multiplication factors for simulated discharge at each gauge. Must have the same length as the number of gauges. Applied only on the per-gauge (Muskingum) path. Default is None. |
None
|
Raises:
| Type | Description |
|---|---|
ValueError
|
The gauge table has not been read, the model has not been run, the
results it produced have not been routed, or -- on a MAXBAS run -- they
carry no |
Source code in src/hapi/catchment.py
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 | |
from_yaml(path: str | Path) -> Self
classmethod
#
Read a YAML run configuration and assemble a model from it.
The alternate constructor for the build-then-mutate pattern this class documents: it
constructs the model, assigns meteo and (distributed only) flow_network, then makes
the read_* calls in the order they depend on each other -- the sequence a hand-written
script's block of path assignments used to drive by hand.
hapi.config only parses and validates; every assignment onto the model happens here.
Running the model stays the caller's job, through whichever Run.* entry point suits
routing_method and spatial_resolution.
Neither Run nor Calibration is a catchment any more, so there is no subclass for
this to build: Run is a namespace of entry points, and Calibration takes the model
it calibrates -- Calibration(Catchment.from_yaml(path)).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
Path to the YAML file, as a string or a |
required |
Returns:
| Type | Description |
|---|---|
Self
|
The model, with every input read, parsed and assigned. |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
No file at |
YAMLError
|
The file is not valid YAML. |
ValidationError
|
The file is missing a required field, carries an unknown
one, or breaks one of the cross-field rules in :class: |
ValueError
|
The file is empty, or |
Examples:
The configurations below ship with the Hapi repository, so these run from a checkout rather than an installed wheel; point at your own file to try them elsewhere.
- Build a lumped model and inspect what the configuration gave it:
>>> from hapi.catchment import Catchment >>> model = Catchment.from_yaml( ... "examples/hydrological-model/coello/run/coello-lumped-model-run.yaml" ... ) >>> model.name 'Coello' >>> model.spatial_resolution 'lumped' >>> len(model.period.date_index) 1095 - Build a distributed model, whose drivers and routing network come from the
meteoandflow_networkblocks:>>> from hapi.catchment import Catchment >>> model = Catchment.from_yaml( ... "examples/hydrological-model/coello/run/" ... "coello-distributed-model-run-netcdf.yaml" ... ) >>> model.meteo.shape (13, 14, 10) >>> model.flow_network.rows, model.flow_network.cols (13, 14) >>> model.routing_method 'Muskingum'
Source code in src/hapi/catchment.py
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 | |
plot_hydrograph(start_date: str | dt.datetime, end_date: str | dt.datetime, gauge: int, hapi_color: tuple | str = '#004c99', gauge_color: tuple | str = '#DC143C', line_width: int = 3, hapi_order: int = 1, gauge_order: int = 0, label_font_size: int = 10, x_major_fmt: str | dates.DateFormatter = '%Y-%m-%d', n_ticks: int = 5, title: str = '', x_axis_fmt: str = '%d\n%m', label: str = '', fmt: str = '%Y-%m-%d')
#
Plot simulated and observed hydrographs for a given gauge.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
start_date
|
str | datetime
|
Starting date for the plot. A
string is parsed with |
required |
end_date
|
str | datetime
|
End date for the plot. See
|
required |
gauge
|
int
|
Index of the gauge in the GaugesTable. |
required |
hapi_color
|
tuple | str
|
Color of the simulated hydrograph. Default is "#004c99". |
'#004c99'
|
gauge_color
|
tuple | str
|
Color of the observed gauge hydrograph. Default is "#DC143C". |
'#DC143C'
|
line_width
|
int
|
Line width for the hydrographs. Default is 3. |
3
|
hapi_order
|
int
|
Z-order of the simulated hydrograph to control layering. Default is 1. |
1
|
gauge_order
|
int
|
Z-order of the observed hydrograph to control layering. Default is 0. |
0
|
label_font_size
|
int
|
Font size for axis tick labels. Default is 10. |
10
|
x_major_fmt
|
str
|
Format for x-axis major tick labels. Default is "%Y-%m-%d". |
'%Y-%m-%d'
|
n_ticks
|
int
|
Maximum number of x-axis ticks. Default is 5. |
5
|
title
|
str
|
Title of the plot. Default is "". |
''
|
x_axis_fmt
|
str
|
Format for x-axis minor tick labels. Default is "%d\n%m". |
'%d\n%m'
|
label
|
str
|
Label for the simulated hydrograph in the legend. Default is "". |
''
|
fmt
|
str
|
Date format for parsing
|
'%Y-%m-%d'
|
Returns:
| Type | Description |
|---|---|
tuple
|
A tuple of (fig, ax) where fig is the matplotlib Figure and ax is the matplotlib Axes object. |
Source code in src/hapi/catchment.py
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 | |
read_discharge_gauges(path: str, delimiter: str = ',', column: str = 'id', fmt: str = '%Y-%m-%d', split: bool = False, start_date: str | dt.datetime = '', end_date: str | dt.datetime = '', readfrom: str = '')
#
Read gauge discharge data from CSV files.
For distributed mode, each gauge's discharge must be stored in a
separate CSV file. File names must match the "id" column in the
gauge table (read via read_gauge_table). For lumped mode, a
single CSV file with the discharge data is expected.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Path to the gauge discharge data directory (distributed) or file (lumped). |
required |
delimiter
|
str
|
Delimiter between the date and the discharge column. Default is ",". |
','
|
column
|
str
|
Gauge-table column naming the columns of the
resulting |
'id'
|
fmt
|
str
|
Date format in the discharge files. Default is "%Y-%m-%d". |
'%Y-%m-%d'
|
split
|
bool
|
True to subset the data between
|
False
|
start_date
|
str | datetime
|
Start date for
subsetting. A string is parsed with |
''
|
end_date
|
str | datetime
|
End date for
subsetting. See |
''
|
readfrom
|
str
|
Number of rows to skip when reading the CSV. Default is "". |
''
|
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If the discharge file does not exist (lumped mode). |
ValueError
|
If the gauge table has not been read yet (distributed mode). |
Source code in src/hapi/catchment.py
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 | |
read_flow_path_length(path: str)
#
Read the flow path length raster.
Reads the flow path length raster into flow_path_length_arr. The grid it sits
on belongs to :class:~hapi.inputs.FlowNetwork, so this reader no longer derives
rows, columns, the no-data value or the domain count from a second raster.
No-data handling is delegated to pyramids via read_array(masked=True), so
cells outside the catchment become NaN. The array is promoted to floating point so masked cells can
hold NaN.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
Path to the flow path length raster. Any raster format GDAL can open is accepted, not only GeoTIFF. |
required |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
The path does not exist. |
TypeError
|
|
RuntimeError
|
GDAL cannot open the file as a raster. |
Examples:
- Read a small path-length raster; the one no-data cell is excluded from the
domain count:
>>> import numpy as np, os, tempfile >>> from pyramids.dataset import Dataset >>> from hapi.catchment import Catchment >>> path = os.path.join(tempfile.mkdtemp(), "fpl.tif") >>> Dataset.create_from_array( ... np.array([[10, 20], [30, -9999]], dtype="int32"), ... top_left_corner=(0.0, 8000.0), cell_size=4000.0, epsg=32618, ... no_data_value=-9999, path=path, ... ).close() >>> model = Catchment("example", "2000-01-01", "2000-01-02", ... spatial_resolution="Distributed") >>> model.read_flow_path_length(path) >>> int(np.count_nonzero(~np.isnan(model.flow_path_length_arr))) 3 >>> float(model.flow_path_length_arr[0, 1]) 20.0 - A real length within 0.1% of the sentinel is kept, so every cell counts:
>>> import numpy as np, os, tempfile >>> from pyramids.dataset import Dataset >>> from hapi.catchment import Catchment >>> path = os.path.join(tempfile.mkdtemp(), "fpl_near.tif") >>> Dataset.create_from_array( ... np.array([[10, 20], [30, -9990]], dtype="int32"), ... top_left_corner=(0.0, 8000.0), cell_size=4000.0, epsg=32618, ... no_data_value=-9999, path=path, ... ).close() >>> model = Catchment("example", "2000-01-01", "2000-01-02", ... spatial_resolution="Distributed") >>> model.read_flow_path_length(path) >>> int(np.count_nonzero(~np.isnan(model.flow_path_length_arr))) 4
See Also
hapi.inputs.FlowNetwork: Holds the matching flow-accumulation raster and the grid.
Source code in src/hapi/catchment.py
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 | |
read_gauge_table(path: str, flow_acc_file: str = '', fmt: str = '%Y-%m-%d')
#
Read the gauge table listing gauge locations and properties.
Reads gauge data including coordinates (x, y), area ratio, and weight. The coordinates are mandatory to locate the gauges and extract discharge at the corresponding cells.
The result lands on :attr:GaugesTable, and its type follows the input format:
.geojsonis read with :meth:pyramids.feature.FeatureCollection.read_file, giving a :class:~pyramids.feature.FeatureCollection— aGeoDataFramesubclass, so it keeps its geometry column and CRS.- anything else is read with :func:
pandas.read_csv, giving a plain :class:~pandas.DataFramewith no geometry.
When flow_acc_file is given and the table has no cell_row column, each
gauge is mapped onto the raster grid and cell_row / cell_col columns are
appended.
start and end columns, if present, are parsed with fmt into
datetime64 columns. The two are handled independently, so a table carrying
only one of them is fine.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Path to the gauge file (CSV or GeoJSON). |
required |
flow_acc_file
|
str
|
Path to the flow accumulation raster used to map gauge coordinates to array indices. Default is "". |
''
|
fmt
|
str
|
Date format for start/end columns in the gauge table. Default is "%Y-%m-%d". |
'%Y-%m-%d'
|
Raises:
| Type | Description |
|---|---|
ValueError
|
A |
Examples:
- Read a GeoJSON gauge file and inspect the loaded stations:
>>> import os, tempfile >>> from pyramids.feature import FeatureCollection >>> from shapely.geometry import Point >>> from hapi.catchment import Catchment >>> path = os.path.join(tempfile.mkdtemp(), "gauges.geojson") >>> FeatureCollection( ... {"id": [1, 2], "name": ["Station 1", "Station 2"]}, ... geometry=[Point(454795.7, 503143.3), Point(443847.6, 481850.7)], ... crs="EPSG:32618", ... ).to_file(path, driver="GeoJSON") >>> model = Catchment("coello", "2009-01-01", "2009-01-10", ... spatial_resolution="Distributed") >>> model.read_gauge_table(path) >>> model.GaugesTable["name"].tolist() ['Station 1', 'Station 2'] >>> model.GaugesTable.crs.to_epsg() 32618 - A CSV gauge table loads as a plain frame with no geometry:
>>> import os, tempfile >>> import pandas as pd >>> from hapi.catchment import Catchment >>> path = os.path.join(tempfile.mkdtemp(), "gauges.csv") >>> pd.DataFrame({"id": [1], "name": ["Station 1"]}).to_csv(path, index=False) >>> model = Catchment("coello", "2009-01-01", "2009-01-10", ... spatial_resolution="Distributed") >>> model.read_gauge_table(path) >>> model.GaugesTable["id"].tolist() [1] >>> hasattr(model.GaugesTable, "crs") False - A validity period is parsed into datetime columns using
fmt:>>> import os, tempfile >>> import pandas as pd >>> from hapi.catchment import Catchment >>> path = os.path.join(tempfile.mkdtemp(), "gauges.csv") >>> pd.DataFrame( ... {"id": [1], "start": ["03/04/2009"], "end": ["05/06/2011"]} ... ).to_csv(path, index=False) >>> model = Catchment("coello", "2009-01-01", "2009-01-10", ... spatial_resolution="Distributed") >>> model.read_gauge_table(path, fmt="%d/%m/%Y") >>> model.GaugesTable.loc[0, "start"].strftime("%d %B %Y") '03 April 2009'
See Also
Catchment.read_discharge_gauges: Read the observed discharge series per gauge.
Source code in src/hapi/catchment.py
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 | |
read_lumped_inputs(path: str)
#
Read meteorological inputs for lumped mode.
The lumped counterpart of :class:~hapi.inputs.MeteoInputs, which carries the
distributed drivers: the lumped model works on one column per variable rather than a
grid, and Wrapper.run_lumped reads the long-term average straight out of the fourth
column.
A three-column file is completed with a fourth holding the record's mean temperature.
Wrapper.run_lumped reads that column unconditionally, so without it a file this method
accepts raises IndexError in the middle of the run instead.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Path to the input CSV file. Data columns must be in the order [date, precipitation, ET, Temp], optionally followed by the long-term average temperature. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the input data does not have 3 or 4 columns (excluding the date index). |
Source code in src/hapi/catchment.py
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 | |
read_lumped_model(lumped_model: type[BaseConceptualModel], catchment_area: float | int, initial_condition: list, q_init=None)
#
Read and set up a lumped conceptual model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
lumped_model
|
type[BaseConceptualModel]
|
A |
required |
catchment_area
|
float | int
|
Catchment area in km2. |
required |
initial_condition
|
list
|
List of 5 initial condition values: [SnowPack, SoilMoisture, Upper Zone, Lower Zone, Water Content]. |
required |
q_init
|
float
|
Initial discharge. Default is None. |
None
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
ValueError
|
If |
Source code in src/hapi/catchment.py
684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 | |
read_parameters(path: str, snow: bool = False, maxbas: bool = False)
#
Read model parameter rasters or a CSV parameter file.
For distributed mode, reads parameter rasters from a folder. For lumped mode, reads parameters from a CSV file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Path to the folder containing parameter rasters (distributed mode) or to a CSV file (lumped mode). |
required |
snow
|
bool
|
Whether to simulate snow processes. If True, snow-related parameters must be provided. Default is False. |
False
|
maxbas
|
bool
|
True if the routing method is Maxbas. Default is False. |
False
|
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If the path does not exist. |
ValueError
|
If |
Source code in src/hapi/catchment.py
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 | |
read_river_geometry(dem_file: str, bankfull_depth_file: str, river_width_file: str, river_roughness_file: str, floodplain_roughness_file: str)
#
Read river geometry rasters for hydraulic routing.
Reads the DEM, bankfull depth, river width, river roughness, and floodplain roughness rasters required for hydraulic routing computations.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dem_file
|
str
|
Path to the DEM raster file. |
required |
bankfull_depth_file
|
str
|
Path to the bankfull depth raster file. |
required |
river_width_file
|
str
|
Path to the river width raster file. |
required |
river_roughness_file
|
str
|
Path to the river roughness raster file. |
required |
floodplain_roughness_file
|
str
|
Path to the floodplain roughness raster file. |
required |
Source code in src/hapi/catchment.py
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 | |