HDF Output Options Read Benchmark¶
Use the BaldEagleCrkMulti2D example project and plan 06 to compare HDF write settings by measuring ras-commander HDF read performance after the plans have been computed.
The compute phase only populates the HDF files. The benchmark phase measures calls into HdfMesh and HdfResultsMesh, including mesh geometry reads, summary-output reads, and full time-series reads.
Workflow¶
- Extract a working copy of
BaldEagleCrkMult2D. - Clone template plan
06once for each HDF settings permutation. - Apply each HDF output profile or explicit option set to its clone.
- Compute missing clone results if requested.
- Benchmark HDF reads from the populated
.p##.hdffiles.
For storage topology testing, copy or extract the same working project to HDD, SSD, and NAS-backed folders, then rerun the benchmark cells against each folder.
Python
from pathlib import Path
from time import perf_counter
import gc
import json
import h5py
import pandas as pd
from ras_commander import (
init_ras_project,
RasCmdr,
RasExamples,
RasPlan,
HdfMesh,
HdfResultsMesh,
)
Python
PROJECT_NAME = "BaldEagleCrkMulti2D"
TEMPLATE_PLAN = "06"
RAS_VERSION = "7.0"
WORKING_ROOT = Path.cwd() / "working" / "hdf_output_options_benchmark"
PROJECT_FOLDER = WORKING_ROOT / PROJECT_NAME
# Set True to delete and re-extract the working example project.
RESET_EXTRACTED_PROJECT = False
# Set True once to compute missing clone HDFs. Leave False when only re-running read benchmarks.
COMPUTE_MISSING_RESULTS = True
FORCE_RECOMPUTE = False
NUM_CORES = 4
# Extraction timing controls. The first repetition is usually affected by OS cache state.
READ_REPETITIONS = 3
# Keep this empty for pure HDF write-parameter tests. Add variables only when benchmarking extra outputs.
DEFAULT_ADDITIONAL_OUTPUT_VARIABLES = []
# Example:
# DEFAULT_ADDITIONAL_OUTPUT_VARIABLES = ["Face Flow", "Face Shear Stress", "Cell Velocity"]
Python
PERMUTATIONS = [
{
"label": "baseline_p06_clone",
"shortid": "HDF_base",
"title": "HDF bench baseline",
"profile": None,
"options": {},
"additional_variables": [],
},
{
"label": "speed_profile",
"shortid": "HDF_speed",
"title": "HDF bench speed",
"profile": "speed",
"options": {},
"additional_variables": DEFAULT_ADDITIONAL_OUTPUT_VARIABLES,
},
{
"label": "balanced_profile",
"shortid": "HDF_bal",
"title": "HDF bench balanced",
"profile": "balanced",
"options": {},
"additional_variables": DEFAULT_ADDITIONAL_OUTPUT_VARIABLES,
},
{
"label": "size_profile",
"shortid": "HDF_size",
"title": "HDF bench size",
"profile": "size",
"options": {},
"additional_variables": DEFAULT_ADDITIONAL_OUTPUT_VARIABLES,
},
{
"label": "nas_profile",
"shortid": "HDF_nas",
"title": "HDF bench NAS",
"profile": "nas",
"options": {},
"additional_variables": DEFAULT_ADDITIONAL_OUTPUT_VARIABLES,
},
# Add explicit permutations as needed. Keep shortid <= 24 chars and title <= 32 chars.
# {
# "label": "compression_9_4mb",
# "shortid": "HDF_c9_4mb",
# "title": "HDF bench c9 4mb",
# "profile": None,
# "options": {
# "write_warmup": True,
# "write_time_slices": False,
# "hdf_flush": False,
# "compression": 9,
# "chunk_size_mb": 4,
# "spatial_parts": 1,
# "use_max_rows": True,
# "fixed_rows": 1,
# },
# "additional_variables": DEFAULT_ADDITIONAL_OUTPUT_VARIABLES,
# },
]
pd.DataFrame(PERMUTATIONS)[["label", "shortid", "profile", "options", "additional_variables"]]
| label | shortid | profile | options | additional_variables | |
|---|---|---|---|---|---|
| 0 | baseline_p06_clone | HDF_base | NaN | {} | [] |
| 1 | speed_profile | HDF_speed | speed | {} | [] |
| 2 | balanced_profile | HDF_bal | balanced | {} | [] |
| 3 | size_profile | HDF_size | size | {} | [] |
| 4 | nas_profile | HDF_nas | nas | {} | [] |
Python
WORKING_ROOT.mkdir(parents=True, exist_ok=True)
if RESET_EXTRACTED_PROJECT or not PROJECT_FOLDER.exists():
project_folder = RasExamples.extract_project(PROJECT_NAME, output_path=WORKING_ROOT)
else:
project_folder = PROJECT_FOLDER
ras = init_ras_project(project_folder, RAS_VERSION, load_results_summary=False)
ras.plan_df[["plan_number", "Plan Title", "Short Identifier", "HDF_Results_Path", "full_path"]]
Text Only
2026-04-24 13:37:57 - ras_commander.RasExamples - INFO - Found zip file: C:\Users\bill\AppData\Local\ras-commander\examples\Example_Projects_7_0.zip
2026-04-24 13:37:57 - ras_commander.RasExamples - INFO - Loading project data from CSV...
2026-04-24 13:37:57 - ras_commander.RasExamples - INFO - Loaded 67 projects from CSV.
2026-04-24 13:37:57 - ras_commander.RasExamples - INFO - ----- RasExamples Extracting Project -----
2026-04-24 13:37:57 - ras_commander.RasExamples - INFO - Extracting project 'BaldEagleCrkMulti2D'
2026-04-24 13:37:59 - ras_commander.RasExamples - INFO - Successfully extracted project 'BaldEagleCrkMulti2D' to G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 7.0 at C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.7 Beta 5 at C:\Program Files (x86)\HEC\HEC-RAS\6.7 Beta 5\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.5 at C:\Program Files (x86)\HEC\HEC-RAS\6.5\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.3.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.3.1\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.2 at C:\Program Files (x86)\HEC\HEC-RAS\6.2\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.1\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.0 at C:\Program Files (x86)\HEC\HEC-RAS\6.0\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.7 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.7\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.6 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.6\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.5 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.5\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.4 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.4\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.3 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.3\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.1 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.1\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0 at C:\Program Files (x86)\HEC\HEC-RAS\5.0\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 4.1.0 at C:\Program Files (x86)\HEC\HEC-RAS\4.1.0\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.6 at C:\Program Files (x86)\HEC\HEC-RAS\6.6\Ras.exe via filesystem (x86)
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Discovered 16 installed HEC-RAS version(s)
2026-04-24 13:37:59 - ras_commander.RasPrj - INFO - HEC-RAS 7.0 found via version discovery: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:37:59 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:37:59 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:37:59 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:37:59 - ras_commander.RasPrj - INFO - ras-commander v0.95.0 | An open-source project of CLB Engineering Corporation (https://clbengineering.com/) | Docs: https://ras-commander.readthedocs.io | GitHub: https://github.com/gpt-cmdr/ras-commander
2026-04-24 13:37:59 - ras_commander.RasPrj - INFO - Project initialized: BaldEagleDamBrk | Folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:37:59 - ras_commander.RasPrj - INFO - Using HEC-RAS executable: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
| plan_number | Plan Title | Short Identifier | HDF_Results_Path | full_path | |
|---|---|---|---|---|---|
| 0 | 13 | PMF with Multi 2D Areas | PMF Multi 2D | None | G:\GH\ras-commander\working\hdf_output_options... |
| 1 | 15 | 1d-2D Dambreak Refined Grid | 1D-2D Refined Grid | None | G:\GH\ras-commander\working\hdf_output_options... |
| 2 | 17 | 2D to 1D No Dam | 2D to 1D No Dam | None | G:\GH\ras-commander\working\hdf_output_options... |
| 3 | 18 | 2D to 2D Run | 2D to 2D Run | None | G:\GH\ras-commander\working\hdf_output_options... |
| 4 | 19 | SA to 2D Dam Break Run | SA to 2D Dam Break | None | G:\GH\ras-commander\working\hdf_output_options... |
| 5 | 03 | Single 2D Area - Internal Dam Structure | Single 2D | None | G:\GH\ras-commander\working\hdf_output_options... |
| 6 | 04 | SA to 2D Area Conn - 2D Levee Structure | 2D Levee Struc | None | G:\GH\ras-commander\working\hdf_output_options... |
| 7 | 02 | SA to Detailed 2D Breach | SA-2D Det Brch | None | G:\GH\ras-commander\working\hdf_output_options... |
| 8 | 01 | SA to Detailed 2D Breach FEQ | SA-2D Det FEQ | None | G:\GH\ras-commander\working\hdf_output_options... |
| 9 | 05 | Single 2D area with Bridges FEQ | Single 2D Bridges FEQ | None | G:\GH\ras-commander\working\hdf_output_options... |
| 10 | 06 | Gridded Precip - Infiltration | Grid Precip Infiltration | None | G:\GH\ras-commander\working\hdf_output_options... |
Python
if TEMPLATE_PLAN not in set(ras.plan_df["plan_number"].astype(str)):
raise ValueError(
f"Template plan {TEMPLATE_PLAN} not found. Available plans: "
f"{ras.plan_df['plan_number'].tolist()}"
)
print("Available HDF profiles:")
print(json.dumps(RasPlan.list_hdf_output_setting_profiles(), indent=2))
print(f"\nKnown additional HDF output variables: {len(RasPlan.list_available_hdf_output_variables())}")
RasPlan.list_available_hdf_output_variables()[:10]
Text Only
Available HDF profiles:
{
"balanced": {
"write_warmup": true,
"write_time_slices": false,
"hdf_flush": false,
"compression": 4,
"chunk_size_mb": 4,
"spatial_parts": 1,
"use_max_rows": true,
"fixed_rows": 1
},
"speed": {
"write_warmup": true,
"write_time_slices": false,
"hdf_flush": false,
"compression": 1,
"chunk_size_mb": 4,
"spatial_parts": 1,
"use_max_rows": true,
"fixed_rows": 1
},
"size": {
"write_warmup": true,
"write_time_slices": false,
"hdf_flush": false,
"compression": 6,
"chunk_size_mb": 4,
"spatial_parts": 1,
"use_max_rows": true,
"fixed_rows": 1
},
"nas": {
"write_warmup": true,
"write_time_slices": false,
"hdf_flush": false,
"compression": 6,
"chunk_size_mb": 2,
"spatial_parts": 1,
"use_max_rows": true,
"fixed_rows": 1
}
}
Known additional HDF output variables: 44
['Cell Cumulative Excess Depth',
'Cell Cumulative Infiltration Depth',
'Cell Cumulative Percolation Depth',
'Cell Cumulative Precipitation Depth',
'Cell Eddy Viscosity',
'Cell Cumulative Evapotranspiration Depth',
'Cell Evapotranspiration Potential Rate',
'Cell Evapotranspiration Rate',
'Cell Excess Rate',
'Cell Flow Balance (inflows - outflows)']
Python
def refresh_project():
global ras
ras = init_ras_project(project_folder, RAS_VERSION, load_results_summary=False)
return ras
def find_plan_by_shortid(shortid: str):
ras.plan_df = ras.get_plan_entries()
shortids = ras.plan_df["Short Identifier"].fillna("").astype(str).str.strip()
match = ras.plan_df[shortids == shortid[:24]]
if match.empty:
return None
return str(match.iloc[0]["plan_number"])
def expected_plan_hdf_path(plan_number: str) -> Path:
return Path(ras.project_folder) / f"{ras.project_name}.p{str(plan_number).zfill(2)}.hdf"
def ensure_benchmark_plan(perm: dict) -> dict:
plan_number = find_plan_by_shortid(perm["shortid"])
created = False
if plan_number is None:
plan_number = RasPlan.clone_plan(
TEMPLATE_PLAN,
new_plan_shortid=perm["shortid"],
new_title=perm["title"],
description=(
f"HDF read benchmark clone of plan {TEMPLATE_PLAN}. "
f"Permutation: {perm['label']}"
),
ras_object=ras,
)
created = True
refresh_project()
if perm.get("profile"):
RasPlan.apply_hdf_output_profile(
plan_number,
profile=perm["profile"],
additional_variables=perm.get("additional_variables") or [],
ras_object=ras,
)
elif perm.get("options"):
RasPlan.set_hdf_output_options(
plan_number,
ras_object=ras,
**perm["options"],
)
if perm.get("additional_variables"):
RasPlan.set_hdf_output_variables(
plan_number,
perm["additional_variables"],
enabled=True,
ras_object=ras,
)
elif perm.get("additional_variables"):
RasPlan.set_hdf_output_variables(
plan_number,
perm["additional_variables"],
enabled=True,
ras_object=ras,
)
refresh_project()
hdf_path = expected_plan_hdf_path(plan_number)
return {
"label": perm["label"],
"shortid": perm["shortid"],
"profile": perm.get("profile"),
"plan_number": plan_number,
"created": created,
"hdf_path": hdf_path,
"hdf_exists": hdf_path.exists(),
"options": RasPlan.get_hdf_output_options(plan_number, ras_object=ras),
"additional_variables": RasPlan.get_hdf_output_variables(plan_number, ras_object=ras),
}
benchmark_plans = [ensure_benchmark_plan(perm) for perm in PERMUTATIONS]
plans_df = pd.DataFrame(benchmark_plans)
plans_df[["label", "plan_number", "profile", "hdf_exists", "hdf_path", "options", "additional_variables"]]
Text Only
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - File cloned from G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p06 to G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Successfully updated file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07
2026-04-24 13:37:59 - ras_commander.RasUtils - INFO - Project file updated with new Plan entry: 07
2026-04-24 13:37:59 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:37:59 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:37:59 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:37:59 - ras_commander.RasPrj - INFO - Updated results_df with 12 plan(s)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 7.0 at C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.7 Beta 5 at C:\Program Files (x86)\HEC\HEC-RAS\6.7 Beta 5\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.5 at C:\Program Files (x86)\HEC\HEC-RAS\6.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.3.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.3.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.2 at C:\Program Files (x86)\HEC\HEC-RAS\6.2\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.0 at C:\Program Files (x86)\HEC\HEC-RAS\6.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.7 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.7\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.6 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.5 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.4 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.4\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.3 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.3\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.1 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0 at C:\Program Files (x86)\HEC\HEC-RAS\5.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 4.1.0 at C:\Program Files (x86)\HEC\HEC-RAS\4.1.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.6 at C:\Program Files (x86)\HEC\HEC-RAS\6.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered 16 installed HEC-RAS version(s)
2026-04-24 13:38:00 - ras_commander.RasPrj - INFO - HEC-RAS 7.0 found via version discovery: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:00 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:00 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:00 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:00 - ras_commander.RasPrj - INFO - ras-commander v0.95.0 | An open-source project of CLB Engineering Corporation (https://clbengineering.com/) | Docs: https://ras-commander.readthedocs.io | GitHub: https://github.com/gpt-cmdr/ras-commander
2026-04-24 13:38:00 - ras_commander.RasPrj - INFO - Project initialized: BaldEagleDamBrk | Folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:38:00 - ras_commander.RasPrj - INFO - Using HEC-RAS executable: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 7.0 at C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.7 Beta 5 at C:\Program Files (x86)\HEC\HEC-RAS\6.7 Beta 5\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.5 at C:\Program Files (x86)\HEC\HEC-RAS\6.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.3.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.3.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.2 at C:\Program Files (x86)\HEC\HEC-RAS\6.2\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.0 at C:\Program Files (x86)\HEC\HEC-RAS\6.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.7 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.7\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.6 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.5 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.4 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.4\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.3 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.3\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.1 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0 at C:\Program Files (x86)\HEC\HEC-RAS\5.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 4.1.0 at C:\Program Files (x86)\HEC\HEC-RAS\4.1.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.6 at C:\Program Files (x86)\HEC\HEC-RAS\6.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Discovered 16 installed HEC-RAS version(s)
2026-04-24 13:38:00 - ras_commander.RasPrj - INFO - HEC-RAS 7.0 found via version discovery: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:00 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:00 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:00 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:00 - ras_commander.RasPrj - INFO - ras-commander v0.95.0 | An open-source project of CLB Engineering Corporation (https://clbengineering.com/) | Docs: https://ras-commander.readthedocs.io | GitHub: https://github.com/gpt-cmdr/ras-commander
2026-04-24 13:38:00 - ras_commander.RasPrj - INFO - Project initialized: BaldEagleDamBrk | Folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:38:00 - ras_commander.RasPrj - INFO - Using HEC-RAS executable: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:00 - ras_commander.RasPlan - INFO - Found 9 HDF output variables in plan
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - File cloned from G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p06 to G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Successfully updated file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08
2026-04-24 13:38:00 - ras_commander.RasUtils - INFO - Project file updated with new Plan entry: 08
2026-04-24 13:38:00 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:00 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:00 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:00 - ras_commander.RasPrj - INFO - Updated results_df with 13 plan(s)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 7.0 at C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.7 Beta 5 at C:\Program Files (x86)\HEC\HEC-RAS\6.7 Beta 5\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.5 at C:\Program Files (x86)\HEC\HEC-RAS\6.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.3.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.3.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.2 at C:\Program Files (x86)\HEC\HEC-RAS\6.2\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.0 at C:\Program Files (x86)\HEC\HEC-RAS\6.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.7 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.7\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.6 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.5 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.4 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.4\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.3 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.3\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.1 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0 at C:\Program Files (x86)\HEC\HEC-RAS\5.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 4.1.0 at C:\Program Files (x86)\HEC\HEC-RAS\4.1.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.6 at C:\Program Files (x86)\HEC\HEC-RAS\6.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered 16 installed HEC-RAS version(s)
2026-04-24 13:38:01 - ras_commander.RasPrj - INFO - HEC-RAS 7.0 found via version discovery: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:01 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:01 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:01 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:01 - ras_commander.RasPrj - INFO - ras-commander v0.95.0 | An open-source project of CLB Engineering Corporation (https://clbengineering.com/) | Docs: https://ras-commander.readthedocs.io | GitHub: https://github.com/gpt-cmdr/ras-commander
2026-04-24 13:38:01 - ras_commander.RasPrj - INFO - Project initialized: BaldEagleDamBrk | Folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:38:01 - ras_commander.RasPrj - INFO - Using HEC-RAS executable: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:01 - ras_commander.RasPlan - INFO - Updated HDF write parameters in plan file: BaldEagleDamBrk.p08
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 7.0 at C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.7 Beta 5 at C:\Program Files (x86)\HEC\HEC-RAS\6.7 Beta 5\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.5 at C:\Program Files (x86)\HEC\HEC-RAS\6.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.3.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.3.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.2 at C:\Program Files (x86)\HEC\HEC-RAS\6.2\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.0 at C:\Program Files (x86)\HEC\HEC-RAS\6.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.7 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.7\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.6 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.5 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.4 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.4\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.3 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.3\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.1 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0 at C:\Program Files (x86)\HEC\HEC-RAS\5.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 4.1.0 at C:\Program Files (x86)\HEC\HEC-RAS\4.1.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.6 at C:\Program Files (x86)\HEC\HEC-RAS\6.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered 16 installed HEC-RAS version(s)
2026-04-24 13:38:01 - ras_commander.RasPrj - INFO - HEC-RAS 7.0 found via version discovery: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:01 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:01 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:01 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:01 - ras_commander.RasPrj - INFO - ras-commander v0.95.0 | An open-source project of CLB Engineering Corporation (https://clbengineering.com/) | Docs: https://ras-commander.readthedocs.io | GitHub: https://github.com/gpt-cmdr/ras-commander
2026-04-24 13:38:01 - ras_commander.RasPrj - INFO - Project initialized: BaldEagleDamBrk | Folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:38:01 - ras_commander.RasPrj - INFO - Using HEC-RAS executable: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:01 - ras_commander.RasPlan - INFO - Found 9 HDF output variables in plan
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - File cloned from G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p06 to G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Successfully updated file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Project file updated with new Plan entry: 09
2026-04-24 13:38:01 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:01 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:01 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:01 - ras_commander.RasPrj - INFO - Updated results_df with 14 plan(s)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 7.0 at C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.7 Beta 5 at C:\Program Files (x86)\HEC\HEC-RAS\6.7 Beta 5\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.5 at C:\Program Files (x86)\HEC\HEC-RAS\6.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.3.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.3.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.2 at C:\Program Files (x86)\HEC\HEC-RAS\6.2\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.0 at C:\Program Files (x86)\HEC\HEC-RAS\6.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.7 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.7\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.6 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.5 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.4 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.4\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.3 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.3\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.1 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0 at C:\Program Files (x86)\HEC\HEC-RAS\5.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 4.1.0 at C:\Program Files (x86)\HEC\HEC-RAS\4.1.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.6 at C:\Program Files (x86)\HEC\HEC-RAS\6.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:01 - ras_commander.RasUtils - INFO - Discovered 16 installed HEC-RAS version(s)
2026-04-24 13:38:01 - ras_commander.RasPrj - INFO - HEC-RAS 7.0 found via version discovery: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:02 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:02 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:02 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:02 - ras_commander.RasPrj - INFO - ras-commander v0.95.0 | An open-source project of CLB Engineering Corporation (https://clbengineering.com/) | Docs: https://ras-commander.readthedocs.io | GitHub: https://github.com/gpt-cmdr/ras-commander
2026-04-24 13:38:02 - ras_commander.RasPrj - INFO - Project initialized: BaldEagleDamBrk | Folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:38:02 - ras_commander.RasPrj - INFO - Using HEC-RAS executable: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:02 - ras_commander.RasPlan - INFO - Updated HDF write parameters in plan file: BaldEagleDamBrk.p09
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 7.0 at C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.7 Beta 5 at C:\Program Files (x86)\HEC\HEC-RAS\6.7 Beta 5\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.5 at C:\Program Files (x86)\HEC\HEC-RAS\6.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.3.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.3.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.2 at C:\Program Files (x86)\HEC\HEC-RAS\6.2\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.0 at C:\Program Files (x86)\HEC\HEC-RAS\6.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.7 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.7\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.6 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.5 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.4 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.4\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.3 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.3\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.1 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0 at C:\Program Files (x86)\HEC\HEC-RAS\5.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 4.1.0 at C:\Program Files (x86)\HEC\HEC-RAS\4.1.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.6 at C:\Program Files (x86)\HEC\HEC-RAS\6.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered 16 installed HEC-RAS version(s)
2026-04-24 13:38:02 - ras_commander.RasPrj - INFO - HEC-RAS 7.0 found via version discovery: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:02 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:02 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:02 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:02 - ras_commander.RasPrj - INFO - ras-commander v0.95.0 | An open-source project of CLB Engineering Corporation (https://clbengineering.com/) | Docs: https://ras-commander.readthedocs.io | GitHub: https://github.com/gpt-cmdr/ras-commander
2026-04-24 13:38:02 - ras_commander.RasPrj - INFO - Project initialized: BaldEagleDamBrk | Folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:38:02 - ras_commander.RasPrj - INFO - Using HEC-RAS executable: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:02 - ras_commander.RasPlan - INFO - Found 9 HDF output variables in plan
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - File cloned from G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p06 to G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Successfully updated file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Project file updated with new Plan entry: 10
2026-04-24 13:38:02 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:02 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:02 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:02 - ras_commander.RasPrj - INFO - Updated results_df with 15 plan(s)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 7.0 at C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.7 Beta 5 at C:\Program Files (x86)\HEC\HEC-RAS\6.7 Beta 5\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.5 at C:\Program Files (x86)\HEC\HEC-RAS\6.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.3.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.3.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.2 at C:\Program Files (x86)\HEC\HEC-RAS\6.2\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.0 at C:\Program Files (x86)\HEC\HEC-RAS\6.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.7 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.7\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.6 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.5 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.4 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.4\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.3 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.3\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.1 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0 at C:\Program Files (x86)\HEC\HEC-RAS\5.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 4.1.0 at C:\Program Files (x86)\HEC\HEC-RAS\4.1.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.6 at C:\Program Files (x86)\HEC\HEC-RAS\6.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered 16 installed HEC-RAS version(s)
2026-04-24 13:38:02 - ras_commander.RasPrj - INFO - HEC-RAS 7.0 found via version discovery: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:02 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:02 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:02 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:02 - ras_commander.RasPrj - INFO - ras-commander v0.95.0 | An open-source project of CLB Engineering Corporation (https://clbengineering.com/) | Docs: https://ras-commander.readthedocs.io | GitHub: https://github.com/gpt-cmdr/ras-commander
2026-04-24 13:38:02 - ras_commander.RasPrj - INFO - Project initialized: BaldEagleDamBrk | Folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:38:02 - ras_commander.RasPrj - INFO - Using HEC-RAS executable: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:02 - ras_commander.RasPlan - INFO - Updated HDF write parameters in plan file: BaldEagleDamBrk.p10
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 7.0 at C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.7 Beta 5 at C:\Program Files (x86)\HEC\HEC-RAS\6.7 Beta 5\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.5 at C:\Program Files (x86)\HEC\HEC-RAS\6.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.3.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.3.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.2 at C:\Program Files (x86)\HEC\HEC-RAS\6.2\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.0 at C:\Program Files (x86)\HEC\HEC-RAS\6.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.7 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.7\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.6 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.5 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.4 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.4\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.3 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.3\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.1 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0 at C:\Program Files (x86)\HEC\HEC-RAS\5.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 4.1.0 at C:\Program Files (x86)\HEC\HEC-RAS\4.1.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.6 at C:\Program Files (x86)\HEC\HEC-RAS\6.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:02 - ras_commander.RasUtils - INFO - Discovered 16 installed HEC-RAS version(s)
2026-04-24 13:38:02 - ras_commander.RasPrj - INFO - HEC-RAS 7.0 found via version discovery: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:03 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:03 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:03 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:03 - ras_commander.RasPrj - INFO - ras-commander v0.95.0 | An open-source project of CLB Engineering Corporation (https://clbengineering.com/) | Docs: https://ras-commander.readthedocs.io | GitHub: https://github.com/gpt-cmdr/ras-commander
2026-04-24 13:38:03 - ras_commander.RasPrj - INFO - Project initialized: BaldEagleDamBrk | Folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:38:03 - ras_commander.RasPrj - INFO - Using HEC-RAS executable: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:03 - ras_commander.RasPlan - INFO - Found 9 HDF output variables in plan
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - File cloned from G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p06 to G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Successfully updated file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Project file updated with new Plan entry: 11
2026-04-24 13:38:03 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:03 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:03 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:03 - ras_commander.RasPrj - INFO - Updated results_df with 16 plan(s)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 7.0 at C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.7 Beta 5 at C:\Program Files (x86)\HEC\HEC-RAS\6.7 Beta 5\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.5 at C:\Program Files (x86)\HEC\HEC-RAS\6.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.3.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.3.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.2 at C:\Program Files (x86)\HEC\HEC-RAS\6.2\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.0 at C:\Program Files (x86)\HEC\HEC-RAS\6.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.7 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.7\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.6 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.5 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.4 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.4\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.3 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.3\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.1 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0 at C:\Program Files (x86)\HEC\HEC-RAS\5.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 4.1.0 at C:\Program Files (x86)\HEC\HEC-RAS\4.1.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.6 at C:\Program Files (x86)\HEC\HEC-RAS\6.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered 16 installed HEC-RAS version(s)
2026-04-24 13:38:03 - ras_commander.RasPrj - INFO - HEC-RAS 7.0 found via version discovery: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:03 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:03 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:03 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:03 - ras_commander.RasPrj - INFO - ras-commander v0.95.0 | An open-source project of CLB Engineering Corporation (https://clbengineering.com/) | Docs: https://ras-commander.readthedocs.io | GitHub: https://github.com/gpt-cmdr/ras-commander
2026-04-24 13:38:03 - ras_commander.RasPrj - INFO - Project initialized: BaldEagleDamBrk | Folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:38:03 - ras_commander.RasPrj - INFO - Using HEC-RAS executable: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:03 - ras_commander.RasPlan - INFO - Updated HDF write parameters in plan file: BaldEagleDamBrk.p11
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 7.0 at C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.7 Beta 5 at C:\Program Files (x86)\HEC\HEC-RAS\6.7 Beta 5\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.5 at C:\Program Files (x86)\HEC\HEC-RAS\6.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.3.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.3.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.2 at C:\Program Files (x86)\HEC\HEC-RAS\6.2\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.0 at C:\Program Files (x86)\HEC\HEC-RAS\6.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.7 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.7\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.6 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.5 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.5\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.4 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.4\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.3 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.3\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.1 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.1\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0 at C:\Program Files (x86)\HEC\HEC-RAS\5.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 4.1.0 at C:\Program Files (x86)\HEC\HEC-RAS\4.1.0\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.6 at C:\Program Files (x86)\HEC\HEC-RAS\6.6\Ras.exe via filesystem (x86)
2026-04-24 13:38:03 - ras_commander.RasUtils - INFO - Discovered 16 installed HEC-RAS version(s)
2026-04-24 13:38:03 - ras_commander.RasPrj - INFO - HEC-RAS 7.0 found via version discovery: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:04 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 13:38:04 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:04 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 13:38:04 - ras_commander.RasPrj - INFO - ras-commander v0.95.0 | An open-source project of CLB Engineering Corporation (https://clbengineering.com/) | Docs: https://ras-commander.readthedocs.io | GitHub: https://github.com/gpt-cmdr/ras-commander
2026-04-24 13:38:04 - ras_commander.RasPrj - INFO - Project initialized: BaldEagleDamBrk | Folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:38:04 - ras_commander.RasPrj - INFO - Using HEC-RAS executable: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 13:38:04 - ras_commander.RasPlan - INFO - Found 9 HDF output variables in plan
| label | plan_number | profile | hdf_exists | hdf_path | options | additional_variables | |
|---|---|---|---|---|---|---|---|
| 0 | baseline_p06_clone | 07 | NaN | False | G:\GH\ras-commander\working\hdf_output_options... | {'write_warmup': False, 'write_time_slices': F... | [Cell Invert Depth, Cell Velocity, Cell Flow B... |
| 1 | speed_profile | 08 | speed | False | G:\GH\ras-commander\working\hdf_output_options... | {'write_warmup': True, 'write_time_slices': Fa... | [Cell Invert Depth, Cell Velocity, Cell Flow B... |
| 2 | balanced_profile | 09 | balanced | False | G:\GH\ras-commander\working\hdf_output_options... | {'write_warmup': True, 'write_time_slices': Fa... | [Cell Invert Depth, Cell Velocity, Cell Flow B... |
| 3 | size_profile | 10 | size | False | G:\GH\ras-commander\working\hdf_output_options... | {'write_warmup': True, 'write_time_slices': Fa... | [Cell Invert Depth, Cell Velocity, Cell Flow B... |
| 4 | nas_profile | 11 | nas | False | G:\GH\ras-commander\working\hdf_output_options... | {'write_warmup': True, 'write_time_slices': Fa... | [Cell Invert Depth, Cell Velocity, Cell Flow B... |
Python
compute_records = []
for row in benchmark_plans:
plan_number = row["plan_number"]
hdf_path = row["hdf_path"]
if hdf_path.exists() and not FORCE_RECOMPUTE:
compute_records.append({
"label": row["label"],
"plan_number": plan_number,
"status": "existing_hdf_reused",
"elapsed_sec": None,
"success": True,
"hdf_path": hdf_path,
})
continue
if not COMPUTE_MISSING_RESULTS:
compute_records.append({
"label": row["label"],
"plan_number": plan_number,
"status": "missing_hdf_not_computed",
"elapsed_sec": None,
"success": False,
"hdf_path": hdf_path,
})
continue
start = perf_counter()
result = RasCmdr.compute_plan(
plan_number,
ras_object=ras,
num_cores=NUM_CORES,
verify=True,
force_rerun=FORCE_RECOMPUTE,
)
elapsed = perf_counter() - start
compute_records.append({
"label": row["label"],
"plan_number": plan_number,
"status": "computed",
"elapsed_sec": elapsed,
"success": bool(result),
"hdf_path": hdf_path,
})
refresh_project()
compute_df = pd.DataFrame(compute_records)
compute_df
Text Only
2026-04-24 13:38:04 - ras_commander.RasCmdr - INFO - Using ras_object with project folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:38:04 - ras_commander.RasUtils - INFO - Using provided plan file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07
2026-04-24 13:38:04 - ras_commander.RasUtils - INFO - Successfully updated file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07
2026-04-24 13:38:04 - ras_commander.RasCmdr - INFO - Set number of cores to 4 for plan: 07
2026-04-24 13:38:04 - ras_commander.RasCmdr - INFO - Running HEC-RAS from the Command Line:
2026-04-24 13:38:04 - ras_commander.RasCmdr - INFO - Running command: "C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe" -c "G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.prj" "G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07"
2026-04-24 13:42:54 - ras_commander.RasCmdr - INFO - HEC-RAS execution completed for plan: 07
2026-04-24 13:42:54 - ras_commander.RasCmdr - INFO - Total run time for plan 07: 290.52 seconds
2026-04-24 13:42:54 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 13:42:54 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 13:42:54 - ras_commander.hdf.HdfResultsPlan - INFO - Reading computation messages from HDF: BaldEagleDamBrk.p07.hdf
2026-04-24 13:42:54 - ras_commander.hdf.HdfResultsPlan - INFO - Successfully extracted 11708 characters from HDF
2026-04-24 13:42:54 - ras_commander.RasCmdr - INFO - Verification passed for plan 07
2026-04-24 13:42:55 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 13:42:55 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 13:42:55 - ras_commander.hdf.HdfResultsPlan - INFO - Reading computation messages from HDF: BaldEagleDamBrk.p07.hdf
2026-04-24 13:42:55 - ras_commander.hdf.HdfResultsPlan - INFO - Successfully extracted 11708 characters from HDF
2026-04-24 13:42:55 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 13:42:55 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 13:42:55 - ras_commander.hdf.HdfResultsPlan - INFO - Extracting Plan Information from: BaldEagleDamBrk.p07.hdf
2026-04-24 13:42:55 - ras_commander.hdf.HdfResultsPlan - INFO - Plan Name: HDF bench baseline
2026-04-24 13:42:55 - ras_commander.hdf.HdfResultsPlan - INFO - Simulation Duration (hours): 120.0
2026-04-24 13:42:55 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 13:42:55 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 13:42:55 - ras_commander.RasPrj - INFO - Updated results_df with 1 plan(s)
2026-04-24 13:42:55 - ras_commander.RasCmdr - INFO - Using ras_object with project folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:42:55 - ras_commander.RasUtils - INFO - Using provided plan file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08
2026-04-24 13:42:55 - ras_commander.RasUtils - INFO - Successfully updated file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08
2026-04-24 13:42:55 - ras_commander.RasCmdr - INFO - Set number of cores to 4 for plan: 08
2026-04-24 13:42:55 - ras_commander.RasCmdr - INFO - Running HEC-RAS from the Command Line:
2026-04-24 13:42:55 - ras_commander.RasCmdr - INFO - Running command: "C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe" -c "G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.prj" "G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08"
2026-04-24 13:47:52 - ras_commander.RasCmdr - INFO - HEC-RAS execution completed for plan: 08
2026-04-24 13:47:52 - ras_commander.RasCmdr - INFO - Total run time for plan 08: 297.23 seconds
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Reading computation messages from HDF: BaldEagleDamBrk.p08.hdf
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Successfully extracted 11705 characters from HDF
2026-04-24 13:47:52 - ras_commander.RasCmdr - INFO - Verification passed for plan 08
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Reading computation messages from HDF: BaldEagleDamBrk.p08.hdf
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Successfully extracted 11705 characters from HDF
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Extracting Plan Information from: BaldEagleDamBrk.p08.hdf
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Plan Name: HDF bench speed
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Simulation Duration (hours): 120.0
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 13:47:52 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 13:47:52 - ras_commander.RasPrj - INFO - Updated results_df with 1 plan(s)
2026-04-24 13:47:52 - ras_commander.RasCmdr - INFO - Using ras_object with project folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:47:52 - ras_commander.RasUtils - INFO - Using provided plan file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09
2026-04-24 13:47:52 - ras_commander.RasUtils - INFO - Successfully updated file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09
2026-04-24 13:47:53 - ras_commander.RasCmdr - INFO - Set number of cores to 4 for plan: 09
2026-04-24 13:47:53 - ras_commander.RasCmdr - INFO - Running HEC-RAS from the Command Line:
2026-04-24 13:47:53 - ras_commander.RasCmdr - INFO - Running command: "C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe" -c "G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.prj" "G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09"
2026-04-24 13:52:50 - ras_commander.RasCmdr - INFO - HEC-RAS execution completed for plan: 09
2026-04-24 13:52:50 - ras_commander.RasCmdr - INFO - Total run time for plan 09: 297.17 seconds
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Reading computation messages from HDF: BaldEagleDamBrk.p09.hdf
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Successfully extracted 11724 characters from HDF
2026-04-24 13:52:50 - ras_commander.RasCmdr - INFO - Verification passed for plan 09
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Reading computation messages from HDF: BaldEagleDamBrk.p09.hdf
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Successfully extracted 11724 characters from HDF
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Extracting Plan Information from: BaldEagleDamBrk.p09.hdf
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Plan Name: HDF bench balanced
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Simulation Duration (hours): 120.0
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 13:52:50 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 13:52:50 - ras_commander.RasPrj - INFO - Updated results_df with 1 plan(s)
2026-04-24 13:52:50 - ras_commander.RasCmdr - INFO - Using ras_object with project folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:52:50 - ras_commander.RasUtils - INFO - Using provided plan file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10
2026-04-24 13:52:50 - ras_commander.RasUtils - INFO - Successfully updated file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10
2026-04-24 13:52:50 - ras_commander.RasCmdr - INFO - Set number of cores to 4 for plan: 10
2026-04-24 13:52:50 - ras_commander.RasCmdr - INFO - Running HEC-RAS from the Command Line:
2026-04-24 13:52:50 - ras_commander.RasCmdr - INFO - Running command: "C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe" -c "G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.prj" "G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10"
2026-04-24 13:57:58 - ras_commander.RasCmdr - INFO - HEC-RAS execution completed for plan: 10
2026-04-24 13:57:58 - ras_commander.RasCmdr - INFO - Total run time for plan 10: 308.22 seconds
2026-04-24 13:57:58 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 13:57:58 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 13:57:58 - ras_commander.hdf.HdfResultsPlan - INFO - Reading computation messages from HDF: BaldEagleDamBrk.p10.hdf
2026-04-24 13:57:58 - ras_commander.hdf.HdfResultsPlan - INFO - Successfully extracted 11621 characters from HDF
2026-04-24 13:57:58 - ras_commander.RasCmdr - INFO - Verification passed for plan 10
2026-04-24 13:57:59 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 13:57:59 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 13:57:59 - ras_commander.hdf.HdfResultsPlan - INFO - Reading computation messages from HDF: BaldEagleDamBrk.p10.hdf
2026-04-24 13:57:59 - ras_commander.hdf.HdfResultsPlan - INFO - Successfully extracted 11621 characters from HDF
2026-04-24 13:57:59 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 13:57:59 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 13:57:59 - ras_commander.hdf.HdfResultsPlan - INFO - Extracting Plan Information from: BaldEagleDamBrk.p10.hdf
2026-04-24 13:57:59 - ras_commander.hdf.HdfResultsPlan - INFO - Plan Name: HDF bench size
2026-04-24 13:57:59 - ras_commander.hdf.HdfResultsPlan - INFO - Simulation Duration (hours): 120.0
2026-04-24 13:57:59 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 13:57:59 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 13:57:59 - ras_commander.RasPrj - INFO - Updated results_df with 1 plan(s)
2026-04-24 13:57:59 - ras_commander.RasCmdr - INFO - Using ras_object with project folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 13:57:59 - ras_commander.RasUtils - INFO - Using provided plan file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11
2026-04-24 13:57:59 - ras_commander.RasUtils - INFO - Successfully updated file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11
2026-04-24 13:57:59 - ras_commander.RasCmdr - INFO - Set number of cores to 4 for plan: 11
2026-04-24 13:57:59 - ras_commander.RasCmdr - INFO - Running HEC-RAS from the Command Line:
2026-04-24 13:57:59 - ras_commander.RasCmdr - INFO - Running command: "C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe" -c "G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.prj" "G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11"
2026-04-24 14:02:56 - ras_commander.RasCmdr - INFO - HEC-RAS execution completed for plan: 11
2026-04-24 14:02:56 - ras_commander.RasCmdr - INFO - Total run time for plan 11: 296.99 seconds
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Reading computation messages from HDF: BaldEagleDamBrk.p11.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Successfully extracted 11620 characters from HDF
2026-04-24 14:02:56 - ras_commander.RasCmdr - INFO - Verification passed for plan 11
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Reading computation messages from HDF: BaldEagleDamBrk.p11.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Successfully extracted 11620 characters from HDF
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Extracting Plan Information from: BaldEagleDamBrk.p11.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Plan Name: HDF bench NAS
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Simulation Duration (hours): 120.0
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:02:56 - ras_commander.RasPrj - INFO - Updated results_df with 1 plan(s)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 7.0 at C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.7 Beta 5 at C:\Program Files (x86)\HEC\HEC-RAS\6.7 Beta 5\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.5 at C:\Program Files (x86)\HEC\HEC-RAS\6.5\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.3.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.3.1\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.2 at C:\Program Files (x86)\HEC\HEC-RAS\6.2\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.1\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.0 at C:\Program Files (x86)\HEC\HEC-RAS\6.0\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.7 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.7\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.6 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.6\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.5 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.5\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.4 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.4\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.3 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.3\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0.1 at C:\Program Files (x86)\HEC\HEC-RAS\5.0.1\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 5.0 at C:\Program Files (x86)\HEC\HEC-RAS\5.0\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 4.1.0 at C:\Program Files (x86)\HEC\HEC-RAS\4.1.0\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.6 at C:\Program Files (x86)\HEC\HEC-RAS\6.6\Ras.exe via filesystem (x86)
2026-04-24 14:02:56 - ras_commander.RasUtils - INFO - Discovered 16 installed HEC-RAS version(s)
2026-04-24 14:02:56 - ras_commander.RasPrj - INFO - HEC-RAS 7.0 found via version discovery: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-04-24 14:02:56 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.rasmap
2026-04-24 14:02:56 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.g09.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.g09.hdf
2026-04-24 14:02:56 - ras_commander.RasPrj - INFO - ras-commander v0.95.0 | An open-source project of CLB Engineering Corporation (https://clbengineering.com/) | Docs: https://ras-commander.readthedocs.io | GitHub: https://github.com/gpt-cmdr/ras-commander
2026-04-24 14:02:56 - ras_commander.RasPrj - INFO - Project initialized: BaldEagleDamBrk | Folder: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D
2026-04-24 14:02:56 - ras_commander.RasPrj - INFO - Using HEC-RAS executable: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
| label | plan_number | status | elapsed_sec | success | hdf_path | |
|---|---|---|---|---|---|---|
| 0 | baseline_p06_clone | 07 | computed | 291.188715 | True | G:\GH\ras-commander\working\hdf_output_options... |
| 1 | speed_profile | 08 | computed | 297.617175 | True | G:\GH\ras-commander\working\hdf_output_options... |
| 2 | balanced_profile | 09 | computed | 297.571243 | True | G:\GH\ras-commander\working\hdf_output_options... |
| 3 | size_profile | 10 | computed | 308.621530 | True | G:\GH\ras-commander\working\hdf_output_options... |
| 4 | nas_profile | 11 | computed | 297.411956 | True | G:\GH\ras-commander\working\hdf_output_options... |
Python
hdf_inventory = []
for row in benchmark_plans:
hdf_path = row["hdf_path"]
hdf_inventory.append({
"label": row["label"],
"plan_number": row["plan_number"],
"hdf_exists": hdf_path.exists(),
"hdf_size_mb": hdf_path.stat().st_size / 1024**2 if hdf_path.exists() else None,
"hdf_path": hdf_path,
})
hdf_inventory_df = pd.DataFrame(hdf_inventory)
hdf_inventory_df
| label | plan_number | hdf_exists | hdf_size_mb | hdf_path | |
|---|---|---|---|---|---|
| 0 | baseline_p06_clone | 07 | True | 577.267754 | G:\GH\ras-commander\working\hdf_output_options... |
| 1 | speed_profile | 08 | True | 577.227092 | G:\GH\ras-commander\working\hdf_output_options... |
| 2 | balanced_profile | 09 | True | 568.167869 | G:\GH\ras-commander\working\hdf_output_options... |
| 3 | size_profile | 10 | True | 566.233318 | G:\GH\ras-commander\working\hdf_output_options... |
| 4 | nas_profile | 11 | True | 566.245049 | G:\GH\ras-commander\working\hdf_output_options... |
Python
missing = hdf_inventory_df[~hdf_inventory_df["hdf_exists"]]
if not missing.empty:
print("These plans do not have HDF results yet. Set COMPUTE_MISSING_RESULTS = True and run the compute cell.")
display(missing[["label", "plan_number", "hdf_path"]])
available_hdfs = hdf_inventory_df[hdf_inventory_df["hdf_exists"]].copy()
if available_hdfs.empty:
raise RuntimeError("No populated HDF files are available for read benchmarking.")
first_hdf = Path(available_hdfs.iloc[0]["hdf_path"])
mesh_names = HdfMesh.get_mesh_area_names(first_hdf)
if not mesh_names:
raise RuntimeError(f"No mesh areas found in {first_hdf}")
PRIMARY_MESH = mesh_names[0]
print(f"Primary mesh: {PRIMARY_MESH}")
print(mesh_names)
Text Only
2026-04-24 14:02:56 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
Primary mesh: BaldEagleCr
['BaldEagleCr']
Python
def summarize_output(obj):
summary = {"result_type": type(obj).__name__}
if isinstance(obj, dict):
summary["items"] = len(obj)
summary["shape"] = str({k: getattr(v, "shape", None) for k, v in obj.items()})
return summary
if hasattr(obj, "shape"):
summary["shape"] = str(obj.shape)
if hasattr(obj, "__len__"):
try:
summary["rows_or_len"] = len(obj)
except TypeError:
pass
if hasattr(obj, "memory_usage"):
try:
summary["memory_mb"] = obj.memory_usage(deep=True).sum() / 1024**2
except Exception:
pass
elif hasattr(obj, "nbytes"):
try:
summary["memory_mb"] = obj.nbytes / 1024**2
except Exception:
pass
return summary
def extraction_operations(hdf_path: Path, mesh_name: str):
return [
("mesh_area_names", "mesh_geometry", lambda: HdfMesh.get_mesh_area_names(hdf_path)),
("mesh_cell_points", "mesh_geometry", lambda: HdfMesh.get_mesh_cell_points(hdf_path)),
("mesh_cell_faces", "mesh_geometry", lambda: HdfMesh.get_mesh_cell_faces(hdf_path)),
("mesh_cell_polygons", "mesh_geometry", lambda: HdfMesh.get_mesh_cell_polygons(hdf_path)),
("mesh_summary_max_ws", "summary_results", lambda: HdfResultsMesh.get_mesh_max_ws(hdf_path)),
("mesh_summary_max_face_v", "summary_results", lambda: HdfResultsMesh.get_mesh_max_face_v(hdf_path)),
("timeseries_depth", "timeseries_results", lambda: HdfResultsMesh.get_mesh_timeseries(hdf_path, mesh_name, "Depth", truncate=False)),
("timeseries_water_surface", "timeseries_results", lambda: HdfResultsMesh.get_mesh_timeseries(hdf_path, mesh_name, "Water Surface", truncate=False)),
("max_depth_from_timeseries", "timeseries_results", lambda: HdfResultsMesh.get_mesh_max_depth(hdf_path)),
]
def time_operation(label: str, plan_number: str, hdf_path: Path, operation_name: str, category: str, fn, repeat: int):
gc.collect()
start = perf_counter()
try:
result = fn()
elapsed = perf_counter() - start
output_summary = summarize_output(result)
return {
"label": label,
"plan_number": plan_number,
"operation": operation_name,
"category": category,
"repeat": repeat,
"elapsed_sec": elapsed,
"success": True,
"error": None,
**output_summary,
}
except Exception as exc:
elapsed = perf_counter() - start
return {
"label": label,
"plan_number": plan_number,
"operation": operation_name,
"category": category,
"repeat": repeat,
"elapsed_sec": elapsed,
"success": False,
"error": repr(exc),
"result_type": None,
}
Python
read_records = []
for _, hdf_row in available_hdfs.iterrows():
label = hdf_row["label"]
plan_number = hdf_row["plan_number"]
hdf_path = Path(hdf_row["hdf_path"])
mesh_for_file = HdfMesh.get_mesh_area_names(hdf_path)[0]
for repeat in range(1, READ_REPETITIONS + 1):
for operation_name, category, fn in extraction_operations(hdf_path, mesh_for_file):
read_records.append(
time_operation(
label,
plan_number,
hdf_path,
operation_name,
category,
fn,
repeat,
)
)
read_benchmark_df = pd.DataFrame(read_records)
read_benchmark_df
Text Only
2026-04-24 14:02:56 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:56 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:57 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:02:58 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:02:58 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:02:58 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:58 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:02:59 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:02:59 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:02:59 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:02:59 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:00 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:01 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:01 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:01 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:01 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:01 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:01 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:02 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:03 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:03 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:03 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:03 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:04 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:04 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:03:04 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:04 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:05 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:06 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:06 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:06 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:07 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:08 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:08 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:08 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:08 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:09 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:09 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:03:09 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:09 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:10 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:10 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:11 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:11 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:11 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:11 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:03:11 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:11 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:12 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:13 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:13 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:13 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:13 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:14 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:14 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:03:14 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:14 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:15 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:15 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:16 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:16 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:16 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:16 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:03:16 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:16 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:17 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:18 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:18 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:18 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:18 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:18 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:18 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:19 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:20 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:20 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:21 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:21 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:21 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:21 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:22 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:23 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:23 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:23 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:23 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:23 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:23 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:24 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:25 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:25 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:25 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:25 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:26 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:26 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:03:26 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:26 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:27 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:28 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:28 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:28 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:28 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:29 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:29 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:03:29 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:29 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:30 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:31 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:31 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:31 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:31 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:32 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:32 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
2026-04-24 14:03:32 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:32 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:33 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Water Surface
2026-04-24 14:03:34 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 19597 rows of summary output data
2026-04-24 14:03:34 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfResultsMesh - INFO - Processing summary output for variable: Maximum Face Velocity
2026-04-24 14:03:34 - ras_commander.hdf.HdfMesh - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2271 from HDF file BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfResultsMesh - INFO - Processed 37594 rows of summary output data
2026-04-24 14:03:34 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfResultsMesh - ERROR - Error in get_mesh_timeseries_output: Path Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/BaldEagleCr/Depth not found in HDF file
2026-04-24 14:03:34 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:34 - ras_commander.hdf.HdfResultsMesh - WARNING - Depth dataset not found for mesh 'BaldEagleCr'
| label | plan_number | operation | category | repeat | elapsed_sec | success | error | result_type | rows_or_len | shape | memory_mb | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | baseline_p06_clone | 07 | mesh_area_names | mesh_geometry | 1 | 0.002444 | True | NaN | list | 1.0 | NaN | NaN |
| 1 | baseline_p06_clone | 07 | mesh_cell_points | mesh_geometry | 1 | 0.129341 | True | NaN | GeoDataFrame | 19597.0 | (19597, 3) | 0.654246 |
| 2 | baseline_p06_clone | 07 | mesh_cell_faces | mesh_geometry | 1 | 0.336988 | True | NaN | GeoDataFrame | 37594.0 | (37594, 3) | 1.254961 |
| 3 | baseline_p06_clone | 07 | mesh_cell_polygons | mesh_geometry | 1 | 0.925853 | True | NaN | GeoDataFrame | 18066.0 | (18066, 3) | 0.603144 |
| 4 | baseline_p06_clone | 07 | mesh_summary_max_ws | summary_results | 1 | 0.172093 | True | NaN | GeoDataFrame | 19597.0 | (19597, 5) | 0.878516 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 130 | nas_profile | 11 | mesh_summary_max_ws | summary_results | 3 | 0.164740 | True | NaN | GeoDataFrame | 19597.0 | (19597, 5) | 0.878516 |
| 131 | nas_profile | 11 | mesh_summary_max_face_v | summary_results | 3 | 0.375095 | True | NaN | GeoDataFrame | 37594.0 | (37594, 5) | 1.685190 |
| 132 | nas_profile | 11 | timeseries_depth | timeseries_results | 3 | 0.002661 | False | ValueError('Failed to get timeseries output: P... | NaN | NaN | NaN | NaN |
| 133 | nas_profile | 11 | timeseries_water_surface | timeseries_results | 3 | 0.228863 | True | NaN | DataArray | 721.0 | (721, 19597) | 53.899525 |
| 134 | nas_profile | 11 | max_depth_from_timeseries | timeseries_results | 3 | 0.004426 | True | NaN | GeoDataFrame | 0.0 | (0, 0) | 0.000126 |
135 rows × 12 columns
Python
successful_reads = read_benchmark_df[read_benchmark_df["success"]].copy()
summary_df = (
successful_reads
.groupby(["label", "plan_number", "category", "operation"], as_index=False)
.agg(
median_elapsed_sec=("elapsed_sec", "median"),
min_elapsed_sec=("elapsed_sec", "min"),
max_elapsed_sec=("elapsed_sec", "max"),
repeats=("elapsed_sec", "count"),
result_type=("result_type", "first"),
shape=("shape", "first"),
rows_or_len=("rows_or_len", "first"),
memory_mb=("memory_mb", "first"),
)
.merge(hdf_inventory_df[["label", "hdf_size_mb"]], on="label", how="left")
.sort_values(["operation", "median_elapsed_sec"])
)
summary_df
| label | plan_number | category | operation | median_elapsed_sec | min_elapsed_sec | max_elapsed_sec | repeats | result_type | shape | rows_or_len | memory_mb | hdf_size_mb | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 22 | nas_profile | 11 | timeseries_results | max_depth_from_timeseries | 0.004426 | 0.004355 | 0.006003 | 3 | GeoDataFrame | (0, 0) | 0.0 | 0.000126 | 566.245049 |
| 30 | size_profile | 10 | timeseries_results | max_depth_from_timeseries | 0.004455 | 0.004379 | 0.004622 | 3 | GeoDataFrame | (0, 0) | 0.0 | 0.000126 | 566.233318 |
| 6 | balanced_profile | 09 | timeseries_results | max_depth_from_timeseries | 0.004580 | 0.004530 | 0.004604 | 3 | GeoDataFrame | (0, 0) | 0.0 | 0.000126 | 568.167869 |
| 38 | speed_profile | 08 | timeseries_results | max_depth_from_timeseries | 0.004606 | 0.004563 | 0.005076 | 3 | GeoDataFrame | (0, 0) | 0.0 | 0.000126 | 577.227092 |
| 14 | baseline_p06_clone | 07 | timeseries_results | max_depth_from_timeseries | 0.005335 | 0.004565 | 0.005536 | 3 | GeoDataFrame | (0, 0) | 0.0 | 0.000126 | 577.267754 |
| 8 | baseline_p06_clone | 07 | mesh_geometry | mesh_area_names | 0.002444 | 0.002382 | 0.002550 | 3 | list | NaN | 1.0 | NaN | 577.267754 |
| 24 | size_profile | 10 | mesh_geometry | mesh_area_names | 0.002510 | 0.002504 | 0.003206 | 3 | list | NaN | 1.0 | NaN | 566.233318 |
| 0 | balanced_profile | 09 | mesh_geometry | mesh_area_names | 0.002525 | 0.002395 | 0.002826 | 3 | list | NaN | 1.0 | NaN | 568.167869 |
| 32 | speed_profile | 08 | mesh_geometry | mesh_area_names | 0.002571 | 0.002463 | 0.002858 | 3 | list | NaN | 1.0 | NaN | 577.227092 |
| 16 | nas_profile | 11 | mesh_geometry | mesh_area_names | 0.003406 | 0.002565 | 0.005266 | 3 | list | NaN | 1.0 | NaN | 566.245049 |
| 25 | size_profile | 10 | mesh_geometry | mesh_cell_faces | 0.318710 | 0.317278 | 0.321707 | 3 | GeoDataFrame | (37594, 3) | 37594.0 | 1.254961 | 566.233318 |
| 33 | speed_profile | 08 | mesh_geometry | mesh_cell_faces | 0.320000 | 0.317274 | 0.328221 | 3 | GeoDataFrame | (37594, 3) | 37594.0 | 1.254961 | 577.227092 |
| 1 | balanced_profile | 09 | mesh_geometry | mesh_cell_faces | 0.322650 | 0.320751 | 0.329103 | 3 | GeoDataFrame | (37594, 3) | 37594.0 | 1.254961 | 568.167869 |
| 17 | nas_profile | 11 | mesh_geometry | mesh_cell_faces | 0.322709 | 0.317185 | 0.387453 | 3 | GeoDataFrame | (37594, 3) | 37594.0 | 1.254961 | 566.245049 |
| 9 | baseline_p06_clone | 07 | mesh_geometry | mesh_cell_faces | 0.332694 | 0.332664 | 0.336988 | 3 | GeoDataFrame | (37594, 3) | 37594.0 | 1.254961 | 577.267754 |
| 26 | size_profile | 10 | mesh_geometry | mesh_cell_points | 0.113807 | 0.113512 | 0.117144 | 3 | GeoDataFrame | (19597, 3) | 19597.0 | 0.654246 | 566.233318 |
| 2 | balanced_profile | 09 | mesh_geometry | mesh_cell_points | 0.118080 | 0.114017 | 0.133441 | 3 | GeoDataFrame | (19597, 3) | 19597.0 | 0.654246 | 568.167869 |
| 34 | speed_profile | 08 | mesh_geometry | mesh_cell_points | 0.121883 | 0.118718 | 0.124898 | 3 | GeoDataFrame | (19597, 3) | 19597.0 | 0.654246 | 577.227092 |
| 10 | baseline_p06_clone | 07 | mesh_geometry | mesh_cell_points | 0.122483 | 0.117603 | 0.129341 | 3 | GeoDataFrame | (19597, 3) | 19597.0 | 0.654246 | 577.267754 |
| 18 | nas_profile | 11 | mesh_geometry | mesh_cell_points | 0.124376 | 0.112571 | 0.164435 | 3 | GeoDataFrame | (19597, 3) | 19597.0 | 0.654246 | 566.245049 |
| 27 | size_profile | 10 | mesh_geometry | mesh_cell_polygons | 0.865397 | 0.854577 | 0.867873 | 3 | GeoDataFrame | (18066, 3) | 18066.0 | 0.603144 | 566.233318 |
| 3 | balanced_profile | 09 | mesh_geometry | mesh_cell_polygons | 0.868965 | 0.853770 | 0.875651 | 3 | GeoDataFrame | (18066, 3) | 18066.0 | 0.603144 | 568.167869 |
| 35 | speed_profile | 08 | mesh_geometry | mesh_cell_polygons | 0.871949 | 0.862809 | 0.872136 | 3 | GeoDataFrame | (18066, 3) | 18066.0 | 0.603144 | 577.227092 |
| 11 | baseline_p06_clone | 07 | mesh_geometry | mesh_cell_polygons | 0.925853 | 0.874774 | 0.942808 | 3 | GeoDataFrame | (18066, 3) | 18066.0 | 0.603144 | 577.267754 |
| 19 | nas_profile | 11 | mesh_geometry | mesh_cell_polygons | 0.953576 | 0.882863 | 0.967828 | 3 | GeoDataFrame | (18066, 3) | 18066.0 | 0.603144 | 566.245049 |
| 28 | size_profile | 10 | summary_results | mesh_summary_max_face_v | 0.357380 | 0.350322 | 0.369790 | 3 | GeoDataFrame | (37594, 5) | 37594.0 | 1.685190 | 566.233318 |
| 36 | speed_profile | 08 | summary_results | mesh_summary_max_face_v | 0.357957 | 0.356926 | 0.373440 | 3 | GeoDataFrame | (37594, 5) | 37594.0 | 1.685190 | 577.227092 |
| 4 | balanced_profile | 09 | summary_results | mesh_summary_max_face_v | 0.360453 | 0.354792 | 0.362945 | 3 | GeoDataFrame | (37594, 5) | 37594.0 | 1.685190 | 568.167869 |
| 12 | baseline_p06_clone | 07 | summary_results | mesh_summary_max_face_v | 0.366227 | 0.365977 | 0.366264 | 3 | GeoDataFrame | (37594, 5) | 37594.0 | 1.685190 | 577.267754 |
| 20 | nas_profile | 11 | summary_results | mesh_summary_max_face_v | 0.375095 | 0.363708 | 0.458977 | 3 | GeoDataFrame | (37594, 5) | 37594.0 | 1.685190 | 566.245049 |
| 5 | balanced_profile | 09 | summary_results | mesh_summary_max_ws | 0.146122 | 0.145455 | 0.147120 | 3 | GeoDataFrame | (19597, 5) | 19597.0 | 0.878516 | 568.167869 |
| 37 | speed_profile | 08 | summary_results | mesh_summary_max_ws | 0.146333 | 0.142846 | 0.149747 | 3 | GeoDataFrame | (19597, 5) | 19597.0 | 0.878516 | 577.227092 |
| 13 | baseline_p06_clone | 07 | summary_results | mesh_summary_max_ws | 0.150272 | 0.141518 | 0.172093 | 3 | GeoDataFrame | (19597, 5) | 19597.0 | 0.878516 | 577.267754 |
| 29 | size_profile | 10 | summary_results | mesh_summary_max_ws | 0.151371 | 0.144827 | 0.170324 | 3 | GeoDataFrame | (19597, 5) | 19597.0 | 0.878516 | 566.233318 |
| 21 | nas_profile | 11 | summary_results | mesh_summary_max_ws | 0.164740 | 0.145888 | 0.176678 | 3 | GeoDataFrame | (19597, 5) | 19597.0 | 0.878516 | 566.245049 |
| 31 | size_profile | 10 | timeseries_results | timeseries_water_surface | 0.225420 | 0.221412 | 0.228806 | 3 | DataArray | (721, 19597) | 721.0 | 53.899525 | 566.233318 |
| 23 | nas_profile | 11 | timeseries_results | timeseries_water_surface | 0.228863 | 0.225944 | 0.423892 | 3 | DataArray | (721, 19597) | 721.0 | 53.899525 | 566.245049 |
| 7 | balanced_profile | 09 | timeseries_results | timeseries_water_surface | 0.232250 | 0.232088 | 0.237827 | 3 | DataArray | (721, 19597) | 721.0 | 53.899525 | 568.167869 |
| 39 | speed_profile | 08 | timeseries_results | timeseries_water_surface | 0.248271 | 0.239840 | 0.249627 | 3 | DataArray | (721, 19597) | 721.0 | 53.899525 | 577.227092 |
| 15 | baseline_p06_clone | 07 | timeseries_results | timeseries_water_surface | 0.253402 | 0.245701 | 0.257046 | 3 | DataArray | (721, 19597) | 721.0 | 53.899525 | 577.267754 |
Python
pivot = summary_df.pivot_table(
index=["category", "operation"],
columns="label",
values="median_elapsed_sec",
aggfunc="first",
)
pivot
| label | balanced_profile | baseline_p06_clone | nas_profile | size_profile | speed_profile | |
|---|---|---|---|---|---|---|
| category | operation | |||||
| mesh_geometry | mesh_area_names | 0.002525 | 0.002444 | 0.003406 | 0.002510 | 0.002571 |
| mesh_cell_faces | 0.322650 | 0.332694 | 0.322709 | 0.318710 | 0.320000 | |
| mesh_cell_points | 0.118080 | 0.122483 | 0.124376 | 0.113807 | 0.121883 | |
| mesh_cell_polygons | 0.868965 | 0.925853 | 0.953576 | 0.865397 | 0.871949 | |
| summary_results | mesh_summary_max_face_v | 0.360453 | 0.366227 | 0.375095 | 0.357380 | 0.357957 |
| mesh_summary_max_ws | 0.146122 | 0.150272 | 0.164740 | 0.151371 | 0.146333 | |
| timeseries_results | max_depth_from_timeseries | 0.004580 | 0.005335 | 0.004426 | 0.004455 | 0.004606 |
| timeseries_water_surface | 0.232250 | 0.253402 | 0.228863 | 0.225420 | 0.248271 |
Python
ranking_df = (
summary_df
.groupby(["label", "plan_number"], as_index=False)
.agg(
total_median_read_sec=("median_elapsed_sec", "sum"),
hdf_size_mb=("hdf_size_mb", "first"),
)
)
ranking_df["read_rank"] = ranking_df["total_median_read_sec"].rank(method="min")
ranking_df["size_rank"] = ranking_df["hdf_size_mb"].rank(method="min")
ranking_df["balanced_rank_score"] = ranking_df["read_rank"] + ranking_df["size_rank"]
ranking_df.sort_values(["balanced_rank_score", "total_median_read_sec", "hdf_size_mb"])
| label | plan_number | total_median_read_sec | hdf_size_mb | read_rank | size_rank | balanced_rank_score | |
|---|---|---|---|---|---|---|---|
| 3 | size_profile | 10 | 2.039050 | 566.233318 | 1.0 | 1.0 | 2.0 |
| 0 | balanced_profile | 09 | 2.055625 | 568.167869 | 2.0 | 3.0 | 5.0 |
| 4 | speed_profile | 08 | 2.073569 | 577.227092 | 3.0 | 4.0 | 7.0 |
| 2 | nas_profile | 11 | 2.177192 | 566.245049 | 5.0 | 2.0 | 7.0 |
| 1 | baseline_p06_clone | 07 | 2.158711 | 577.267754 | 4.0 | 5.0 | 9.0 |
Python
def inspect_hdf_datasets(hdf_path: Path):
records = []
meshes = HdfMesh.get_mesh_area_names(hdf_path)
with h5py.File(hdf_path, "r") as hdf:
for mesh_name in meshes:
candidate_paths = [
f"Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/{mesh_name}/Depth",
f"Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/2D Flow Areas/{mesh_name}/Water Surface",
f"Results/Unsteady/Output/Output Blocks/Base Output/Summary Output/2D Flow Areas/{mesh_name}/Maximum Water Surface",
f"Results/Unsteady/Output/Output Blocks/Base Output/Summary Output/2D Flow Areas/{mesh_name}/Maximum Face Velocity",
]
for dataset_path in candidate_paths:
if dataset_path not in hdf:
continue
item = hdf[dataset_path]
if isinstance(item, h5py.Dataset):
records.append({
"hdf_path": hdf_path,
"mesh_name": mesh_name,
"dataset": dataset_path.split("/")[-1],
"object_type": "dataset",
"shape": item.shape,
"dtype": str(item.dtype),
"chunks": item.chunks,
"compression": item.compression,
"compression_opts": item.compression_opts,
})
else:
records.append({
"hdf_path": hdf_path,
"mesh_name": mesh_name,
"dataset": dataset_path.split("/")[-1],
"object_type": "group",
"shape": None,
"dtype": None,
"chunks": None,
"compression": None,
"compression_opts": None,
})
return records
dataset_records = []
for _, hdf_row in available_hdfs.iterrows():
for record in inspect_hdf_datasets(Path(hdf_row["hdf_path"])):
record.update({
"label": hdf_row["label"],
"plan_number": hdf_row["plan_number"],
})
dataset_records.append(record)
dataset_layout_df = pd.DataFrame(dataset_records)
dataset_layout_df[["label", "plan_number", "mesh_name", "dataset", "shape", "chunks", "compression", "compression_opts"]]
Text Only
2026-04-24 14:03:35 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:35 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p07.hdf
2026-04-24 14:03:35 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:35 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p08.hdf
2026-04-24 14:03:35 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:35 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p09.hdf
2026-04-24 14:03:35 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:35 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p10.hdf
2026-04-24 14:03:35 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
2026-04-24 14:03:35 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: G:\GH\ras-commander\working\hdf_output_options_benchmark\BaldEagleCrkMulti2D\BaldEagleDamBrk.p11.hdf
| label | plan_number | mesh_name | dataset | shape | chunks | compression | compression_opts | |
|---|---|---|---|---|---|---|---|---|
| 0 | baseline_p06_clone | 07 | BaldEagleCr | Water Surface | (721, 19597) | (2, 19597) | gzip | 1 |
| 1 | baseline_p06_clone | 07 | BaldEagleCr | Maximum Water Surface | (2, 19597) | (2, 19597) | gzip | 1 |
| 2 | baseline_p06_clone | 07 | BaldEagleCr | Maximum Face Velocity | (2, 37594) | (1, 37594) | gzip | 1 |
| 3 | speed_profile | 08 | BaldEagleCr | Water Surface | (721, 19597) | (2, 19597) | gzip | 1 |
| 4 | speed_profile | 08 | BaldEagleCr | Maximum Water Surface | (2, 19597) | (2, 19597) | gzip | 1 |
| 5 | speed_profile | 08 | BaldEagleCr | Maximum Face Velocity | (2, 37594) | (1, 37594) | gzip | 1 |
| 6 | balanced_profile | 09 | BaldEagleCr | Water Surface | (721, 19597) | (2, 19597) | gzip | 4 |
| 7 | balanced_profile | 09 | BaldEagleCr | Maximum Water Surface | (2, 19597) | (2, 19597) | gzip | 4 |
| 8 | balanced_profile | 09 | BaldEagleCr | Maximum Face Velocity | (2, 37594) | (1, 37594) | gzip | 4 |
| 9 | size_profile | 10 | BaldEagleCr | Water Surface | (721, 19597) | (2, 19597) | gzip | 6 |
| 10 | size_profile | 10 | BaldEagleCr | Maximum Water Surface | (2, 19597) | (2, 19597) | gzip | 6 |
| 11 | size_profile | 10 | BaldEagleCr | Maximum Face Velocity | (2, 37594) | (1, 37594) | gzip | 6 |
| 12 | nas_profile | 11 | BaldEagleCr | Water Surface | (721, 19597) | (2, 19597) | gzip | 6 |
| 13 | nas_profile | 11 | BaldEagleCr | Maximum Water Surface | (2, 19597) | (2, 19597) | gzip | 6 |
| 14 | nas_profile | 11 | BaldEagleCr | Maximum Face Velocity | (2, 37594) | (1, 37594) | gzip | 6 |
Interpreting Results¶
- Use the operation pivot to see whether an HDF setting helps geometry reads, summary reads, or full time-series reads.
- Use the ranking table as a quick read-speed plus file-size score, not as a universal answer.
- Re-run the read benchmark after moving the same populated project to HDD, SSD, and NAS storage. OS cache can dominate short benchmarks, so compare medians over several repetitions and repeat on a quiet machine.
- If additional variables are enabled, only compare against runs where those same variables were enabled; otherwise file size and read timing are not like-for-like.