HmsUtils¶
Utility functions for HMS Commander.
hms_commander.HmsUtils
¶
HmsUtils - Utility Functions for HEC-HMS Operations
This module provides utility functions for common HEC-HMS operations including file management, unit conversions, and data validation.
All methods are static and designed to be used without instantiation.
HmsUtils
¶
Utility functions for HEC-HMS operations.
Provides helper methods for file operations, unit conversions, time interval handling, and data validation.
All methods are static - no instantiation required.
Example
from hms_commander import HmsUtils interval_min = HmsUtils.parse_time_interval("15 Minutes") print(interval_min) # 15
Source code in hms_commander/HmsUtils.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 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 | |
parse_time_interval(interval_str)
staticmethod
¶
Parse HMS time interval string to minutes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
interval_str
|
str
|
Time interval string (e.g., "15 Minutes", "1 Hour") |
required |
Returns:
| Type | Description |
|---|---|
int
|
Interval in minutes |
Example
HmsUtils.parse_time_interval("15 Minutes") 15 HmsUtils.parse_time_interval("1 Hour") 60
Source code in hms_commander/HmsUtils.py
minutes_to_interval_string(minutes)
staticmethod
¶
Convert minutes to HMS interval string.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
minutes
|
int
|
Number of minutes |
required |
Returns:
| Type | Description |
|---|---|
str
|
HMS interval string |
Example
HmsUtils.minutes_to_interval_string(15) '15 Minutes' HmsUtils.minutes_to_interval_string(60) '1 Hour'
Source code in hms_commander/HmsUtils.py
convert_units(value, from_unit, to_unit)
staticmethod
¶
Convert between common hydrologic units.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
float
|
Value to convert |
required |
from_unit
|
str
|
Source unit |
required |
to_unit
|
str
|
Target unit |
required |
Returns:
| Type | Description |
|---|---|
float
|
Converted value |
Example
HmsUtils.convert_units(1.0, "in", "mm") 25.4 HmsUtils.convert_units(100, "cfs", "cms") 2.83...
Source code in hms_commander/HmsUtils.py
parse_hms_date(date_str, time_str='00:00')
staticmethod
¶
Parse HMS date/time strings to datetime.
Handles multiple HMS date formats: - "16 January 1973" (full month, spaces) - "16 Jan 1973" (abbreviated month, spaces) - "16Jan1973" (compact, no spaces)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
date_str
|
str
|
Date string in any HMS format |
required |
time_str
|
str
|
Time string (e.g., "00:00") |
'00:00'
|
Returns:
| Type | Description |
|---|---|
datetime
|
datetime object |
Example
dt = HmsUtils.parse_hms_date("15 March 2020", "12:30") print(dt) 2020-03-15 12:30:00
Source code in hms_commander/HmsUtils.py
format_hms_date(dt)
staticmethod
¶
Format datetime to HMS date/time strings.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dt
|
datetime
|
datetime object |
required |
Returns:
| Type | Description |
|---|---|
Tuple[str, str]
|
Tuple of (date_str, time_str) |
Example
dt = datetime(2020, 3, 15, 12, 30) date_str, time_str = HmsUtils.format_hms_date(dt) print(date_str, time_str) 15Mar2020 12:30
Source code in hms_commander/HmsUtils.py
copy_project(source_folder, dest_folder, overwrite=False)
staticmethod
¶
Copy an HMS project to a new location.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source_folder
|
Union[str, Path]
|
Source project folder |
required |
dest_folder
|
Union[str, Path]
|
Destination folder |
required |
overwrite
|
bool
|
Whether to overwrite existing destination |
False
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to the copied project |
Source code in hms_commander/HmsUtils.py
list_project_files(project_folder)
staticmethod
¶
List all HMS files in a project folder by type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
project_folder
|
Union[str, Path]
|
Path to the project folder |
required |
Returns:
| Type | Description |
|---|---|
Dict[str, List[Path]]
|
Dictionary mapping file type to list of file paths |
Example
files = HmsUtils.list_project_files("MyProject") print(files['basin']) # List of .basin files
Source code in hms_commander/HmsUtils.py
clean_project_outputs(project_folder, delete_dss=True, delete_logs=True)
staticmethod
¶
Clean output files from a project folder.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
project_folder
|
Union[str, Path]
|
Path to the project folder |
required |
delete_dss
|
bool
|
Whether to delete DSS files |
True
|
delete_logs
|
bool
|
Whether to delete log files |
True
|
Returns:
| Type | Description |
|---|---|
int
|
Number of files deleted |
Source code in hms_commander/HmsUtils.py
validate_project(project_folder)
staticmethod
¶
Validate an HMS project folder.
Checks for required files and common issues.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
project_folder
|
Union[str, Path]
|
Path to the project folder |
required |
Returns:
| Type | Description |
|---|---|
Dict[str, Any]
|
Dictionary with validation results |
Example
result = HmsUtils.validate_project("MyProject") if result['valid']: ... print("Project is valid")
Source code in hms_commander/HmsUtils.py
get_project_summary(project_folder)
staticmethod
¶
Get a text summary of a project.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
project_folder
|
Union[str, Path]
|
Path to the project folder |
required |
Returns:
| Type | Description |
|---|---|
str
|
Formatted summary string |
Source code in hms_commander/HmsUtils.py
calculate_cn_from_ia(initial_abstraction, method='standard')
staticmethod
¶
Calculate SCS Curve Number from Initial Abstraction.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
initial_abstraction
|
float
|
Initial abstraction in inches |
required |
method
|
str
|
Calculation method ("standard" uses Ia = 0.2*S) |
'standard'
|
Returns:
| Type | Description |
|---|---|
float
|
Curve Number (0-100) |
Example
cn = HmsUtils.calculate_cn_from_ia(1.0) print(f"CN = {cn:.1f}")
Source code in hms_commander/HmsUtils.py
calculate_ia_from_cn(curve_number, method='standard')
staticmethod
¶
Calculate Initial Abstraction from SCS Curve Number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
curve_number
|
float
|
SCS Curve Number (0-100) |
required |
method
|
str
|
Calculation method ("standard" uses Ia = 0.2*S) |
'standard'
|
Returns:
| Type | Description |
|---|---|
float
|
Initial Abstraction in inches |
Example
ia = HmsUtils.calculate_ia_from_cn(75) print(f"Ia = {ia:.2f} inches")
Source code in hms_commander/HmsUtils.py
clone_file(template_path, new_path, modify_func=None)
staticmethod
¶
Clone a file with optional modification via callback function.
This is the core clone utility used by all HMS clone operations (clone_run, clone_basin, clone_met). It follows the ras-commander pattern of reading, modifying via callback, and writing.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template_path
|
Union[str, Path]
|
Path to template file |
required |
new_path
|
Union[str, Path]
|
Path for new file |
required |
modify_func
|
Optional[Any]
|
Optional callback function(lines: List[str]) -> List[str] that modifies file content |
None
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to the cloned file |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If template doesn't exist |
FileExistsError
|
If new_path already exists |
Example
def update_name(lines): ... return [line.replace("Old", "New") for line in lines] HmsUtils.clone_file("old.basin", "new.basin", update_name)
Note
This implements the CLB Engineering LLM Forward Approach: - Non-destructive (creates new file, preserves original) - Traceable (clear source → destination relationship) - Modifiable (callback allows precise updates)
Source code in hms_commander/HmsUtils.py
update_project_file(hms_file, entry_type, entry_name)
staticmethod
¶
Update HMS project file to register a new component.
When cloning basins, mets, controls, or runs, the .hms project file must be updated to register the new component. This follows the ras-commander pattern of updating the project file after creating new model components.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
hms_file
|
Union[str, Path]
|
Path to the .hms project file |
required |
entry_type
|
str
|
Type of entry ('Basin', 'Met', 'Control', 'Run', etc.) |
required |
entry_name
|
str
|
Name of the new component (filename without extension) |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if successful |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If hms_file doesn't exist |
Example
HmsUtils.update_project_file( ... "MyProject.hms", ... "Basin", ... "Updated_Atlas14" ... )
Note
Basin, Met/Meteorology, and Control entries are written as real HMS registry blocks for new registrations. Existing legacy flat entries such as "Basin File:" and "Met File:" are treated as already registered to avoid duplicates. Other entry types keep the historical flat-line fallback for compatibility.