MRMS Precipitation QPE¶
Python
from datetime import datetime, timedelta
from pathlib import Path
import subprocess
import geopandas as gpd
from IPython.display import Video, display
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import rasterio
from shapely.geometry import box
from ras_commander import (
RasCmdr,
RasExamples,
RasPlan,
RasProcess,
RasUnsteady,
init_ras_project,
)
from ras_commander.hdf import HdfMesh, HdfProject, HdfPump, HdfResultsMesh
from ras_commander.precip import PrecipMrms
REPO_ROOT = Path.cwd()
if REPO_ROOT.name.lower() == "examples":
REPO_ROOT = REPO_ROOT.parent
RUN_ROOT = REPO_ROOT / "working" / "CLB-642" / "examples_917_mrms_qpe_revisions"
ARTIFACT_ROOT = Path("H:/Symphony/ras-commander/CLB-642/proof/mrms")
ARTIFACT_ROOT.mkdir(parents=True, exist_ok=True)
DSSVUE_JYTHON = Path("C:/Program Files/HEC/HEC-DSSVue/Jython.bat")
OUTPUT_INTERVAL = "5MIN"
FPS = 4
VIDEO_DPI = 110
DAVIS_BOUNDS = (
-121.78689244974507,
38.523870898941006,
-121.70713010751233,
38.591248584093314,
)
CASES = [
{
"case_id": "davis_atmospheric_river",
"display_name": "Davis atmospheric river",
"project": "Davis",
"suffix": "mrms_qpe_917_davis_ar",
"ras_version": "7.0",
"plan_number": "02",
"precip_boundary": "area2",
"event_start": datetime(2022, 12, 31, 0),
"event_last_qpe": datetime(2023, 1, 1, 12),
"sim_end": datetime(2023, 1, 1, 18),
"animation_start": datetime(2022, 12, 31, 0),
"animation_end": datetime(2023, 1, 1, 18),
"mrms_bounds": DAVIS_BOUNDS,
"dss_b": "DAVIS_AR",
"dss_f": "MRMS_AR_20221231",
"event_note": (
"29 Dec 2022 - 1 Jan 2023 Northern California atmospheric river; "
"CLB-672 selected this Davis-local MRMS window."
),
},
{
"case_id": "neworleans_april2024_flash_flood",
"display_name": "NewOrleansMetro April 2024 flash flood",
"project": "NewOrleansMetro",
"suffix": "mrms_qpe_917_nola_apr2024",
"ras_version": "7.0",
"plan_number": "01",
"precip_boundary": "NewOrleans Metro",
"event_start": datetime(2024, 4, 10, 0),
"event_last_qpe": datetime(2024, 4, 10, 23),
"sim_end": datetime(2024, 4, 11, 6),
"animation_start": datetime(2024, 4, 10, 0),
"animation_end": datetime(2024, 4, 11, 6),
"mrms_bounds": None,
"dss_b": "NOLA_APR10",
"dss_f": "MRMS_20240410",
"event_note": (
"NWS New Orleans/Baton Rouge documented the 10 Apr 2024 New Orleans "
"Metro severe thunderstorm and flash-flood event as a non-hurricane "
"rainfall case."
),
},
]
print(f"Run root: {RUN_ROOT}")
print(f"Persistent artifact root: {ARTIFACT_ROOT}")
print(f"HEC-DSSVue Jython: {DSSVUE_JYTHON}")
print(f"RAS output/mapping interval target: {OUTPUT_INTERVAL}")
Text Only
Run root: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions
Persistent artifact root: H:\Symphony\ras-commander\CLB-642\proof\mrms
HEC-DSSVue Jython: C:\Program Files\HEC\HEC-DSSVue\Jython.bat
RAS output/mapping interval target: 5MIN
Development Mode¶
Text Only
For local source testing, run this notebook from the repository root with `PYTHONPATH` pointed at the active workspace and the `symphony-dev` Conda environment active.
917 - MRMS QPE Rain-on-Grid Workflow¶
Text Only
This notebook demonstrates MRMS QPE acquisition, HEC-Vortex DSS conversion, HEC-RAS rain-on-grid simulation, 5-minute depth raster export, and MP4 visualization for two real non-synthetic cases:
- Davis, California: the CLB-672 atmospheric-river event from 2022-12-31 through 2023-01-01.
- NewOrleansMetro: the April 10, 2024 New Orleans Metro severe thunderstorm and flash-flood event.
Every spatial map and animation frame includes the 2D mesh outline, pump station labels where the model contains pumps, and OpenStreetMap basemap context.
Shared Helpers¶
Python
def catalog_dss_with_dssvue(dss_file: Path) -> list[str]:
if not DSSVUE_JYTHON.exists():
raise FileNotFoundError(f"HEC-DSSVue Jython not found: {DSSVUE_JYTHON}")
script_path = Path(dss_file).with_suffix(".catalog.py")
dss_posix = Path(dss_file).resolve().as_posix()
script_path.write_text(
"from hec.heclib.dss import HecDss\n"
f"dss = HecDss.open(r'{dss_posix}')\n"
"try:\n"
" catalog = dss.getCatalogedPathnames()\n"
" print('RAS_COMMANDER_DSS_CATALOG_BEGIN')\n"
" for idx in range(catalog.size()):\n"
" print(catalog.get(idx))\n"
" print('RAS_COMMANDER_DSS_CATALOG_END')\n"
"finally:\n"
" dss.done()\n",
encoding="ascii",
)
try:
result = subprocess.run(
[str(DSSVUE_JYTHON), str(script_path.resolve())],
capture_output=True,
text=True,
timeout=180,
check=True,
)
finally:
script_path.unlink(missing_ok=True)
lines = [line.strip() for line in result.stdout.splitlines()]
start = lines.index("RAS_COMMANDER_DSS_CATALOG_BEGIN") + 1
end = lines.index("RAS_COMMANDER_DSS_CATALOG_END")
return lines[start:end]
def get_plan_row(ras, plan_number: str) -> pd.Series:
plan = ras.plan_df[ras.plan_df["plan_number"].astype(str).str.zfill(2) == plan_number.zfill(2)]
if plan.empty:
raise ValueError(f"Plan {plan_number} not found. Available: {ras.plan_df['plan_number'].tolist()}")
return plan.iloc[0]
def get_geometry_hdf(ras, plan_number: str) -> Path:
plan_row = get_plan_row(ras, plan_number)
geom_number = str(plan_row["geometry_number"]).zfill(2)
geom_hdf = ras.project_folder / f"{ras.project_name}.g{geom_number}.hdf"
if not geom_hdf.exists():
raise FileNotFoundError(f"Geometry HDF not found: {geom_hdf}")
return geom_hdf
def get_unsteady_number(ras, plan_number: str) -> str:
plan_row = get_plan_row(ras, plan_number)
return str(plan_row["unsteady_number"]).zfill(2)
def get_terrain(ras) -> Path | None:
terrain_dir = ras.project_folder / "Terrain"
if not terrain_dir.exists():
return None
terrain_files = sorted(terrain_dir.glob("*.tif"))
return terrain_files[0] if terrain_files else None
def get_pump_stations(geom_hdf: Path, mesh_areas: gpd.GeoDataFrame) -> gpd.GeoDataFrame:
try:
pumps = HdfPump.get_pump_stations(geom_hdf)
except Exception:
return gpd.GeoDataFrame({"Name": []}, geometry=[], crs=mesh_areas.crs)
if pumps.empty and mesh_areas.crs is not None:
pumps = pumps.set_crs(mesh_areas.crs)
return pumps
def make_clip_shp(bounds: tuple[float, float, float, float], output_path: Path, label: str) -> Path:
output_path.parent.mkdir(parents=True, exist_ok=True)
gdf = gpd.GeoDataFrame({"name": [label]}, geometry=[box(*bounds)], crs="EPSG:4326")
gdf.to_file(output_path)
return output_path
def parse_ras_timestamp(timestamp: str) -> datetime:
return datetime.strptime(timestamp, "%d%b%Y %H:%M:%S")
def select_animation_timestamps(
timestamps: list[str],
start: datetime,
end: datetime,
) -> list[str]:
selected = [
timestamp
for timestamp in timestamps
if start <= parse_ras_timestamp(timestamp) <= end
]
if len(selected) < 2:
raise ValueError(f"Animation window {start} to {end} selected {len(selected)} timestamp(s)")
deltas = [
parse_ras_timestamp(selected[idx + 1]) - parse_ras_timestamp(selected[idx])
for idx in range(len(selected) - 1)
]
if any(delta != timedelta(minutes=5) for delta in deltas):
raise ValueError("Selected animation timestamps are not consecutive 5-minute frames")
return selected
def fill_missing_depth_rasters(
depth_results: dict[str, dict[str, list[Path]]],
output_dir: Path,
) -> dict[str, Path]:
depth_rasters_by_timestamp: dict[str, Path] = {}
missing_timestamps: list[str] = []
for timestamp, maps in depth_results.items():
if maps.get("depth"):
depth_rasters_by_timestamp[timestamp] = maps["depth"][0]
else:
missing_timestamps.append(timestamp)
if missing_timestamps:
if not depth_rasters_by_timestamp:
raise RuntimeError("No wet depth rasters were exported; cannot build animation frames")
template_path = next(iter(depth_rasters_by_timestamp.values()))
with rasterio.open(template_path) as template:
profile = template.profile.copy()
dry_frame = np.zeros((template.height, template.width), dtype=template.dtypes[0])
for timestamp in missing_timestamps:
safe_timestamp = timestamp.replace(":", " ").replace("/", "_")
dry_path = output_dir / f"Depth ({safe_timestamp}).dry.tif"
with rasterio.open(dry_path, "w", **profile) as dst:
dst.write(dry_frame, 1)
depth_rasters_by_timestamp[timestamp] = dry_path
return depth_rasters_by_timestamp
def summarize_depth_rasters(depth_rasters_by_timestamp: dict[str, Path]) -> pd.DataFrame:
rows = []
for timestamp, raster_path in depth_rasters_by_timestamp.items():
with rasterio.open(raster_path) as src:
data = src.read(1).astype(float)
if src.nodata is not None:
data[data == src.nodata] = np.nan
finite = data[np.isfinite(data)]
rows.append(
{
"timestamp": timestamp,
"raster": raster_path.name,
"wet_cells": int(np.count_nonzero(finite > 0)) if finite.size else 0,
"max_depth_ft": float(finite.max()) if finite.size else 0.0,
"mean_wet_depth_ft": float(np.nanmean(finite[finite > 0])) if np.any(finite > 0) else 0.0,
}
)
return pd.DataFrame(rows)
def plot_accumulation_map(
case: dict,
mrms_stack,
hyetograph: pd.DataFrame,
mesh_areas: gpd.GeoDataFrame,
pump_stations: gpd.GeoDataFrame,
):
accum_in = (mrms_stack.sum(dim="time") / 25.4).rename("MRMS accumulation")
extent, origin = PrecipMrms._data_extent(mrms_stack)
fig, axes = plt.subplots(1, 2, figsize=(12, 4.8), constrained_layout=True)
axes[0].bar(hyetograph["time"], hyetograph["incremental_depth"], width=0.035, color="#2b8cbe")
axes[0].plot(hyetograph["time"], hyetograph["cumulative_depth"], color="#08306b", marker="o")
axes[0].set_ylabel("Depth (in)")
axes[0].set_title(f"{case['display_name']} MRMS hyetograph")
axes[0].tick_params(axis="x", rotation=30)
im = axes[1].imshow(
accum_in.values,
extent=extent,
origin=origin,
cmap="turbo",
vmin=0,
alpha=0.78,
zorder=2,
)
axes[1].set_title("MRMS accumulation with model context")
axes[1].set_xlabel("Longitude")
axes[1].set_ylabel("Latitude")
PrecipMrms._plot_spatial_overlays(
axes[1],
data_crs="EPSG:4326",
mesh_boundary=mesh_areas,
pump_stations=pump_stations,
add_basemap=True,
)
fig.colorbar(im, ax=axes[1], shrink=0.8, label="Accumulation (in)")
plt.show()
def plot_depth_response(
case: dict,
depth_summary: pd.DataFrame,
depth_rasters_by_timestamp: dict[str, Path],
mesh_areas: gpd.GeoDataFrame,
pump_stations: gpd.GeoDataFrame,
):
max_depth = None
max_extent = None
max_crs = None
for raster_path in depth_rasters_by_timestamp.values():
with rasterio.open(raster_path) as src:
data = src.read(1).astype(float)
if src.nodata is not None:
data[data == src.nodata] = np.nan
bounds = src.bounds
max_extent = (bounds.left, bounds.right, bounds.bottom, bounds.top)
max_crs = src.crs.to_string() if src.crs else None
max_depth = data if max_depth is None else np.fmax(max_depth, data)
fig, axes = plt.subplots(1, 2, figsize=(12, 4.8), constrained_layout=True)
axes[0].plot(
[parse_ras_timestamp(value) for value in depth_summary["timestamp"]],
depth_summary["max_depth_ft"],
color="#08519c",
marker="o",
)
axes[0].set_title(f"{case['display_name']} 5-minute depth response")
axes[0].set_ylabel("Max timestep depth (ft)")
axes[0].tick_params(axis="x", rotation=30)
vmax = max(float(np.nanpercentile(max_depth, 98)), 0.1)
im = axes[1].imshow(
max_depth,
extent=max_extent,
origin="upper",
cmap="Blues",
vmin=0,
vmax=vmax,
alpha=0.78,
zorder=2,
)
axes[1].set_title("Maximum 5-minute depth with model context")
axes[1].set_aspect("equal", adjustable="box")
PrecipMrms._plot_spatial_overlays(
axes[1],
data_crs=max_crs,
mesh_boundary=mesh_areas,
pump_stations=pump_stations,
add_basemap=True,
)
fig.colorbar(im, ax=axes[1], shrink=0.8, label="Depth (ft)")
plt.show()
def fresh_artifact_path(path: Path) -> Path:
path = Path(path)
path.parent.mkdir(parents=True, exist_ok=True)
path.unlink(missing_ok=True)
return path
def max_depth_grid_from_rasters(depth_rasters_by_timestamp: dict[str, Path]):
max_depth = None
max_extent = None
max_crs = None
for raster_path in depth_rasters_by_timestamp.values():
with rasterio.open(raster_path) as src:
data = src.read(1).astype(float)
if src.nodata is not None:
data[data == src.nodata] = np.nan
bounds = src.bounds
max_extent = (bounds.left, bounds.right, bounds.bottom, bounds.top)
max_crs = src.crs.to_string() if src.crs else None
max_depth = data if max_depth is None else np.fmax(max_depth, data)
return max_depth, max_extent, max_crs
def build_reference_response(plan_hdf: Path, geom_hdf: Path, mesh_name: str):
depth_da = HdfResultsMesh.get_mesh_timeseries(plan_hdf, mesh_name, "Cell Hydraulic Depth", truncate=False)
wse_da = HdfResultsMesh.get_mesh_timeseries(plan_hdf, mesh_name, "Water Surface", truncate=False)
precip_da = HdfResultsMesh.get_mesh_timeseries(plan_hdf, mesh_name, "Cell Precipitation Rate", truncate=False)
depth_values = np.asarray(depth_da.values, dtype=float)
peak_by_cell = np.nanmax(depth_values, axis=0)
if not np.isfinite(peak_by_cell).any():
raise RuntimeError(f"No finite depth values found for mesh {mesh_name}")
reference_idx = int(np.nanargmax(peak_by_cell))
reference_cell_id = int(depth_da.coords["cell_id"].values[reference_idx])
reference_response = pd.DataFrame(
{
"time": pd.to_datetime(depth_da.coords["time"].values),
"depth_ft": depth_values[:, reference_idx],
"wse_ft": np.asarray(wse_da.sel(cell_id=reference_cell_id).values, dtype=float),
"precip_in_hr": np.asarray(precip_da.sel(cell_id=reference_cell_id).values, dtype=float),
}
)
reference_response.attrs["mesh_name"] = mesh_name
reference_response.attrs["cell_id"] = reference_cell_id
cell_points = HdfMesh.get_mesh_cell_points(geom_hdf)
reference_point = cell_points[
(cell_points["mesh_name"] == mesh_name) & (cell_points["cell_id"] == reference_cell_id)
].copy()
return reference_response, reference_point, reference_cell_id
def plot_reference_response(
case: dict,
hyetograph: pd.DataFrame,
reference_response: pd.DataFrame,
reference_point: gpd.GeoDataFrame,
depth_rasters_by_timestamp: dict[str, Path],
mesh_areas: gpd.GeoDataFrame,
pump_stations: gpd.GeoDataFrame,
):
max_depth, max_extent, max_crs = max_depth_grid_from_rasters(depth_rasters_by_timestamp)
cell_id = reference_response.attrs["cell_id"]
mesh_name = reference_response.attrs["mesh_name"]
fig = plt.figure(figsize=(13, 7), constrained_layout=True)
grid = fig.add_gridspec(2, 2, width_ratios=[1.25, 1.0])
ax_precip = fig.add_subplot(grid[0, 0])
ax_hydro = fig.add_subplot(grid[1, 0], sharex=ax_precip)
ax_map = fig.add_subplot(grid[:, 1])
ax_precip.bar(
hyetograph["time"],
hyetograph["incremental_depth"],
width=0.035,
color="#2b8cbe",
label="Spatial mean MRMS",
)
ax_precip.set_ylabel("Incremental depth (in)")
ax_precip.set_title(f"{case['display_name']} rainfall input")
ax_precip.legend(loc="upper right")
ax_hydro.plot(reference_response["time"], reference_response["depth_ft"], color="#08519c", label="Depth")
ax_hydro.set_ylabel("Depth (ft)", color="#08519c")
ax_hydro.tick_params(axis="y", labelcolor="#08519c")
ax_hydro.tick_params(axis="x", rotation=30)
ax_hydro_wse = ax_hydro.twinx()
ax_hydro_wse.plot(reference_response["time"], reference_response["wse_ft"], color="#238b45", label="WSE")
ax_hydro_wse.set_ylabel("WSE (ft)", color="#238b45")
ax_hydro_wse.tick_params(axis="y", labelcolor="#238b45")
ax_hydro.set_title(f"Reference cell {cell_id} hydrograph ({mesh_name})")
vmax = max(float(np.nanpercentile(max_depth, 98)), 0.1)
im = ax_map.imshow(
max_depth,
extent=max_extent,
origin="upper",
cmap="Blues",
vmin=0,
vmax=vmax,
alpha=0.78,
zorder=2,
)
ax_map.set_title("Reference location on max depth map")
ax_map.set_aspect("equal", adjustable="box")
PrecipMrms._plot_spatial_overlays(
ax_map,
data_crs=max_crs,
mesh_boundary=mesh_areas,
pump_stations=pump_stations,
add_basemap=True,
)
if not reference_point.empty:
plot_point = reference_point.to_crs(max_crs) if max_crs and reference_point.crs else reference_point
plot_point.plot(ax=ax_map, marker="*", color="#ffea00", edgecolor="black", markersize=160, zorder=8)
fig.colorbar(im, ax=ax_map, shrink=0.8, label="Depth (ft)")
plt.show()
def get_pump_operation(plan_hdf: Path, pump_stations: gpd.GeoDataFrame) -> dict[str, pd.DataFrame]:
operations: dict[str, pd.DataFrame] = {}
if pump_stations.empty or "Name" not in pump_stations.columns:
return operations
for station_name in pump_stations["Name"].dropna().astype(str):
try:
pump_da = HdfPump.get_pump_station_timeseries(plan_hdf, pump_station=station_name)
except Exception as exc:
print(f"Pump operation unavailable for {station_name}: {exc}")
continue
frame = pd.DataFrame(
np.asarray(pump_da.values, dtype=float),
columns=[str(value) for value in pump_da.coords["variable"].values],
)
frame.insert(0, "time", pd.to_datetime(pump_da.coords["time"].values))
frame.attrs["unit_by_variable"] = pump_da.attrs.get("unit_by_variable", {})
operations[station_name] = frame
return operations
def plot_pump_operation(case: dict, pump_operation: dict[str, pd.DataFrame]) -> pd.DataFrame:
if not pump_operation:
print(f"No pump operation time series available for {case['display_name']}")
return pd.DataFrame()
fig, axes = plt.subplots(
len(pump_operation),
2,
figsize=(13, 3.5 * len(pump_operation)),
squeeze=False,
constrained_layout=True,
)
summary_rows = []
for row_idx, (station_name, frame) in enumerate(pump_operation.items()):
flow_cols = [
column
for column in frame.columns
if column == "Flow" or column == "Pump Station" or column.endswith(" Flow")
]
on_cols = [column for column in frame.columns if column == "Pumps on" or column.endswith("Pumps on")]
ax_flow = axes[row_idx, 0]
for column in flow_cols:
ax_flow.plot(frame["time"], frame[column], label=column)
ax_flow.set_title(f"{station_name} pump flow")
ax_flow.set_ylabel("Flow (cfs)")
ax_flow.tick_params(axis="x", rotation=30)
ax_flow.legend(loc="upper left", fontsize=8)
ax_on = axes[row_idx, 1]
for column in on_cols:
ax_on.step(frame["time"], frame[column], where="post", label=column)
ax_on.set_title(f"{station_name} pump activation")
ax_on.set_ylabel("Pumps on")
ax_on.tick_params(axis="x", rotation=30)
ax_on.legend(loc="upper left", fontsize=8)
total_pumps_on = frame[on_cols].sum(axis=1) if on_cols else pd.Series(0, index=frame.index)
active = frame.loc[total_pumps_on > 0, "time"]
summary_rows.append(
{
"station": station_name,
"peak_total_flow_cfs": float(frame["Flow"].max()) if "Flow" in frame else np.nan,
"max_pumps_on": float(total_pumps_on.max()) if len(total_pumps_on) else 0.0,
"first_on": active.iloc[0] if not active.empty else pd.NaT,
"last_on": active.iloc[-1] if not active.empty else pd.NaT,
}
)
fig.suptitle(f"Pump operation during {case['display_name']}")
plt.show()
return pd.DataFrame(summary_rows)
def display_case_videos(case: dict, videos: list[tuple[str, Path]]) -> None:
print(f"Embedded MP4 animations generated by this notebook for {case['display_name']}:")
for label, path in videos:
path = Path(path)
assert path.exists() and path.stat().st_size > 0
print(f"{label}: {path.name} ({path.stat().st_size:,} bytes)")
display(Video(str(path), embed=True, width=860, html_attributes="controls muted loop"))
Case Runner¶
Python
def run_mrms_case(case: dict) -> dict:
print("=" * 88)
print(case["display_name"])
print(case["event_note"])
project_path = RasExamples.extract_project(
case["project"],
output_path=RUN_ROOT,
suffix=case["suffix"],
)
ras = init_ras_project(
project_path,
ras_version=case["ras_version"],
load_results_summary=False,
)
plan_number = case["plan_number"]
unsteady_number = get_unsteady_number(ras, plan_number)
geom_hdf = get_geometry_hdf(ras, plan_number)
terrain_tif = get_terrain(ras)
mesh_areas = HdfMesh.get_mesh_areas(geom_hdf)
pump_stations = get_pump_stations(geom_hdf, mesh_areas)
project_bounds = tuple(
float(value)
for value in HdfProject.get_project_bounds_latlon(
geom_hdf,
buffer_percent=25.0,
)
)
bounds = case["mrms_bounds"] or project_bounds
print(f"Project folder: {ras.project_folder}")
print(f"Plan: {plan_number}; unsteady file: {unsteady_number}; geometry HDF: {geom_hdf.name}")
print(f"Mesh areas: {mesh_areas['mesh_name'].tolist()}")
print(f"Pump stations: {pump_stations['Name'].tolist() if 'Name' in pump_stations else len(pump_stations)}")
print(f"Project WGS84 bounds: {project_bounds}")
print(f"MRMS download bounds: {bounds}")
precip_root = ras.project_folder / "Precipitation" / case["case_id"]
precip_root.mkdir(parents=True, exist_ok=True)
clip_shp = make_clip_shp(bounds, precip_root / f"{case['case_id']}_bounds.shp", case["display_name"])
catalog = PrecipMrms.catalog(
bounds=bounds,
start_date=case["event_start"],
end_date=case["event_last_qpe"],
source="noaa_s3",
)
expected_files = int((case["event_last_qpe"] - case["event_start"]).total_seconds() // 3600) + 1
assert len(catalog) >= expected_files, f"Expected at least {expected_files} MRMS files, found {len(catalog)}"
display(catalog[["valid_time", "product", "archive_product", "filename", "size_bytes", "compressed"]])
mrms_files = PrecipMrms.download(
bounds=bounds,
start_time=case["event_start"],
end_time=case["event_last_qpe"],
output_dir=precip_root / "grib2",
source="noaa_s3",
)
assert len(mrms_files) >= expected_files
print(f"Downloaded {len(mrms_files)} MRMS GRIB2 files")
mrms_dss = PrecipMrms.to_dss(
mrms_files,
precip_root / f"{case['case_id']}_mrms_qpe.dss",
clip_shp=clip_shp,
dss_parts={"B": case["dss_b"], "F": case["dss_f"]},
timeout=1800,
)
assert mrms_dss.exists() and mrms_dss.stat().st_size > 0
dss_catalog = catalog_dss_with_dssvue(mrms_dss)
assert dss_catalog, "DSS catalog is empty"
display(pd.DataFrame({"pathname": dss_catalog}))
mrms_stack = PrecipMrms.load_grib2_stack(mrms_files, bounds=bounds)
hyetograph = PrecipMrms.to_hyetograph(mrms_stack)
display(hyetograph)
print(f"MRMS stack shape: {mrms_stack.shape}")
print(f"Spatial-mean event depth: {hyetograph['cumulative_depth'].iloc[-1]:.3f} inches")
plot_accumulation_map(case, mrms_stack, hyetograph, mesh_areas, pump_stations)
RasUnsteady.set_precipitation_hyetograph(
unsteady_number,
hyetograph,
boundary_name=case["precip_boundary"],
ras_object=ras,
)
RasPlan.update_simulation_date(
plan_number,
case["event_start"],
case["sim_end"],
ras_object=ras,
)
RasPlan.update_plan_intervals(
plan_number,
output_interval=OUTPUT_INTERVAL,
instantaneous_interval=OUTPUT_INTERVAL,
mapping_interval=OUTPUT_INTERVAL,
ras_object=ras,
)
print(f"Updated precipitation boundary: {case['precip_boundary']}")
print(f"Simulation window: {case['event_start']} to {case['sim_end']}")
for key in ["Output Interval", "Instantaneous Interval", "Mapping Interval"]:
print(f"{key}: {RasPlan.get_plan_value(plan_number, key, ras_object=ras)}")
compute_result = RasCmdr.compute_plan(
plan_number,
ras_object=ras,
force_rerun=True,
verify=True,
use_optimal_hdf_settings=True,
hdf_output_variables=[
"Cell Hydraulic Depth",
"Cell Invert Depth (WSE - Cell Min Elev)",
"Cell Precipitation Rate",
],
)
assert bool(compute_result), f"HEC-RAS compute failed for {case['display_name']}"
plan_hdf = ras.project_folder / f"{ras.project_name}.p{plan_number}.hdf"
timestamps = RasProcess.get_plan_timestamps(plan_number, ras_object=ras)
assert timestamps, "No HEC-RAS output timesteps found"
animation_timestamps = select_animation_timestamps(
timestamps,
case["animation_start"],
case["animation_end"],
)
print(f"Compute success: {bool(compute_result)}")
print(f"Plan HDF: {plan_hdf}")
print(f"Total output timesteps: {len(timestamps)}")
print(f"5-minute animation timesteps: {len(animation_timestamps)}")
print(f"Animation window: {animation_timestamps[0]} to {animation_timestamps[-1]}")
depth_frame_dir = (ras.project_folder / "StoredDepthFrames" / case["case_id"]).resolve()
depth_results = RasProcess.store_maps_at_timesteps(
plan_number,
output_path=depth_frame_dir,
timesteps=animation_timestamps,
depth=True,
wse=False,
velocity=False,
fix_georef=True,
ras_object=ras,
timeout=600,
)
try:
depth_rasters_by_timestamp = fill_missing_depth_rasters(depth_results, depth_frame_dir)
except RuntimeError as exc:
print(f"RAS Mapper stored-map export did not yield depth GeoTIFFs: {exc}")
print("Generating HDF-derived depth rasters from computed plan results for the same 5-minute timesteps.")
depth_rasters_by_timestamp = HdfResultsMesh.export_depth_rasters_at_times(
plan_hdf,
animation_timestamps,
depth_frame_dir,
mesh_name=case["precip_boundary"],
geom_hdf_path=geom_hdf,
max_dimension=600,
method="nearest",
)
depth_rasters = [depth_rasters_by_timestamp[timestamp] for timestamp in animation_timestamps]
depth_times = [parse_ras_timestamp(timestamp) for timestamp in animation_timestamps]
depth_summary = summarize_depth_rasters(depth_rasters_by_timestamp)
display(depth_summary)
print(f"Exported {len(depth_rasters)} 5-minute depth rasters to {depth_frame_dir}")
precip_video = PrecipMrms.animate_precipitation(
mrms_stack,
fresh_artifact_path(ARTIFACT_ROOT / f"mrms_precipitation_{case['case_id']}.mp4"),
bounds=bounds,
mesh_boundary=mesh_areas,
pump_stations=pump_stations,
add_basemap=True,
crs="EPSG:4326",
units="in/hr",
fps=FPS,
dpi=VIDEO_DPI,
title=f"MRMS QPE - {case['display_name']}",
)
flood_video = PrecipMrms.animate_flood_inundation_from_rasters(
depth_rasters,
fresh_artifact_path(ARTIFACT_ROOT / f"flood_inundation_depth_{case['case_id']}_5min.mp4"),
times=depth_times,
terrain=terrain_tif,
mesh_boundary=mesh_areas,
pump_stations=pump_stations,
add_basemap=True,
units="ft",
fps=FPS,
dpi=VIDEO_DPI,
title=f"5-minute flood inundation - {case['display_name']}",
)
combined_video = PrecipMrms.animate_combined(
mrms_stack,
depth_rasters,
fresh_artifact_path(ARTIFACT_ROOT / f"combined_precip_flood_{case['case_id']}_5min.mp4"),
precip_bounds=bounds,
flood_times=depth_times,
mesh_boundary=mesh_areas,
pump_stations=pump_stations,
add_basemap=True,
precip_crs="EPSG:4326",
fps=FPS,
dpi=VIDEO_DPI,
title=f"MRMS precipitation and 5-minute flood response - {case['display_name']}",
max_frames=None,
)
videos = [
("Precipitation only", precip_video),
("Flood inundation only", flood_video),
("Combined precipitation and flood", combined_video),
]
for _, path in videos:
assert path.exists() and path.stat().st_size > 0
print(f"Video: {path} ({path.stat().st_size:,} bytes)")
plot_depth_response(case, depth_summary, depth_rasters_by_timestamp, mesh_areas, pump_stations)
reference_response, reference_point, reference_cell_id = build_reference_response(
plan_hdf,
geom_hdf,
case["precip_boundary"],
)
reference_summary = pd.DataFrame(
[
{
"case": case["case_id"],
"mesh_name": case["precip_boundary"],
"reference_cell_id": reference_cell_id,
"peak_reference_depth_ft": float(reference_response["depth_ft"].max()),
"peak_reference_wse_ft": float(reference_response["wse_ft"].max()),
"peak_reference_precip_in_hr": float(reference_response["precip_in_hr"].max()),
}
]
)
display(reference_summary)
plot_reference_response(
case,
hyetograph,
reference_response,
reference_point,
depth_rasters_by_timestamp,
mesh_areas,
pump_stations,
)
pump_operation = get_pump_operation(plan_hdf, pump_stations)
pump_summary = plot_pump_operation(case, pump_operation)
if not pump_summary.empty:
display(pump_summary)
display_case_videos(case, videos)
return {
"case": case["case_id"],
"project_folder": ras.project_folder,
"plan_hdf": plan_hdf,
"mrms_dss": mrms_dss,
"mrms_files": mrms_files,
"depth_rasters": depth_rasters,
"depth_summary": depth_summary,
"reference_cell_id": reference_cell_id,
"reference_response": reference_response,
"pump_operation": pump_operation,
"pump_summary": pump_summary,
"videos": [path for _, path in videos],
"mesh_count": len(mesh_areas),
"pump_count": len(pump_stations),
"total_output_timesteps": len(timestamps),
"animation_timesteps": len(animation_timestamps),
}
Execute Davis And NewOrleans MRMS Workflows¶
Text Only
2026-05-10 16:30:14 - ras_commander.RasExamples - INFO - Found zip file: C:\Users\billk_clb\AppData\Local\ras-commander\examples\Example_Projects_7_0.zip
2026-05-10 16:30:14 - ras_commander.RasExamples - INFO - Loading project data from CSV...
2026-05-10 16:30:14 - ras_commander.RasExamples - INFO - Loaded 67 projects from CSV.
2026-05-10 16:30:14 - ras_commander.RasExamples - INFO - ----- RasExamples Extracting Project -----
2026-05-10 16:30:14 - ras_commander.RasExamples - INFO - Extracting project 'Davis' as 'Davis_mrms_qpe_917_davis_ar'
2026-05-10 16:30:14 - ras_commander.RasExamples - INFO - Folder 'Davis_mrms_qpe_917_davis_ar' already exists. Deleting existing folder...
========================================================================================
Davis atmospheric river
29 Dec 2022 - 1 Jan 2023 Northern California atmospheric river; CLB-672 selected this Davis-local MRMS window.
2026-05-10 16:30:14 - ras_commander.RasExamples - INFO - Existing folder 'Davis_mrms_qpe_917_davis_ar' has been deleted.
2026-05-10 16:30:14 - ras_commander.RasExamples - INFO - Successfully extracted project 'Davis' to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar
2026-05-10 16:30:14 - 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-05-10 16:30:14 - 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-05-10 16:30:14 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.7 Beta 4 at C:\Program Files (x86)\HEC\HEC-RAS\6.7 Beta 4\Ras.exe via filesystem (x86)
2026-05-10 16:30:14 - 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-05-10 16:30:14 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.4.1 at C:\Program Files (x86)\HEC\HEC-RAS\6.4.1\Ras.exe via filesystem (x86)
2026-05-10 16:30:14 - 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-05-10 16:30:14 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 6.3 at C:\Program Files (x86)\HEC\HEC-RAS\6.3\Ras.exe via filesystem (x86)
2026-05-10 16:30:14 - 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-05-10 16:30:14 - 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-05-10 16:30:14 - 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-05-10 16:30:14 - 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-05-10 16:30:14 - 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-05-10 16:30:14 - 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-05-10 16:30:14 - 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-05-10 16:30:14 - 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-05-10 16:30:14 - 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-05-10 16:30:14 - 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-05-10 16:30:14 - 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-05-10 16:30:14 - ras_commander.RasUtils - INFO - Discovered HEC-RAS 4.0 at C:\Program Files (x86)\HEC\HEC-RAS\4.0\Ras.exe via filesystem (x86)
2026-05-10 16:30:14 - 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-05-10 16:30:14 - ras_commander.RasUtils - INFO - Discovered 20 installed HEC-RAS version(s)
2026-05-10 16:30:14 - ras_commander.RasPrj - INFO - HEC-RAS 7.0 found via version discovery: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-05-10 16:30:15 - ras_commander.RasMap - INFO - Successfully parsed RASMapper file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.rasmap
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Found projection in projection file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\GIS\2871.prj
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2871 from projection file 2871.prj
2026-05-10 16:30:15 - ras_commander.RasPrj - INFO - ras-commander v0.96.2 | 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-05-10 16:30:15 - ras_commander.RasPrj - INFO - Project initialized: DavisStormSystem | Folder: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar
2026-05-10 16:30:15 - ras_commander.RasPrj - INFO - Using HEC-RAS executable: C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe
2026-05-10 16:30:15 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Found projection in projection file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\GIS\2871.prj
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2871 from projection file 2871.prj
2026-05-10 16:30:15 - ras_commander.hdf.HdfPump - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfPump - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Found projection in projection file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\GIS\2871.prj
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2871 from projection file 2871.prj
2026-05-10 16:30:15 - ras_commander.hdf.HdfProject - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfProject - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfProject - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfProject - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Found projection in projection file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\GIS\2871.prj
2026-05-10 16:30:15 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2871 from projection file 2871.prj
2026-05-10 16:30:15 - ras_commander.hdf.HdfProject - INFO - Found 2 2D flow areas
2026-05-10 16:30:15 - ras_commander.hdf.HdfXsec - ERROR - Error processing cross-section data: 'Unable to synchronously open object (component not found)'
2026-05-10 16:30:15 - ras_commander.hdf.HdfXsec - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfXsec - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:30:15 - ras_commander.hdf.HdfXsec - WARNING - No river centerlines found in geometry file
2026-05-10 16:30:15 - ras_commander.hdf.HdfProject - INFO - Original extent: (6628341.54, 1960003.24, 6639684.19, 1969942.11)
2026-05-10 16:30:15 - ras_commander.hdf.HdfProject - INFO - Buffered extent (25.0% x, 25.0% y): (6626923.71, 1958760.89, 6641102.02, 1971184.47)
2026-05-10 16:30:15 - ras_commander.hdf.HdfProject - INFO - WGS84 bounds: W=-121.771861, S=38.540448, E=-121.722158, N=38.574670
2026-05-10 16:30:15 - pyogrio._io - INFO - Created 1 records
Project folder: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar
Plan: 02; unsteady file: 01; geometry HDF: DavisStormSystem.g02.hdf
Mesh areas: ['area2', 'DS Channel']
Pump stations: ['Pump Station #1']
Project WGS84 bounds: (-121.7718606110938, 38.540447736804595, -121.722157682733, 38.57466984260735)
MRMS download bounds: (-121.78689244974507, 38.523870898941006, -121.70713010751233, 38.591248584093314)
| valid_time | product | archive_product | filename | size_bytes | compressed | |
|---|---|---|---|---|---|---|
| 0 | 2022-12-31 00:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 843024 | True |
| 1 | 2022-12-31 01:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 854918 | True |
| 2 | 2022-12-31 02:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 838970 | True |
| 3 | 2022-12-31 03:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 855075 | True |
| 4 | 2022-12-31 04:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 793804 | True |
| 5 | 2022-12-31 05:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 759373 | True |
| 6 | 2022-12-31 06:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 742601 | True |
| 7 | 2022-12-31 07:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 713023 | True |
| 8 | 2022-12-31 08:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 734918 | True |
| 9 | 2022-12-31 09:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 760683 | True |
| 10 | 2022-12-31 10:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 737764 | True |
| 11 | 2022-12-31 11:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 746408 | True |
| 12 | 2022-12-31 12:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 768196 | True |
| 13 | 2022-12-31 13:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 736898 | True |
| 14 | 2022-12-31 14:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 723393 | True |
| 15 | 2022-12-31 15:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 732007 | True |
| 16 | 2022-12-31 16:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 737534 | True |
| 17 | 2022-12-31 17:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 754130 | True |
| 18 | 2022-12-31 18:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 753488 | True |
| 19 | 2022-12-31 19:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 765687 | True |
| 20 | 2022-12-31 20:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 770647 | True |
| 21 | 2022-12-31 21:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 770576 | True |
| 22 | 2022-12-31 22:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 748309 | True |
| 23 | 2022-12-31 23:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-... | 751608 | True |
| 24 | 2023-01-01 00:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-... | 746562 | True |
| 25 | 2023-01-01 01:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-... | 747281 | True |
| 26 | 2023-01-01 02:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-... | 774690 | True |
| 27 | 2023-01-01 03:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-... | 751489 | True |
| 28 | 2023-01-01 04:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-... | 748613 | True |
| 29 | 2023-01-01 05:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-... | 733663 | True |
| 30 | 2023-01-01 06:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-... | 729889 | True |
| 31 | 2023-01-01 07:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-... | 734522 | True |
| 32 | 2023-01-01 08:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-... | 736274 | True |
| 33 | 2023-01-01 09:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-... | 715563 | True |
| 34 | 2023-01-01 10:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-... | 718022 | True |
| 35 | 2023-01-01 11:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-... | 685183 | True |
| 36 | 2023-01-01 12:00:00 | GaugeCorr_QPE_01H | MultiSensor_QPE_01H_Pass2_00.00 | MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-... | 672271 | True |
Text Only
2026-05-10 16:30:15 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-000000.grib2.gz
2026-05-10 16:30:15 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-010000.grib2.gz
2026-05-10 16:30:16 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-020000.grib2.gz
2026-05-10 16:30:16 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-030000.grib2.gz
2026-05-10 16:30:16 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-040000.grib2.gz
2026-05-10 16:30:16 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-050000.grib2.gz
2026-05-10 16:30:17 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-060000.grib2.gz
2026-05-10 16:30:17 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-070000.grib2.gz
2026-05-10 16:30:17 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-080000.grib2.gz
2026-05-10 16:30:17 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-090000.grib2.gz
2026-05-10 16:30:17 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-100000.grib2.gz
2026-05-10 16:30:18 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-110000.grib2.gz
2026-05-10 16:30:18 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-120000.grib2.gz
2026-05-10 16:30:18 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-130000.grib2.gz
2026-05-10 16:30:18 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-140000.grib2.gz
2026-05-10 16:30:18 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-150000.grib2.gz
2026-05-10 16:30:19 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-160000.grib2.gz
2026-05-10 16:30:19 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-170000.grib2.gz
2026-05-10 16:30:19 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-180000.grib2.gz
2026-05-10 16:30:19 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-190000.grib2.gz
2026-05-10 16:30:19 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-200000.grib2.gz
2026-05-10 16:30:20 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-210000.grib2.gz
2026-05-10 16:30:20 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-220000.grib2.gz
2026-05-10 16:30:20 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20221231-230000.grib2.gz
2026-05-10 16:30:20 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-000000.grib2.gz
2026-05-10 16:30:21 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-010000.grib2.gz
2026-05-10 16:30:21 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-020000.grib2.gz
2026-05-10 16:30:21 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-030000.grib2.gz
2026-05-10 16:30:21 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-040000.grib2.gz
2026-05-10 16:30:21 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-050000.grib2.gz
2026-05-10 16:30:22 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-060000.grib2.gz
2026-05-10 16:30:22 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-070000.grib2.gz
2026-05-10 16:30:22 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-080000.grib2.gz
2026-05-10 16:30:22 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-090000.grib2.gz
2026-05-10 16:30:22 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-100000.grib2.gz
2026-05-10 16:30:23 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-110000.grib2.gz
2026-05-10 16:30:23 - ras_commander.precip.PrecipMrms - INFO - Downloading MRMS: MRMS_MultiSensor_QPE_01H_Pass2_00.00_20230101-120000.grib2.gz
2026-05-10 16:30:23 - ras_commander.precip.PrecipMrms - INFO - Converting 37 MRMS GRIB2 file(s) to DSS via HEC-Vortex: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Precipitation\davis_atmospheric_river\davis_atmospheric_river_mrms_qpe.dss
2026-05-10 16:30:23 - ras_commander.precip.VortexCli - INFO - Found HEC-Vortex 0.13.3 at: C:\Program Files\HEC\HEC-Vortex\0.13.3
2026-05-10 16:30:23 - ras_commander.precip.VortexCli - INFO - Importing 37 file(s) to DSS via HEC-Vortex: davis_atmospheric_river_mrms_qpe.dss
Downloaded 37 MRMS GRIB2 files
2026-05-10 16:30:34 - ras_commander.precip.VortexCli - INFO - DSS file created: davis_atmospheric_river_mrms_qpe.dss (215.4 KB)
| pathname | |
|---|---|
| 0 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:1400/31D... |
| 1 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:2200/31D... |
| 2 | /SHG/DAVIS_AR/PRECIPITATION/01JAN2023:0800/01J... |
| 3 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:1900/31D... |
| 4 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:1000/31D... |
| 5 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:0400/31D... |
| 6 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:0100/31D... |
| 7 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:1300/31D... |
| 8 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:1600/31D... |
| 9 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:2000/31D... |
| 10 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:0300/31D... |
| 11 | /SHG/DAVIS_AR/PRECIPITATION/01JAN2023:0700/01J... |
| 12 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:2100/31D... |
| 13 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:1100/31D... |
| 14 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:0200/31D... |
| 15 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:1200/31D... |
| 16 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:1800/31D... |
| 17 | /SHG/DAVIS_AR/PRECIPITATION/01JAN2023:0000/01J... |
| 18 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:0000/31D... |
| 19 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:1500/31D... |
| 20 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:0800/31D... |
| 21 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:0600/31D... |
| 22 | /SHG/DAVIS_AR/PRECIPITATION/01JAN2023:1000/01J... |
| 23 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:0900/31D... |
| 24 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:1700/31D... |
| 25 | /SHG/DAVIS_AR/PRECIPITATION/01JAN2023:0100/01J... |
| 26 | /SHG/DAVIS_AR/PRECIPITATION/30DEC2022:2300/30D... |
| 27 | /SHG/DAVIS_AR/PRECIPITATION/01JAN2023:0400/01J... |
| 28 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:0700/31D... |
| 29 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:0500/31D... |
| 30 | /SHG/DAVIS_AR/PRECIPITATION/01JAN2023:1100/01J... |
| 31 | /SHG/DAVIS_AR/PRECIPITATION/31DEC2022:2300/31D... |
| 32 | /SHG/DAVIS_AR/PRECIPITATION/01JAN2023:0900/01J... |
| 33 | /SHG/DAVIS_AR/PRECIPITATION/01JAN2023:0300/01J... |
| 34 | /SHG/DAVIS_AR/PRECIPITATION/01JAN2023:0600/01J... |
| 35 | /SHG/DAVIS_AR/PRECIPITATION/01JAN2023:0500/01J... |
| 36 | /SHG/DAVIS_AR/PRECIPITATION/01JAN2023:0200/01J... |
| time | hour | incremental_depth | cumulative_depth | |
|---|---|---|---|---|
| 0 | 2022-12-31 00:00:00 | 1.0 | 0.003656 | 0.003656 |
| 1 | 2022-12-31 01:00:00 | 2.0 | 0.022497 | 0.026153 |
| 2 | 2022-12-31 02:00:00 | 3.0 | 0.003375 | 0.029528 |
| 3 | 2022-12-31 03:00:00 | 4.0 | 0.039159 | 0.068687 |
| 4 | 2022-12-31 04:00:00 | 5.0 | 0.007944 | 0.076631 |
| 5 | 2022-12-31 05:00:00 | 6.0 | 0.000000 | 0.076631 |
| 6 | 2022-12-31 06:00:00 | 7.0 | 0.019474 | 0.096105 |
| 7 | 2022-12-31 07:00:00 | 8.0 | 0.024114 | 0.120219 |
| 8 | 2022-12-31 08:00:00 | 9.0 | 0.003796 | 0.124016 |
| 9 | 2022-12-31 09:00:00 | 10.0 | 0.009702 | 0.133718 |
| 10 | 2022-12-31 10:00:00 | 11.0 | 0.058704 | 0.192421 |
| 11 | 2022-12-31 11:00:00 | 12.0 | 0.000000 | 0.192421 |
| 12 | 2022-12-31 12:00:00 | 13.0 | 0.044643 | 0.237064 |
| 13 | 2022-12-31 13:00:00 | 14.0 | 0.152981 | 0.390045 |
| 14 | 2022-12-31 14:00:00 | 15.0 | 0.217238 | 0.607283 |
| 15 | 2022-12-31 15:00:00 | 16.0 | 0.093785 | 0.701069 |
| 16 | 2022-12-31 16:00:00 | 17.0 | 0.099480 | 0.800548 |
| 17 | 2022-12-31 17:00:00 | 18.0 | 0.091254 | 0.891803 |
| 18 | 2022-12-31 18:00:00 | 19.0 | 0.131398 | 1.023200 |
| 19 | 2022-12-31 19:00:00 | 20.0 | 0.132452 | 1.155652 |
| 20 | 2022-12-31 20:00:00 | 21.0 | 0.101237 | 1.256890 |
| 21 | 2022-12-31 21:00:00 | 22.0 | 0.080357 | 1.337247 |
| 22 | 2022-12-31 22:00:00 | 23.0 | 0.075295 | 1.412542 |
| 23 | 2022-12-31 23:00:00 | 24.0 | 0.057649 | 1.470191 |
| 24 | 2023-01-01 00:00:00 | 25.0 | 0.118884 | 1.589075 |
| 25 | 2023-01-01 01:00:00 | 26.0 | 0.097863 | 1.686938 |
| 26 | 2023-01-01 02:00:00 | 27.0 | 0.013147 | 1.700084 |
| 27 | 2023-01-01 03:00:00 | 28.0 | 0.000492 | 1.700577 |
| 28 | 2023-01-01 04:00:00 | 29.0 | 0.015115 | 1.715692 |
| 29 | 2023-01-01 05:00:00 | 30.0 | 0.029035 | 1.744727 |
| 30 | 2023-01-01 06:00:00 | 31.0 | 0.000000 | 1.744727 |
| 31 | 2023-01-01 07:00:00 | 32.0 | 0.000000 | 1.744727 |
| 32 | 2023-01-01 08:00:00 | 33.0 | 0.000000 | 1.744727 |
| 33 | 2023-01-01 09:00:00 | 34.0 | 0.000000 | 1.744727 |
| 34 | 2023-01-01 10:00:00 | 35.0 | 0.000000 | 1.744727 |
| 35 | 2023-01-01 11:00:00 | 36.0 | 0.000000 | 1.744727 |
| 36 | 2023-01-01 12:00:00 | 37.0 | 0.000000 | 1.744727 |
Text Only
MRMS stack shape: (37, 7, 8)
Spatial-mean event depth: 1.745 inches

Text Only
2026-05-10 16:30:57 - ras_commander.RasUnsteady - INFO - Updated Precipitation Hydrograph in DavisStormSystem.u01: 37 time steps, interval=1HOUR, total depth=1.7447 inches
2026-05-10 16:30:57 - ras_commander.RasPlan - INFO - Updated simulation date in plan file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02
2026-05-10 16:30:57 - ras_commander.RasPlan - INFO - Successfully updated intervals in plan file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02
2026-05-10 16:30:57 - ras_commander.RasPlan - WARNING - Unknown key: Output Interval. Valid keys are: Friction Slope Method, Run Post Process, UNET D2 Name, Write IC File Reoccurance, Write IC File at Sim End, Flow File, UNET D2 Cores, Geom File, UNET Use Existing IB Tables, Mapping Interval, Run HTab, UNET 1D Methodology, Simulation Date, Plan File, Run Sediment, UNET D1 Cores, IC Time, DSS File, Short Identifier, Run RASMapper, Write IC File at Fixed DateTime, PS Cores, Computation Interval, Description, Write IC File, UNET D2 Solver Type, Plan Title, Run UNET, Program Version, Run WQNET
Add more keys and explanations in get_plan_value() as needed.
2026-05-10 16:30:57 - ras_commander.RasPlan - WARNING - Unknown key: Instantaneous Interval. Valid keys are: Friction Slope Method, Run Post Process, UNET D2 Name, Write IC File Reoccurance, Write IC File at Sim End, Flow File, UNET D2 Cores, Geom File, UNET Use Existing IB Tables, Mapping Interval, Run HTab, UNET 1D Methodology, Simulation Date, Plan File, Run Sediment, UNET D1 Cores, IC Time, DSS File, Short Identifier, Run RASMapper, Write IC File at Fixed DateTime, PS Cores, Computation Interval, Description, Write IC File, UNET D2 Solver Type, Plan Title, Run UNET, Program Version, Run WQNET
Add more keys and explanations in get_plan_value() as needed.
2026-05-10 16:30:57 - ras_commander.RasCmdr - INFO - Using ras_object with project folder: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar
2026-05-10 16:30:57 - ras_commander.RasPlan - INFO - Updated HDF write parameters in plan file: DavisStormSystem.p02
2026-05-10 16:30:57 - ras_commander.RasPlan - INFO - Added HDF output variable 'Cell Hydraulic Depth' to plan file: DavisStormSystem.p02
2026-05-10 16:30:58 - ras_commander.RasPlan - INFO - Added HDF output variable 'Cell Invert Depth (WSE - Cell Min Elev)' to plan file: DavisStormSystem.p02
2026-05-10 16:30:58 - ras_commander.RasPlan - INFO - Added HDF output variable 'Cell Precipitation Rate' to plan file: DavisStormSystem.p02
2026-05-10 16:30:58 - ras_commander.RasCmdr - INFO - Applied 'balanced' HDF settings profile to plan: DavisStormSystem.p02
2026-05-10 16:30:58 - ras_commander.RasCmdr - INFO - Running HEC-RAS from the Command Line:
2026-05-10 16:30:58 - ras_commander.RasCmdr - INFO - Running command: "C:\Program Files (x86)\HEC\HEC-RAS\7.0\Ras.exe" -c "C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.prj" "C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02"
Updated precipitation boundary: area2
Simulation window: 2022-12-31 00:00:00 to 2023-01-01 18:00:00
Output Interval: 5MIN
Instantaneous Interval: 5MIN
Mapping Interval: 5MIN
2026-05-10 16:34:38 - ras_commander.RasCmdr - INFO - HEC-RAS execution completed for plan: 02
2026-05-10 16:34:38 - ras_commander.RasCmdr - INFO - Total run time for plan 02: 220.57 seconds
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Reading computation messages from HDF: DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Successfully extracted 1878 characters from HDF
2026-05-10 16:34:38 - ras_commander.RasCmdr - INFO - Verification passed for plan 02
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Reading computation messages from HDF: DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Successfully extracted 1878 characters from HDF
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Extracting Plan Information from: DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Plan Name: Full System ROM with Pump
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Simulation Duration (hours): 42.0
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfResultsPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.RasPrj - INFO - Updated results_df with 1 plan(s)
2026-05-10 16:34:38 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:38 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:38 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
Compute success: True
Plan HDF: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
Total output timesteps: 505
5-minute animation timesteps: 505
Animation window: 31DEC2022 00:00:00 to 01JAN2023 18:00:00
2026-05-10 16:34:39 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:39 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:39 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:39 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 00 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
C:\Users\billk_clb\anaconda3\envs\symphony-dev\Lib\site-packages\rasterio\__init__.py:379: NotGeoreferencedWarning: Dataset has no geotransform, gcps, or rpcs. The identity matrix will be returned.
dataset = DatasetReader(path, driver=driver, sharing=sharing, thread_safe=thread_safe, **kwargs)
2026-05-10 16:34:39 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:39 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 00 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:39 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:39 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:39 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:39 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:40 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:40 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:40 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:41 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 00 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:41 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:41 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:41 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:41 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:42 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:42 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:42 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:42 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 00 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:42 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:42 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 00 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:42 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:42 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:42 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:42 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:43 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:43 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:43 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:43 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 00 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:43 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:43 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:43 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:43 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:44 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:44 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:44 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:44 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 00 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:44 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:44 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:34:44 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:34:44 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 00 20 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:34:44 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 00 20 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:34:44 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 00 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:44 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:44 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:34:44 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:34:44 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 00 20 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:34:44 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 00 20 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:34:44 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:44 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:44 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:44 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:45 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:45 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:45 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:45 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 00 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:45 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:45 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 00 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:45 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:45 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:45 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:45 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:46 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:46 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:46 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:46 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 00 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:46 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:46 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:46 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:46 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:47 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:47 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:47 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:48 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 00 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:48 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:48 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:48 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:48 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:49 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:49 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:49 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:49 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 00 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:49 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:49 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:49 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:49 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:50 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:50 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:50 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:50 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 00 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:50 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:50 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 00 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:50 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:50 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:50 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:50 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:51 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:51 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:51 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:51 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 00 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:51 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:51 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 00 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:51 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:51 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:51 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:51 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:52 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:52 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:52 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:52 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 00 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:52 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:52 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 00 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:52 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:52 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:52 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:52 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:53 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:53 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:53 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:54 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 01 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:54 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:54 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:54 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:54 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:55 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:55 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:55 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:55 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 01 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:55 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:55 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 01 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:55 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:55 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:55 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:55 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:56 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:56 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:56 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:56 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 01 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:56 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:56 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:56 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:56 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:57 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:57 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:57 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:57 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 01 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:57 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:34:57 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 01 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:57 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:57 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:57 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:57 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:34:58 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:58 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:34:58 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:34:58 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 01 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:34:58 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:58 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:34:58 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:34:58 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:00 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:00 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:00 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:00 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 01 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:00 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:00 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:00 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:00 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:01 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:01 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:01 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:01 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 01 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:01 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:01 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 01 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:01 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:01 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:01 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:01 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:02 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:02 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:02 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:02 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 01 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:02 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:02 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 01 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:02 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:02 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:02 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:02 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:03 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:03 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:03 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:03 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 01 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:03 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:03 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:03 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:03 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:05 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:05 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:05 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:05 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 01 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:05 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:05 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:05 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:05 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:06 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:06 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:06 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:06 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 01 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:06 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:06 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 01 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:06 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:06 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:06 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:06 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:07 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:07 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:07 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:07 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 01 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:07 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:07 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 01 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:07 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:07 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:07 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:07 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:09 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:09 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:09 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:09 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 02 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:09 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:09 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:09 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:09 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:10 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:10 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:10 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:10 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 02 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:10 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:10 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:10 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:10 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:11 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:11 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:11 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:11 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 02 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:11 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:11 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:11 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:11 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:12 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:12 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:12 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:12 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 02 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:12 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:13 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 02 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:13 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:13 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:13 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:13 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:14 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:14 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:14 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:14 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 02 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:14 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:14 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:14 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:14 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:15 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:15 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:15 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:15 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 02 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:15 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:15 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 02 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:15 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:15 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:15 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:15 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:16 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:16 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:16 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:16 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 02 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:16 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:16 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:16 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:16 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:17 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:17 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:17 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:17 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 02 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:18 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:18 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 02 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:18 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:18 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:18 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:18 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:19 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:19 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:19 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:19 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 02 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:19 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:19 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:19 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:19 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:20 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:20 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:20 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:20 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 02 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:20 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:20 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:20 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:20 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:22 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:22 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:22 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:22 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 02 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:22 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:22 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:22 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:22 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:23 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:23 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:23 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:23 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 02 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:23 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:23 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:23 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:23 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:24 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:24 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:24 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:24 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 03 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:24 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:24 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:24 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:24 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:25 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:25 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:25 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:25 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 03 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:25 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:25 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 03 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:25 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:25 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:25 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:25 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:27 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:27 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:27 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:27 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 03 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:27 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:27 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:27 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:27 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:28 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:28 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:28 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:28 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 03 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:28 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:28 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 03 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:28 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:28 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:28 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:28 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:29 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:29 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:29 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:29 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 03 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:29 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:29 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:29 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:29 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:30 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:30 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:30 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:30 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 03 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:30 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:30 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:35:30 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:35:30 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 03 25 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:35:30 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 03 25 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:35:30 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 03 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:30 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:30 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:35:30 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:35:30 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 03 25 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:35:30 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 03 25 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:35:30 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:30 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:30 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:30 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:31 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:31 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:31 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:31 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 03 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:31 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:31 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 03 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:31 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:31 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:31 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:31 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:32 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:32 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:32 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:32 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 03 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:32 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:32 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 03 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:33 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:33 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:33 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:33 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:34 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:34 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:34 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:34 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 03 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:34 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:34 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 03 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:34 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:34 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:34 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:34 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:35 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:35 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:35 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:35 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 03 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:35 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:35 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:35 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:35 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:36 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:36 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:36 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:36 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 03 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:36 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:36 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 03 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:36 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:36 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:36 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:36 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:37 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:37 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:37 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:37 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 03 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:38 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:38 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:38 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:38 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:39 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:39 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:39 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:39 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 04 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:39 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:39 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 04 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:39 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:39 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:39 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:39 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:40 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:40 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:40 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:40 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 04 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:40 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:40 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:40 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:40 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:41 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:41 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:41 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:41 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 04 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:41 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:41 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:41 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:41 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:43 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:43 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:43 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:43 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 04 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:43 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:43 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:43 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:43 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:44 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:44 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:44 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:44 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 04 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:44 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:44 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:44 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:44 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:45 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:45 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:45 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:45 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 04 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:45 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:45 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 04 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:45 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:45 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:45 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:45 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:46 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:46 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:46 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:46 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 04 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:46 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:46 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 04 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:46 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:46 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:46 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:46 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:47 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:47 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:47 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:47 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 04 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:47 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:47 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 04 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:47 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:47 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:47 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:47 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:48 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:48 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:48 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:48 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 04 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:48 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:48 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 04 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:48 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:48 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:48 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:48 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:50 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:50 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:50 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:50 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 04 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:50 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:50 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 04 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:50 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:50 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:50 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:50 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:51 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:51 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:51 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:51 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 04 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:51 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:51 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 04 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:51 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:51 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:51 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:51 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:52 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:52 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:52 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:52 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 04 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:52 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:52 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:52 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:52 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:53 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:53 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:53 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:53 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 05 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:53 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:53 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:53 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:53 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:55 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:55 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:55 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:55 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 05 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:55 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:55 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:55 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:55 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:56 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:56 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:56 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:56 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 05 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:56 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:56 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 05 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:56 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:56 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:56 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:56 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:57 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:57 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:57 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:57 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 05 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:57 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:57 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 05 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:57 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:57 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:57 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:57 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:58 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:58 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:58 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:58 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 05 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:58 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:35:58 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 05 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:58 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:58 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:58 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:58 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:35:59 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:59 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:35:59 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:35:59 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 05 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:35:59 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:59 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:35:59 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:35:59 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:00 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:00 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:00 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:00 - rasterio._env - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 05 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchDirectory:Sanity check on directory count failed, this is probably not a valid IFD offset'
2026-05-10 16:36:00 - rasterio._env - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 05 30 00).Terrain (1).Davis_terrain2.tif: TIFFReadDirectory:Failed to read directory at offset 1318'
2026-05-10 16:36:00 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 05 30 00).Terrain (1).Davis_terrain2.tif: Depth (31DEC2022 05 30 00).Terrain (1).Davis_terrain2.tif: TIFFReadDirectory:Failed to read directory at offset 1318
2026-05-10 16:36:00 - rasterio._env - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 05 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchDirectory:Sanity check on directory count failed, this is probably not a valid IFD offset'
2026-05-10 16:36:00 - rasterio._env - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 05 30 00).Terrain (1).Davis_terrain2.tif: TIFFReadDirectory:Failed to read directory at offset 1318'
2026-05-10 16:36:00 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 05 30 00).Terrain (1).Davis_terrain2.tif: Depth (31DEC2022 05 30 00).Terrain (1).Davis_terrain2.tif: TIFFReadDirectory:Failed to read directory at offset 1318
2026-05-10 16:36:00 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:00 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:00 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:00 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:01 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:01 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:01 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:01 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 05 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:01 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:01 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:02 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:02 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:03 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:03 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:03 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:03 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 05 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:03 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:03 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 05 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:03 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:03 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:03 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:03 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:04 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:04 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:04 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:04 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 05 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:04 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:04 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:04 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:04 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:05 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:05 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:05 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:05 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 05 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:05 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:05 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:05 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:05 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:06 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:06 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:06 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:06 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 05 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:06 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:06 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 05 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:06 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:06 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:06 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:06 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:07 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:08 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:08 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:08 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 06 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:08 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:08 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:08 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:08 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:09 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:09 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:09 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:09 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 06 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:09 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:09 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:09 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:09 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:10 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:10 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:10 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:10 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 06 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:10 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:10 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:10 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:10 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:11 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:11 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:11 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:12 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 06 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:12 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:12 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:12 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:12 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:13 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:13 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:13 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:13 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 06 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:13 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:13 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:13 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:13 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:14 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:14 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:14 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:14 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 06 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:14 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:14 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:14 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:14 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:15 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:15 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:15 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:15 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 06 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:15 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:15 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:15 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:15 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:17 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:17 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:17 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:17 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 06 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:17 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:17 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:17 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:17 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:18 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:18 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:18 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:18 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 06 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:18 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:18 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 256, incorrect header check'
2026-05-10 16:36:18 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:36:18 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 06 40 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 1, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:36:18 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 06 40 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:36:18 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 06 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:18 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:18 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 256, incorrect header check'
2026-05-10 16:36:18 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:36:18 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 06 40 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 1, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:36:18 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 06 40 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:36:18 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:18 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:18 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:18 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:19 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:19 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:19 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:19 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 06 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:19 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:19 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:19 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:19 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:20 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:20 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:20 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:20 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 06 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:20 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:20 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:20 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:21 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:22 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:22 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:22 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:22 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 06 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:22 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:22 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:22 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:22 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:23 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:23 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:23 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:23 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 07 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:23 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:23 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:23 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:23 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:24 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:24 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:24 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:24 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 07 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:24 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:24 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:24 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:24 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:26 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:26 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:26 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:26 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 07 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:26 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:26 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:26 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:26 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:27 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:27 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:27 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:27 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 07 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:27 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:27 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:27 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:27 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:28 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:28 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:28 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:28 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 07 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:28 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:28 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:36:28 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:36:28 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 07 20 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:36:28 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 07 20 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:36:28 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 07 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:28 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:28 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:36:28 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:36:28 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 07 20 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:36:28 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 07 20 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:36:28 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:28 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:28 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:28 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:29 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:29 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:29 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:29 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 07 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:29 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:29 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 07 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:29 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:29 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:29 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:29 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:30 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:30 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:30 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:30 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 07 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:30 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:30 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 07 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:30 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:30 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:30 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:30 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:32 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:32 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:32 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:32 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 07 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:32 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:32 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:32 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:32 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:33 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:33 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:33 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:33 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 07 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:33 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:33 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:33 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:33 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:34 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:34 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:34 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:34 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 07 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:34 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:34 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:34 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:34 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:36 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:36 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:36 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:36 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 07 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:36 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:36 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:36 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:36 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:37 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:37 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:37 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:37 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 07 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:37 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:37 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:37 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:37 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:38 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:38 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:38 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:38 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 08 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:38 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:38 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:38 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:38 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:40 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:40 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:40 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:40 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 08 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:40 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:40 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:40 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:40 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:41 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:41 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:41 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:41 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 08 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:41 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:41 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:41 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:41 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:42 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:42 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:42 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:42 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 08 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:42 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:42 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 08 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:42 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:42 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:42 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:42 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:44 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:44 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:44 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:44 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 08 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:44 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:44 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 08 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:44 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:44 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:44 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:44 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:45 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:45 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:45 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:45 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 08 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:45 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:45 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 08 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:45 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:45 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:45 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:45 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:46 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:46 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:46 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:46 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 08 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:46 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:46 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 256, incorrect header check'
2026-05-10 16:36:46 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:36:46 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 08 30 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 1, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:36:46 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 08 30 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:36:46 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 08 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:46 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:46 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 256, incorrect header check'
2026-05-10 16:36:46 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:36:46 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 08 30 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 1, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:36:46 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 08 30 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:36:46 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:46 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:46 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:46 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:48 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:48 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:48 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:48 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 08 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:48 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:48 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:48 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:48 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:49 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:49 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:49 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:49 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 08 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:49 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:49 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:49 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:49 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:50 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:50 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:50 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:50 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 08 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:50 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:50 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 08 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:50 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:50 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:50 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:50 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:51 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:51 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:51 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:51 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 08 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:51 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:51 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 08 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:51 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:51 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:51 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:51 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:52 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:52 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:52 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:52 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 08 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:52 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:52 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 08 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:52 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:52 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:52 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:52 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:54 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:54 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:54 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:54 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 09 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:54 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:54 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:54 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:54 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:55 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:55 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:55 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:55 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 09 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:55 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:55 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:55 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:55 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:56 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:56 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:56 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:56 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 09 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:56 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:56 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:56 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:56 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:58 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:58 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:58 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:58 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 09 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:58 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:36:58 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 09 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:58 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:58 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:58 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:58 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:36:59 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:59 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:36:59 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:36:59 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 09 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:36:59 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:59 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:36:59 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:36:59 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:00 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:00 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:00 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:00 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 09 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:00 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:00 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 09 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:00 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:00 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:00 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:00 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:01 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:01 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:01 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:01 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 09 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:01 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:01 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 256, incorrect header check'
2026-05-10 16:37:01 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:37:01 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 09 30 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 1, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:37:01 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 09 30 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:37:01 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 09 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:01 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:01 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 256, incorrect header check'
2026-05-10 16:37:01 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:37:01 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 09 30 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 1, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:37:01 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 09 30 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:37:01 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:01 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:01 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:01 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:03 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:03 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:03 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:03 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 09 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:03 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:03 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:03 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:03 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:04 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:04 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:04 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:04 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 09 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:04 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:04 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:04 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:04 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:05 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:05 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:05 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:05 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 09 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:05 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:05 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:05 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:05 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:07 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:07 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:07 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:07 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 09 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:07 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:07 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:07 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:07 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:08 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:08 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:08 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:08 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 09 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:08 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:08 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 09 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:08 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:08 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:08 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:08 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:09 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:09 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:09 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:09 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 10 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:09 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:09 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 10 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:09 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:09 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:09 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:09 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:10 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:10 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:10 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:10 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 10 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:10 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:10 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:10 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:10 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:11 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:11 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:11 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:11 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 10 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:11 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:11 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:11 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:11 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:13 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:13 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:13 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:13 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 10 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:13 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:13 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:13 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:13 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:14 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:14 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:14 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:14 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 10 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:14 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:14 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:37:14 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:37:14 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 10 20 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:37:14 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 10 20 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:37:14 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 10 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:14 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:14 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:37:14 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:37:14 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 10 20 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:37:14 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 10 20 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:37:14 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:14 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:14 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:14 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:15 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:15 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:15 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:15 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 10 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:15 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:15 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 10 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:15 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:15 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:15 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:15 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:16 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:16 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:16 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:16 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 10 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:16 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:16 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 10 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:16 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:16 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:16 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:16 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:17 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:17 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:17 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:17 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 10 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:17 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:17 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:17 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:17 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:19 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:19 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:19 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:19 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 10 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:19 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:19 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:19 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:19 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:20 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:20 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:20 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:20 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 10 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:20 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:20 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 10 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:20 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:20 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:20 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:20 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:21 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:21 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:21 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:21 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 10 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:21 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:21 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:21 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:21 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:22 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:22 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:22 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:22 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 10 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:22 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:22 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:22 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:22 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:23 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:23 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:23 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:23 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 11 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:23 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:23 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 11 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:23 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:23 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:23 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:23 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:25 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:25 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:25 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:25 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 11 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:25 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:25 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:25 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:25 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:26 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:26 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:26 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:26 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 11 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:26 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:26 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:37:26 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:37:26 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 11 10 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:37:26 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 11 10 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:37:26 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 11 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:26 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:26 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:37:26 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:37:26 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 11 10 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:37:26 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 11 10 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:37:26 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:26 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:26 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:26 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:27 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:27 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:27 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:27 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 11 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:27 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:27 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 11 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:27 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:27 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:27 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:27 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:28 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:28 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:28 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:28 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 11 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:28 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:28 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:28 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:28 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:29 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:29 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:29 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:29 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 11 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:29 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:29 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 11 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:29 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:29 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:29 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:29 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:30 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:30 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:30 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:30 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 11 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:31 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:31 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:31 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:31 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:32 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:32 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:32 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:32 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 11 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:32 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:32 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:32 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:32 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:33 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:33 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:33 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:33 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 11 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:33 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:33 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:33 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:33 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:34 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:34 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:34 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:34 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 11 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:34 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:34 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 11 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:34 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:34 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:34 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:34 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:35 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:35 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:35 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:35 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 11 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:35 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:35 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:36 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:36 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:37 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:37 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:37 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:37 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 11 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:37 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:37 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 11 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:37 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:37 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:37 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:37 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:38 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:38 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:38 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:38 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 12 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:38 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:38 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:38 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:38 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:39 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:39 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:39 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:39 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 12 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:39 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:39 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 12 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:39 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:39 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:39 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:39 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:40 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:40 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:40 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:40 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 12 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:40 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:40 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 12 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:40 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:40 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:40 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:40 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:41 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:41 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:41 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:41 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 12 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:41 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:41 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:41 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:41 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:42 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:42 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:42 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:42 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 12 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:42 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:42 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:37:42 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:37:42 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 12 20 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:37:42 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 12 20 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:37:42 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 12 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:42 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:42 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:37:42 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:37:42 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 12 20 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:37:42 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 12 20 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:37:42 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:42 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:42 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:42 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:44 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:44 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:44 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:44 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 12 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:44 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:44 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:44 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:44 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:45 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:45 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:45 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:45 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 12 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:45 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:45 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:45 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:45 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:46 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:46 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:46 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:46 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 12 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:46 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:46 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 12 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:46 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:46 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:46 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:46 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:47 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:47 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:47 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:47 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 12 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:47 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:47 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 12 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:47 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:47 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:47 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:47 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:49 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:49 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:49 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:49 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 12 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:49 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:49 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:49 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:49 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:50 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:50 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:50 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:50 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 12 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:50 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:50 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 12 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:50 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:50 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:50 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:50 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:51 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:51 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:51 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:51 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 12 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:51 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:51 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:51 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:51 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:52 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:52 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:52 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:52 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 13 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:52 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:52 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:52 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:52 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:54 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:54 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:54 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:54 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 13 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:54 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:54 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:54 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:54 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:55 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:55 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:55 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:55 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 13 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:55 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:55 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 13 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:55 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:55 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:55 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:55 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:56 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:56 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:56 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:56 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 13 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:56 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:56 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 13 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:56 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:56 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:56 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:56 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:57 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:57 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:57 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:57 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 13 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:57 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:57 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 13 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:57 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:57 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:57 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:57 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:58 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:58 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:58 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:58 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 13 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:58 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:58 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 13 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:58 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:58 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:58 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:58 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:37:59 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:59 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:37:59 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:37:59 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 13 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:59 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:37:59 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 13 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:37:59 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:59 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:37:59 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:37:59 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:01 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:01 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:01 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:01 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 13 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:01 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:01 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:01 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:01 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:02 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:02 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:02 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:02 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 13 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:02 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:02 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:02 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:02 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:03 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:03 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:03 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:03 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 13 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:03 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:03 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:03 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:03 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:04 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:04 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:04 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:04 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 13 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:04 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:04 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 13 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:04 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:04 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:04 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:04 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:06 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:06 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:06 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:06 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 13 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:06 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:06 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:06 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:06 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:07 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:07 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:07 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:07 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:07 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:07 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:07 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:07 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:08 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:08 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:08 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:08 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:08 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:08 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:08 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:08 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:09 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:09 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:09 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:09 - rasterio._env - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 14 10 00).Terrain (1).Davis_terrain2.tif: MissingRequired:TIFF directory is missing required "ImageLength" field'
2026-05-10 16:38:09 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 10 00).Terrain (1).Davis_terrain2.tif: Depth (31DEC2022 14 10 00).Terrain (1).Davis_terrain2.tif: MissingRequired:TIFF directory is missing required "ImageLength" field
2026-05-10 16:38:09 - rasterio._env - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 14 10 00).Terrain (1).Davis_terrain2.tif: MissingRequired:TIFF directory is missing required "ImageLength" field'
2026-05-10 16:38:09 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 10 00).Terrain (1).Davis_terrain2.tif: Depth (31DEC2022 14 10 00).Terrain (1).Davis_terrain2.tif: MissingRequired:TIFF directory is missing required "ImageLength" field
2026-05-10 16:38:09 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:09 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:09 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:09 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:11 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:11 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:11 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:11 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 14 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:11 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:11 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:11 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:11 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:11 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:11 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:12 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:12 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:12 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:12 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:12 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:12 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:12 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:12 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:13 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:13 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:13 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:13 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:13 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:13 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:13 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:13 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:14 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:14 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:14 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:14 - rasterio._env - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 14 30 00).Terrain (1).Davis_terrain2.tif: MissingRequired:TIFF directory is missing required "ImageLength" field'
2026-05-10 16:38:14 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 30 00).Terrain (1).Davis_terrain2.tif: Depth (31DEC2022 14 30 00).Terrain (1).Davis_terrain2.tif: MissingRequired:TIFF directory is missing required "ImageLength" field
2026-05-10 16:38:14 - rasterio._env - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 14 30 00).Terrain (1).Davis_terrain2.tif: MissingRequired:TIFF directory is missing required "ImageLength" field'
2026-05-10 16:38:14 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 30 00).Terrain (1).Davis_terrain2.tif: Depth (31DEC2022 14 30 00).Terrain (1).Davis_terrain2.tif: MissingRequired:TIFF directory is missing required "ImageLength" field
2026-05-10 16:38:14 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:14 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:14 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:14 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:15 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:15 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:15 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:15 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 14 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:15 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:15 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:16 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:16 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:16 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:16 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:17 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:17 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:17 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:17 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 14 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:17 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:17 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:17 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:17 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:17 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:17 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:18 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:18 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:18 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:18 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:18 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:18 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:18 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:18 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:20 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:20 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:20 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:20 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:20 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:20 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:20 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:20 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:21 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:21 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:21 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:21 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 14 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:21 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:21 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:21 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:21 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:22 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:22 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:22 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:22 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 15 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:22 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:22 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 15 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:22 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:22 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:22 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:22 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:24 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:24 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:24 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:24 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 15 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:24 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:24 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:24 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:24 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:25 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:25 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:25 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:25 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 15 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:25 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:25 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 15 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:25 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:25 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:25 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:25 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:26 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:26 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:26 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:26 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 15 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:26 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:26 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:26 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:26 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:28 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:28 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:28 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:28 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 15 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:28 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:28 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:28 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:28 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:29 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:29 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:29 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:29 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 15 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:29 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:29 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 15 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:29 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:29 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:29 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:29 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:30 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:30 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:30 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:30 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 15 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:30 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:30 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:38:30 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:38:30 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 15 30 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:38:30 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 15 30 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:38:30 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 15 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:30 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:30 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:38:30 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:38:30 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 15 30 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:38:30 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 15 30 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:38:30 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:30 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:30 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:30 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:31 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:31 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:31 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:31 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 15 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:31 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:31 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 15 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:31 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:31 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:31 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:31 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:32 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:32 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:32 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:32 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 15 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:32 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:32 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 15 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:32 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:32 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:32 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:32 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:33 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:33 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:33 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:33 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 15 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:33 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:33 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:33 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:33 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:35 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:35 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:35 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:35 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 15 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:35 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:35 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 15 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:35 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:35 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:35 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:35 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:36 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:36 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:36 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:36 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 15 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:36 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:36 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 15 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:36 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:36 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:36 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:36 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:37 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:37 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:37 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:37 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 16 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:37 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:37 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:37 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:37 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:38 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:38 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:38 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:38 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 16 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:38 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:38 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 16 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:38 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:38 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:38 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:38 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:39 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:39 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:39 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:39 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 16 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:39 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:40 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 16 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:40 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:40 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:40 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:40 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:41 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:41 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:41 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:41 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 16 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:41 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:41 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:41 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:41 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:42 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:42 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:42 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:42 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 16 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:42 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:42 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:42 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:42 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:43 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:43 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:43 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:43 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 16 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:43 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:43 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 16 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:43 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:43 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:43 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:43 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:45 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:45 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:45 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:45 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 16 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:45 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:45 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:45 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:45 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:46 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:46 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:46 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:46 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 16 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:46 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:46 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:46 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:46 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:47 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:47 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:47 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:47 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 16 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:47 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:47 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 16 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:47 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:47 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:47 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:47 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:48 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:48 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:48 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:48 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 16 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:48 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:48 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 16 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:48 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:48 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:49 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:49 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:50 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:50 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:50 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:50 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 16 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:50 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:50 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:50 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:50 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:51 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:51 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:51 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:51 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 16 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:51 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:51 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 16 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:51 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:51 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:51 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:51 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:52 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:52 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:52 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:52 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 17 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:52 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:52 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:38:52 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:38:52 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 17 00 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:38:52 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 00 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:38:52 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 17 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:52 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:52 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:38:52 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:38:52 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 17 00 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:38:52 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 00 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:38:52 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:52 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:52 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:52 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:53 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:53 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:53 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:53 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:53 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:53 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:53 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:53 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:55 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:55 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:55 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:55 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 17 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:55 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:38:55 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:55 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:55 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:55 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:55 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:56 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:56 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:56 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:56 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:56 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:56 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:56 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:56 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:57 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:57 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:57 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:57 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:57 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:57 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:57 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:57 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:38:59 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:59 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:38:59 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:38:59 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:38:59 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:59 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:38:59 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:38:59 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:00 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:00 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:00 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:00 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 17 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:00 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:00 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:00 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:00 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:00 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:00 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:01 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:01 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:01 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:01 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:01 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:01 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:01 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:01 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:02 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:02 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:02 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:02 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 17 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:02 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:02 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:39:02 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:39:02 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 17 40 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:39:02 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 40 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:39:02 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 17 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:02 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:02 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:39:02 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:39:02 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 17 40 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:39:02 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 40 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:39:02 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:02 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:02 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:02 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:04 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:04 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:04 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:04 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:04 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:04 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:04 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:04 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:05 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:05 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:05 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:05 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:05 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:05 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:05 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:05 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:06 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:06 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:06 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:06 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 17 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:06 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:06 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 17 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:06 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:06 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:06 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:06 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:07 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:07 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:07 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:07 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:07 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:07 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:07 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:07 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:09 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:09 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:09 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:09 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 18 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:09 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:09 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:09 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:09 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:09 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:09 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:10 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:10 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:10 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:10 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:10 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:10 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:10 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:10 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:11 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:11 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:11 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:11 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:11 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:11 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:11 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:11 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:13 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:13 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:13 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:13 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:13 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:13 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:13 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:13 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:14 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:14 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:14 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:14 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:14 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:14 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:14 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:14 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:15 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:15 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:15 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:15 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:15 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:15 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:15 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:15 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:16 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:16 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:16 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:16 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:16 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:16 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:16 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:16 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:18 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:18 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:18 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:18 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 18 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:18 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:18 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 256, incorrect header check'
2026-05-10 16:39:18 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:39:18 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 18 40 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 1, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:39:18 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 40 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:39:18 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 18 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:18 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:18 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 256, incorrect header check'
2026-05-10 16:39:18 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:39:18 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 18 40 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 1, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:39:18 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 40 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:39:18 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:18 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:18 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:18 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:19 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:19 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:19 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:19 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 18 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:19 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:19 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:19 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:19 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:19 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:19 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:20 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:20 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:20 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:20 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:20 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:20 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:20 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:20 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:21 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:21 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:21 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:21 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 18 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:21 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:21 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:39:21 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:39:21 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 18 55 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:39:21 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 55 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:39:21 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 18 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:21 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:21 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:39:21 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:39:21 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 18 55 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:39:21 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 18 55 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:39:21 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:21 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:21 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:21 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:22 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:22 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:22 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:22 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:22 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:22 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:22 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:22 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:23 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:23 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:23 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:24 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 19 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:24 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:24 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:24 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:24 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:24 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:24 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:25 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:25 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:25 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:25 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:25 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:25 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:25 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:25 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:26 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:26 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:26 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:26 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 19 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:26 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:26 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:26 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:26 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:26 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:26 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:27 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:27 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:27 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:27 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:27 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:27 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:27 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:27 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:28 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:28 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:28 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:28 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 19 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:28 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:28 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:39:28 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:39:28 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 19 25 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:39:28 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 25 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:39:28 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 19 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:28 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:28 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:39:28 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:39:28 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 19 25 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:39:28 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 25 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:39:28 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:28 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:28 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:28 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:29 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:29 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:29 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:29 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 19 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:29 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:29 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:29 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:29 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:29 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:29 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:31 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:31 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:31 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:31 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:31 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:31 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:31 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:31 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:32 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:32 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:32 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:32 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:32 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:32 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:32 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:32 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:33 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:33 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:33 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:33 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:33 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:33 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:33 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:33 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:34 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:34 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:34 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:34 - rasterio._env - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 19 50 00).Terrain (1).Davis_terrain2.tif: MissingRequired:TIFF directory is missing required "ImageLength" field'
2026-05-10 16:39:34 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 50 00).Terrain (1).Davis_terrain2.tif: Depth (31DEC2022 19 50 00).Terrain (1).Davis_terrain2.tif: MissingRequired:TIFF directory is missing required "ImageLength" field
2026-05-10 16:39:34 - rasterio._env - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 19 50 00).Terrain (1).Davis_terrain2.tif: MissingRequired:TIFF directory is missing required "ImageLength" field'
2026-05-10 16:39:34 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 50 00).Terrain (1).Davis_terrain2.tif: Depth (31DEC2022 19 50 00).Terrain (1).Davis_terrain2.tif: MissingRequired:TIFF directory is missing required "ImageLength" field
2026-05-10 16:39:34 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:34 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:34 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:34 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:36 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:36 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:36 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:36 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 19 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:36 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:36 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:36 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:36 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:37 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:37 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:37 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:37 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 20 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:37 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:37 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:39:37 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:39:37 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 20 00 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:39:37 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 20 00 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:39:37 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 20 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:37 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:37 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:39:37 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:39:37 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (31DEC2022 20 00 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:39:37 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 20 00 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:39:37 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:37 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:37 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:37 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:38 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:38 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:38 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:38 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 20 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:38 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:38 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:38 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:38 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:39 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:39 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:39 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:39 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 20 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:39 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:39 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:39 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:39 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:41 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:41 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:41 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:41 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 20 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:41 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:41 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:41 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:41 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:42 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:42 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:42 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:42 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 20 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:42 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:42 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:42 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:42 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:43 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:43 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:43 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:43 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 20 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:43 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:43 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 20 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:43 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:43 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:43 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:43 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:44 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:44 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:44 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:44 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 20 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:44 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:44 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:44 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:44 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:45 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:45 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:45 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:45 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 20 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:45 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:45 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 20 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:45 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:45 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:46 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:46 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:47 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:47 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:47 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:47 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 20 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:47 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:47 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:47 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:47 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:48 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:48 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:48 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:48 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 20 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:48 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:48 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 20 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:48 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:48 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:48 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:48 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:49 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:49 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:49 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:49 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 20 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:49 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:49 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 20 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:49 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:49 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:49 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:49 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:50 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:50 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:50 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:50 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 20 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:50 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:50 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:50 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:50 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:52 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:52 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:52 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:52 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 21 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:52 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:52 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 21 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:52 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:52 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:52 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:52 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:53 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:53 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:53 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:53 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 21 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:53 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:53 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 21 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:53 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:53 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:53 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:53 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:54 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:54 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:54 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:54 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 21 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:54 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:54 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 21 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:54 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:54 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:54 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:54 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:55 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:55 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:55 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:55 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 21 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:55 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:55 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:55 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:55 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:56 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:56 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:56 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:56 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 21 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:56 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:39:57 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 21 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:57 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:57 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:57 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:57 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:58 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:58 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:58 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:58 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 21 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:58 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:58 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:58 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:58 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:39:59 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:59 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:39:59 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:39:59 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 21 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:39:59 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:59 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:39:59 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:39:59 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:01 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:01 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:01 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:01 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 21 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:01 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:01 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:01 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:01 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:02 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:02 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:02 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:02 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 21 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:02 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:02 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:02 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:02 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:04 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:04 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:04 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:04 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 21 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:04 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:04 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:04 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:04 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:05 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:05 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:05 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:05 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 21 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:05 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:05 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 21 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:05 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:05 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:05 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:05 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:06 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:06 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:06 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:06 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 21 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:06 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:06 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:06 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:06 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:08 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:08 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:08 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:08 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 22 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:08 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:08 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:08 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:08 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:09 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:09 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:09 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:09 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 22 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:09 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:09 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 22 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:09 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:09 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:09 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:09 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:10 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:10 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:10 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:10 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 22 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:10 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:10 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:10 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:10 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:11 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:11 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:11 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:11 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 22 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:12 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:12 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:12 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:12 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:13 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:13 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:13 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:13 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 22 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:13 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:13 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 22 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:13 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:13 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:13 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:13 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:14 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:14 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:14 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:14 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 22 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:14 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:14 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:14 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:14 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:15 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:15 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:15 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:15 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 22 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:15 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:15 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 22 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:15 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:15 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:15 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:15 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:16 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:16 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:16 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:16 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 22 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:16 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:16 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 22 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:16 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:16 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:16 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:16 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:17 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:17 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:17 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:17 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 22 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:17 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:17 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 22 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:17 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:17 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:17 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:17 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:19 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:19 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:19 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:19 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 22 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:19 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:19 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 22 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:19 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:19 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:19 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:19 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:20 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:20 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:20 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:20 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 22 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:20 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:20 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:20 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:20 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:21 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:21 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:21 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:21 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 22 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:21 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:21 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:21 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:21 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:23 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:23 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:23 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:23 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 23 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:23 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:23 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:23 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:23 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:24 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:24 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:24 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:24 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 23 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:24 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:24 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 23 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:24 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:24 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:24 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:24 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:25 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:25 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:25 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:25 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 23 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:25 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:25 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:25 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:25 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:26 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:26 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:26 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:26 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 23 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:27 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:27 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:27 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:27 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:28 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:28 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:28 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:28 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 23 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:28 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:28 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:28 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:28 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:29 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:29 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:29 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:29 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 23 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:29 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:29 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:29 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:29 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:30 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:30 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:30 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:30 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 23 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:30 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:30 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:30 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:30 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:32 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:32 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:32 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:32 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 23 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:32 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:32 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 23 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:32 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:32 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:32 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:32 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:33 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:33 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:33 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:33 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 23 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:33 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:33 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 23 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:33 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:33 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:33 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:33 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:34 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:34 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:34 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:34 - rasterio._env - WARNING - CPLE_AppDefined in Depth (31DEC2022 23 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:34 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:34 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 23 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:34 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:34 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:34 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:34 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:35 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:35 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:35 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:35 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 23 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:35 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:35 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:35 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:35 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:36 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:36 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:36 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:36 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (31DEC2022 23 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:36 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:36 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:36 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:36 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:38 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:38 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:38 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:38 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 00 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:38 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:38 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:38 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:38 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:39 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:39 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:39 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:39 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 00 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:39 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:39 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:39 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:39 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:40 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:40 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:40 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:40 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 00 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:40 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:40 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 00 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:40 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:40 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:40 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:40 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:41 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:41 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:41 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:41 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 00 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:41 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:41 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:41 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:41 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:43 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:43 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:43 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:43 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 00 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:43 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:43 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:43 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:43 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:44 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:44 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:44 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:44 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 00 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:44 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:44 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:44 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:44 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:45 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:45 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:45 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:45 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 00 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:45 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:45 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:45 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:45 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:46 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:46 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:46 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:46 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 00 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:46 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:46 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 00 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:46 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:46 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:46 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:46 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:48 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:48 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:48 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:48 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 00 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:48 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:48 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:48 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:48 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:49 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:49 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:49 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:49 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 00 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:49 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:49 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 00 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:49 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:49 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:49 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:49 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:50 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:50 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:50 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:50 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 00 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:50 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:50 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 00 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:50 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:50 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:50 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:50 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:51 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:51 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:51 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:51 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 00 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:51 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:51 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:51 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:51 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:52 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:52 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:52 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:52 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 01 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:52 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:52 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 01 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:52 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:52 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:52 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:52 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:53 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:53 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:53 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:53 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 01 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:53 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:53 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 01 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:53 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:53 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:53 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:53 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:54 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:54 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:54 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:55 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 01 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:55 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:55 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:55 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:55 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:56 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:56 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:56 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:56 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 01 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:56 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:56 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 01 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:56 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:56 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:56 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:56 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:57 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:57 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:57 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:57 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 01 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:57 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:57 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 01 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:57 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:57 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:57 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:57 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:58 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:58 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:58 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:58 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 01 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:58 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:58 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:58 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:58 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:40:59 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:59 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:40:59 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:40:59 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 01 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:59 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:40:59 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 01 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:40:59 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:59 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:40:59 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:40:59 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:00 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:00 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:00 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:00 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 01 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:00 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:00 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 01 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:00 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:00 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:00 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:00 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:01 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:01 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:01 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:02 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 01 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:02 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:02 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:02 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:02 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:03 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:03 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:03 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:03 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 01 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:03 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:03 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 01 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:03 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:03 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:03 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:03 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:04 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:04 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:04 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:04 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 01 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:04 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:04 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 01 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:04 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:04 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:04 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:04 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:05 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:05 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:05 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:05 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 01 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:05 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:05 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:05 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:05 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:06 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:06 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:06 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:06 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 02 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:06 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:06 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:06 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:06 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:08 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:08 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:08 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:08 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 02 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:08 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:08 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:08 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:08 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:09 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:09 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:09 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:09 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 02 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:09 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:09 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:09 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:09 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:10 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:10 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:10 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:10 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 02 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:10 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:10 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:10 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:10 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:11 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:12 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:12 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:12 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 02 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:12 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:12 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:41:12 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:41:12 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 02 20 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:41:12 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 02 20 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:41:12 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 02 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:12 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:12 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:41:12 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:41:12 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 02 20 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:41:12 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 02 20 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:41:12 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:12 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:12 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:12 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:13 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:13 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:13 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:13 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 02 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:13 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:13 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 02 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:13 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:13 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:13 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:13 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:14 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:14 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:14 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:14 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 02 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:14 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:14 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 02 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:14 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:14 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:14 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:14 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:15 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:15 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:15 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:15 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 02 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:15 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:15 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 02 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:15 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:15 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:15 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:15 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:16 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:16 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:16 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:16 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 02 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:16 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:16 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:16 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:16 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:17 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:17 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:17 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:17 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 02 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:17 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:17 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 02 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:17 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:17 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:17 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:17 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:19 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:19 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:19 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:19 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 02 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:19 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:19 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:19 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:19 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:20 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:20 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:20 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:20 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 02 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:20 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:20 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:20 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:20 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:21 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:21 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:21 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:21 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 03 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:21 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:21 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:41:21 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:41:21 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 03 00 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:41:21 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 00 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:41:21 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 03 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:21 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:21 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:41:21 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:41:21 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 03 00 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:41:21 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 00 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:41:21 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:21 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:21 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:21 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:22 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:22 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:22 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:23 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:23 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:23 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:23 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:23 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:24 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:24 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:24 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:24 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:24 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:24 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:24 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:24 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:25 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:25 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:25 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:25 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 03 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:25 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:25 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:41:25 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:41:25 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 03 15 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:41:25 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 15 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:41:25 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 03 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:25 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:25 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:41:25 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:41:25 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 03 15 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:41:25 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 15 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:41:25 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:25 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:25 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:25 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:26 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:26 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:26 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:26 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:26 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:26 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:26 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:26 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:27 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:27 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:27 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:27 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 03 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:27 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:27 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 256, incorrect header check'
2026-05-10 16:41:27 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:41:27 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 03 25 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 1, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:41:27 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 25 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:41:27 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 03 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:27 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:27 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 256, incorrect header check'
2026-05-10 16:41:27 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:41:27 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 03 25 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 1, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:41:27 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 25 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:41:27 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:27 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:27 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:27 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:29 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:29 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:29 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:29 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:29 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:29 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:29 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:29 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:30 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:30 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:30 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:30 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 03 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:30 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:30 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:30 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:30 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:30 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:30 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:31 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:31 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:31 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:31 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:31 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:31 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:31 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:31 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:32 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:32 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:32 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:32 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 03 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:32 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:32 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:32 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:32 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:32 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:32 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:34 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:34 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:34 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:34 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 03 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:34 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:34 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:34 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:34 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:34 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:34 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:35 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:35 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:35 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:35 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 03 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:35 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:35 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:35 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:35 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:36 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:36 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:36 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:36 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 04 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:36 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:36 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 04 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:36 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:36 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:36 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:36 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:38 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:38 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:38 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:38 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 04 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:38 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:38 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:38 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:38 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:39 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:39 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:39 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:39 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 04 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:39 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:39 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:39 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:39 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:40 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:40 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:40 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:40 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 04 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:40 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:40 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:40 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:40 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:42 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:42 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:42 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:42 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 04 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:42 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:42 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:42 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:42 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:43 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:43 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:43 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:43 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 04 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:43 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:43 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 04 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:43 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:43 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:43 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:43 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:44 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:44 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:44 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:44 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 04 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:44 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:44 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:44 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:44 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:45 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:45 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:45 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:45 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 04 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:45 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:45 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 04 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:45 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:45 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:45 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:45 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:46 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:46 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:46 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:46 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 04 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:46 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:46 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 04 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:46 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:46 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:46 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:46 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:48 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:48 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:48 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:48 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 04 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:48 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:48 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:48 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:48 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:49 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:49 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:49 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:49 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 04 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:49 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:49 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 04 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:49 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:49 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:49 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:49 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:50 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:50 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:50 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:50 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 04 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:50 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:50 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:50 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:50 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:52 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:52 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:52 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:52 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 05 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:52 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:52 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 05 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:52 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:52 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:52 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:52 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:53 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:53 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:53 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:53 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 05 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:53 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:53 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:53 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:53 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:54 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:54 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:54 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:54 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 05 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:54 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:54 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 05 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:54 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:54 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:54 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:54 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:55 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:55 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:55 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:55 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 05 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:55 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:55 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:41:55 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:41:55 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 05 15 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:41:55 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 05 15 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:41:55 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 05 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:55 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:55 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:41:55 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:41:55 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 05 15 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:41:55 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 05 15 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:41:55 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:55 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:55 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:55 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:56 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:56 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:56 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:56 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 05 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:56 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:56 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 05 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:56 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:56 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:56 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:56 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:58 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:58 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:58 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:58 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 05 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:58 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:58 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:58 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:58 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:41:59 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:59 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:41:59 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:41:59 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 05 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:59 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:41:59 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 05 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:41:59 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:59 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:41:59 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:41:59 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:00 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:00 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:00 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:00 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 05 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:00 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:00 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 05 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:00 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:00 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:00 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:00 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:01 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:01 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:01 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:01 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 05 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:01 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:01 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 05 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:01 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:01 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:01 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:01 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:02 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:02 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:02 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:02 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 05 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:02 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:02 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:03 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:03 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:03 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:03 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:03 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:03 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 05 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:03 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:03 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 05 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:03 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:03 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:03 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:03 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:05 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:05 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:05 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:05 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 05 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:05 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:05 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:05 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:05 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:06 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:06 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:06 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:06 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 06 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:06 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:06 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 06 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:06 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:06 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:06 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:06 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:07 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:07 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:07 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:07 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 06 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:07 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:07 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:07 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:07 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:09 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:09 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:09 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:09 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 06 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:09 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:09 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:09 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:09 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:10 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:10 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:10 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:10 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 06 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:10 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:10 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 06 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:10 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:10 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:10 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:10 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:11 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:11 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:11 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:11 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 06 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:11 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:11 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 06 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:11 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:11 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:11 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:11 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:12 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:12 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:12 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:12 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 06 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:12 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:12 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:12 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:12 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:13 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:13 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:13 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:13 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 06 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:13 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:13 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:13 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:13 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:15 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:15 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:15 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:15 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 06 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:15 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:15 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:15 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:15 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:16 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:16 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:16 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:16 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 06 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:16 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:16 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:16 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:16 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:17 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:17 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:17 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:17 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 06 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:17 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:17 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:17 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:17 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:19 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:19 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:19 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:19 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 06 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:19 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:19 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:19 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:19 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:20 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:20 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:20 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:20 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 06 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:20 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:20 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:20 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:20 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:21 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:21 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:21 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:21 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 07 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:21 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:21 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:21 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:21 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:21 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:21 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:22 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:22 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:22 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:22 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:22 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:22 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:22 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:22 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:24 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:24 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:24 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:24 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:24 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:24 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:24 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:24 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:25 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:25 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:25 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:25 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 07 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:25 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:25 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:42:25 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:42:25 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 07 15 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:42:25 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 15 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:42:25 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 07 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:25 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:25 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:42:25 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:42:25 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 07 15 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:42:25 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 15 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:42:25 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:25 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:25 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:25 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:26 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:26 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:26 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:26 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:26 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:26 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:26 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:26 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:27 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:27 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:27 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:27 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 07 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:27 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:27 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:27 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:27 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:27 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:27 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:28 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:28 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:28 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:28 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:28 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:28 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:28 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:28 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:29 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:29 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:29 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:29 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 07 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:29 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:29 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:42:29 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:42:29 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 07 35 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:42:29 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 35 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:42:29 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 07 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:29 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:29 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:42:29 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:42:29 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 07 35 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:42:29 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 35 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:42:30 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:30 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:30 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:30 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:31 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:31 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:31 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:31 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:31 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:31 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:31 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:31 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:32 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:32 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:32 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:32 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:32 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:32 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:32 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:32 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:33 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:33 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:33 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:33 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 07 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:33 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:33 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:33 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:33 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:33 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:33 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:34 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:34 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:34 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:34 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 07 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:34 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:34 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:34 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:34 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:36 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:36 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:36 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:36 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 08 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:36 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:36 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 08 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:36 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:36 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:36 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:36 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:37 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:37 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:37 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:37 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 08 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:37 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:37 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:37 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:37 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:38 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:38 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:38 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:38 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 08 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:38 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:38 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:38 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:38 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:39 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:39 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:39 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:39 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 08 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:39 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:39 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 08 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:39 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:39 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:39 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:39 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:40 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:40 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:40 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:40 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 08 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:40 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:40 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 08 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:40 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:40 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:40 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:40 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:42 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:42 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:42 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:42 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 08 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:42 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:42 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:42 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:42 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:42 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:42 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:42 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:42 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 08 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:42 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:42 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 08 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:43 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:43 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:43 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:43 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:44 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:44 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:44 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:44 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 08 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:44 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:44 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 08 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:44 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:44 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:44 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:44 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:45 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:45 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:45 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:45 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 08 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:45 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:45 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 08 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:45 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:45 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:45 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:45 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:46 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:46 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:46 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:46 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 08 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:46 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:46 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:46 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:46 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:47 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:47 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:47 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:47 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 08 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:47 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:47 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 08 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:47 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:47 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:47 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:47 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:48 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:48 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:48 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:48 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 08 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:48 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:48 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:48 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:48 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:50 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:50 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:50 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:50 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 09 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:50 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:50 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:50 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:50 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:51 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:51 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:51 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:51 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 09 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:51 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:51 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 09 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:51 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:51 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:51 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:51 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:52 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:52 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:52 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:52 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 09 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:52 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:52 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 09 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:52 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:52 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:52 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:52 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:53 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:53 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:53 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:53 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 09 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:53 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:53 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:53 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:53 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:55 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:55 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:55 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:55 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 09 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:55 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:55 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:55 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:55 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:55 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:55 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:55 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:55 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 09 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:55 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:56 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 09 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:56 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:56 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:56 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:56 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:57 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:57 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:57 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:57 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 09 30 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:57 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:57 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 09 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:57 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:57 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:57 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:57 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:58 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:58 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:58 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:58 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 09 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:58 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:58 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:58 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:58 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:42:59 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:59 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:42:59 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:42:59 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 09 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:59 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:42:59 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 09 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:42:59 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:59 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:42:59 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:42:59 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:00 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:00 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:00 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:00 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 09 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:00 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:00 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:00 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:00 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:02 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:02 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:02 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:02 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 09 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:02 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:02 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:02 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:02 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:03 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:03 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:03 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:03 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 09 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:03 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:03 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:03 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:03 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:04 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:04 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:04 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:04 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 10 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:04 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:04 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 10 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:04 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:04 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:04 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:04 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:06 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:06 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:06 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:06 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 10 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:06 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:06 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:06 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:06 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:07 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:07 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:07 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:07 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 10 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:07 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:07 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 10 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:07 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:07 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:07 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:07 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:08 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:08 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:08 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:08 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 10 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:08 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:08 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 10 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:08 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:08 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:08 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:08 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:09 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:09 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:09 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:09 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 10 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:09 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:09 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 10 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:09 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:09 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:09 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:09 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:10 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:10 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:10 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:10 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 10 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:10 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:10 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 10 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:10 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:10 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:10 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:10 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:12 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:12 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:12 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:12 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 10 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:12 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:12 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:12 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:12 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:13 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:13 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:13 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:13 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 10 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:13 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:13 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 10 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:13 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:13 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:13 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:13 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:14 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:14 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:14 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:14 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 10 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:14 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:14 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:14 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:14 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:16 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:16 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:16 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:16 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 10 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:16 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:16 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:16 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:16 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:17 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:17 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:17 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:17 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 10 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:17 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:17 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:17 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:17 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:18 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:18 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:18 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:18 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 10 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:18 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:18 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 10 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:18 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:18 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:18 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:18 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:20 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:20 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:20 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:20 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 11 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:20 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:20 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:20 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:20 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:21 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:21 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:21 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:21 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 11 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:21 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:21 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:21 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:21 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:22 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:22 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:22 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:23 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 11 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:23 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:23 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:23 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:23 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:24 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:24 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:24 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:24 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 11 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:24 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:24 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:24 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:24 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:25 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:25 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:25 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:25 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 11 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:25 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:25 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 11 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:25 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:25 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:25 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:25 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:26 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:26 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:26 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:26 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 11 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:26 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:26 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:26 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:26 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:28 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:28 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:28 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:28 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 11 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:28 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:28 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:28 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:28 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:29 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:29 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:29 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:29 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 11 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:29 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:29 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:29 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:29 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:30 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:30 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:30 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:30 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 11 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:30 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:30 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 11 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:30 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:30 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:30 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:30 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:32 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:32 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:32 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:32 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 11 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:32 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:32 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:32 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:32 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:33 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:33 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:33 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:33 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 11 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:33 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:33 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 11 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:33 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:33 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:33 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:33 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:34 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:34 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:34 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:34 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 11 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:34 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:34 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:34 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:34 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:35 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:35 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:35 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:35 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 12 00 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:35 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:35 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 12 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:35 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:35 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:35 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:35 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:37 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:37 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:37 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:37 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 12 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:37 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:37 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:37 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:37 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:38 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:38 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:38 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:38 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 12 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:38 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:38 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 12 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:38 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:38 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:38 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:38 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:39 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:39 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:39 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:39 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 12 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:39 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:39 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 12 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:39 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:39 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:39 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:39 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:40 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:40 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:40 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:40 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 12 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:40 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:40 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:40 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:40 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:42 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:42 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:42 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:42 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 12 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:42 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:42 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:42 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:42 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:43 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:43 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:43 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:43 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 12 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:43 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:43 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:43 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:43 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:44 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:44 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:44 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:44 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 12 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:44 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:44 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:44 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:44 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:46 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:46 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:46 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:46 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 12 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:46 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:46 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:46 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:46 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:47 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:47 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:47 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:47 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 12 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:47 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:47 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:47 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:47 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:48 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:48 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:48 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:48 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 12 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:48 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:48 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 12 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:48 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:48 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:48 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:48 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:49 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:49 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:49 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:49 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 12 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:49 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:49 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 12 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:49 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:49 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:49 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:49 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:50 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:50 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:50 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:50 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 13 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:50 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:50 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:50 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:50 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:52 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:52 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:52 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:52 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 13 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:52 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:52 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:52 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:52 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:53 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:53 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:53 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:53 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 13 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:53 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:53 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:53 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:53 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:54 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:54 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:54 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:54 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 13 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:54 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:54 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:54 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:54 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:56 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:56 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:56 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:56 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 13 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:56 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:56 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:56 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:56 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:57 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:57 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:57 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:57 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 13 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:57 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:57 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 13 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:57 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:57 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:57 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:57 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:58 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:58 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:58 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:58 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 13 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:58 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:58 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:58 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:58 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:43:59 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:59 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:43:59 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:43:59 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 13 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:59 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:43:59 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 13 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:43:59 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:59 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:43:59 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:43:59 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:00 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:00 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:00 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:00 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 13 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:01 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:01 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:01 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:01 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:02 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:02 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:02 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:02 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 13 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:02 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:02 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:02 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:02 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:03 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:03 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:03 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:03 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 13 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:03 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:03 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:44:03 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:44:03 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 13 50 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:44:03 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 13 50 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:44:03 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 13 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:03 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:03 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:44:03 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:44:03 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 13 50 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:44:03 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 13 50 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:44:03 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:03 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:03 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:03 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:04 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:04 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:04 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:04 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 13 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:04 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:04 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:04 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:04 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:05 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:05 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:05 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:05 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 14 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:05 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:05 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:06 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:06 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:07 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:07 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:07 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:07 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 14 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:07 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:07 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 14 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:07 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:07 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:07 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:07 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:08 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:08 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:08 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:08 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 14 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:08 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:08 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 14 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:08 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:08 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:08 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:08 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:09 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:09 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:09 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:09 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 14 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:09 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:09 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 14 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:09 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:09 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:09 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:09 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:10 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:10 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:10 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:10 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 14 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:10 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:10 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:10 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:10 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:11 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:11 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:11 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:11 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 14 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:11 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:11 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:11 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:11 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:13 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:13 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:13 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:13 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 14 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:13 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:13 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:13 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:13 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:14 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:14 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:14 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:14 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 14 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:14 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:14 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:14 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:14 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:15 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:15 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:15 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:15 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 14 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:15 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:15 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:15 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:15 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:16 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:16 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:16 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:16 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 14 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:16 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:16 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 14 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:16 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:16 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:16 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:16 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:17 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:17 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:17 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:17 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 14 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:17 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:17 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 14 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:17 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:17 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:17 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:17 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:18 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:18 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:18 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:19 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 14 55 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:19 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:19 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 14 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:19 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:19 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:19 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:19 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:20 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:20 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:20 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:20 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 15 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:20 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:20 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:20 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:20 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:21 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:21 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:21 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:21 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 15 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:21 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:21 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 15 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:21 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:21 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:21 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:21 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:23 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:23 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:23 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:23 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 15 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:23 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:23 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:23 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:23 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:24 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:24 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:24 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:24 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 15 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:24 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:24 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 15 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:24 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:24 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:24 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:24 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:25 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:25 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:25 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:25 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 15 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:25 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:25 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:25 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:25 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:26 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:26 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:26 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:26 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 15 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:26 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:26 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 15 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:26 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:26 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:26 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:26 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:27 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:27 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:27 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:27 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 15 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:27 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:27 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:28 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:28 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:29 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:29 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:29 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:29 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 15 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:29 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:29 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 15 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:29 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:29 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:29 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:29 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:30 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:30 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:30 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:30 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 15 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:30 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:30 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:30 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:30 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:31 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:31 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:31 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:32 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 15 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:32 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:32 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:32 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:32 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:33 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:33 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:33 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:33 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 15 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:33 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:33 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:33 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:33 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:34 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:34 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:34 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:34 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 15 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:34 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:34 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:34 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:34 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:35 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:35 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:35 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:35 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 16 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:35 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:35 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:35 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:35 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:37 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:37 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:37 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:37 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 16 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:37 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:37 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:37 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:37 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:38 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:38 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:38 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:38 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 16 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:38 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:38 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:38 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:38 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:39 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:39 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:39 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:39 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 16 15 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:39 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:39 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 16 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:39 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:39 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:39 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:39 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:40 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:40 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:40 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:40 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 16 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:40 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:40 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 16 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:40 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:40 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:40 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:40 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:42 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:42 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:42 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:42 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 16 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:42 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:42 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 16 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:42 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:42 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:42 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:42 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:43 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:43 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:43 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:43 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 16 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:43 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:43 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:43 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:43 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:44 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:44 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:44 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:44 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 16 35 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:44 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:44 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:44 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:44 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:45 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:45 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:45 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:45 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 16 40 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:45 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:45 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 16 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:45 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:45 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:45 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:45 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:47 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:47 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:47 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:47 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 16 45 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:47 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:47 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 16 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:47 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:47 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:47 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:47 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:48 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:48 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:48 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:48 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 16 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:48 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:48 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 16 50 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:48 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:48 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:48 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:48 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:49 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:49 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:49 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:49 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 16 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:49 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:49 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:49 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:49 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:51 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:51 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:51 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:51 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 00 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:51 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:51 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:51 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:51 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:52 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:52 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:52 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:52 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 17 05 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:52 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:52 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 05 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:52 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:52 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:52 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:52 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:53 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:53 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:53 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:53 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 17 10 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:53 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:53 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 10 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:53 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:53 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:53 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:53 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:54 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:54 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:54 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:54 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 15 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:54 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:54 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:54 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:54 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:56 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:56 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:56 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:56 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 17 20 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:56 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:56 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 20 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:56 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:56 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:56 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:56 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:57 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:57 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:57 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:57 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 17 25 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:57 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:57 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 25 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:57 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:57 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:57 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:57 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:58 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:58 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:58 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:58 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 30 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:44:58 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:58 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:58 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:58 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:44:59 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:59 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:44:59 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:44:59 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 17 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:59 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:59 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:44:59 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:44:59 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 17 35 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:44:59 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 35 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:44:59 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 17 35 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:59 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:44:59 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 0, incorrect header check'
2026-05-10 16:44:59 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:44:59 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 17 35 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 0, Y offset 1: TIFFReadEncodedTile() failed.'
2026-05-10 16:44:59 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 35 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:44:59 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:59 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:44:59 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:44:59 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:45:01 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:45:01 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:45:01 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:45:01 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 40 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:45:01 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:45:01 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:45:01 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:45:01 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:45:02 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:45:02 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:45:02 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:45:02 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 45 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:45:02 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:45:02 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:45:02 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:45:02 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:45:03 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:45:03 - ras_commander.RasProcess - INFO - Moved 1 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:45:03 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:45:03 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 17 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:45:03 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:45:03 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:45:03 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:45:03 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 17 50 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:45:03 - ras_commander.RasProcess - ERROR - Failed to fix georeferencing for C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 50 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:45:03 - rasterio._env - WARNING - CPLE_AppDefined in Depth (01JAN2023 17 50 00).Terrain (1).Davis_terrain2.tif: TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:45:03 - rasterio._env - WARNING - CPLE_AppDefined in TIFFFetchNormalTag:ASCII value for tag "GDALNoDataValue" contains null byte in value; value incorrectly truncated during reading due to implementation limitations
2026-05-10 16:45:03 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='ZIPDecode:Decoding error at scanline 512, incorrect header check'
2026-05-10 16:45:03 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='TIFFReadEncodedTile() failed.'
2026-05-10 16:45:03 - rasterio._err - INFO - GDAL signalled an error: err_no=1, msg='Depth (01JAN2023 17 50 00).Terrain (1).Davis_terrain2.tif, band 1: IReadBlock failed at X offset 2, Y offset 0: TIFFReadEncodedTile() failed.'
2026-05-10 16:45:03 - ras_commander.RasProcess - WARNING - Dropping unreadable stored-map TIFF C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 50 00).Terrain (1).Davis_terrain2.tif: Read failed. See previous exception for details.
2026-05-10 16:45:03 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:45:03 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:45:03 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:45:03 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:45:04 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:45:04 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:45:04 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:45:04 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 17 55 00).Terrain (1).Davis_terrain2.tif
2026-05-10 16:45:04 - ras_commander.hdf.HdfPlan - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:45:04 - ras_commander.hdf.HdfPlan - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:45:05 - ras_commander.RasProcess - INFO - Running StoreAllMaps for plan 02 (mode=sloping)...
2026-05-10 16:45:05 - ras_commander._native_helper - INFO - Using staged RasStoreMapHelper runtime at C:\Users\billk_clb\AppData\Local\ras-commander\bin\RasStoreMapHelper-0.96.2-d1a79dadb9b4-65df91cb1511\RasStoreMapHelper.exe because the packaged helper has no sibling GDAL directory.
2026-05-10 16:45:06 - ras_commander.RasProcess - INFO - Moving generated files from C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\Full System ROM with Pump to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:45:06 - ras_commander.RasProcess - INFO - Moved 2 generated file(s) to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:45:06 - ras_commander.RasProcess - INFO - Generated 1 depth TIF(s)
2026-05-10 16:45:06 - ras_commander.RasProcess - INFO - Fixed georeferencing: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river\Depth (01JAN2023 18 00 00).Terrain (1).Davis_terrain2.tif
| timestamp | raster | wet_cells | max_depth_ft | mean_wet_depth_ft | |
|---|---|---|---|---|---|
| 0 | 31DEC2022 00:00:00 | Depth (31DEC2022 00 00 00).Terrain (1).Davis_t... | 0 | 0.000000 | 0.000000 |
| 1 | 31DEC2022 00:05:00 | Depth (31DEC2022 00 05 00).Terrain (1).Davis_t... | 5921 | 2.300522 | 0.205149 |
| 2 | 31DEC2022 00:10:00 | Depth (31DEC2022 00 10 00).Terrain (1).Davis_t... | 0 | 0.000000 | 0.000000 |
| 3 | 31DEC2022 00:15:00 | Depth (31DEC2022 00 15 00).Terrain (1).Davis_t... | 6577 | 2.317398 | 0.204795 |
| 4 | 31DEC2022 00:25:00 | Depth (31DEC2022 00 25 00).Terrain (1).Davis_t... | 0 | 0.000000 | 0.000000 |
| ... | ... | ... | ... | ... | ... |
| 500 | 01JAN2023 07:15:00 | Depth (01JAN2023 07 15 00).dry.tif | 0 | 0.000000 | 0.000000 |
| 501 | 01JAN2023 07:35:00 | Depth (01JAN2023 07 35 00).dry.tif | 0 | 0.000000 | 0.000000 |
| 502 | 01JAN2023 13:50:00 | Depth (01JAN2023 13 50 00).dry.tif | 0 | 0.000000 | 0.000000 |
| 503 | 01JAN2023 17:35:00 | Depth (01JAN2023 17 35 00).dry.tif | 0 | 0.000000 | 0.000000 |
| 504 | 01JAN2023 17:50:00 | Depth (01JAN2023 17 50 00).dry.tif | 0 | 0.000000 | 0.000000 |
505 rows × 5 columns
Text Only
Exported 505 5-minute depth rasters to C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\StoredDepthFrames\davis_atmospheric_river
2026-05-10 16:45:12 - matplotlib.animation - INFO - Animation.save using <class 'matplotlib.animation.FFMpegWriter'>
2026-05-10 16:45:12 - matplotlib.animation - INFO - MovieWriter._run: running command: ffmpeg -f rawvideo -vcodec rawvideo -s 880x660 -pix_fmt rgba -framerate 4 -loglevel error -i pipe: -vcodec h264 -pix_fmt yuv420p -b 1800k -y 'H:\Symphony\ras-commander\CLB-642\proof\mrms\mrms_precipitation_davis_atmospheric_river.mp4'
2026-05-10 16:45:27 - matplotlib.animation - INFO - Animation.save using <class 'matplotlib.animation.FFMpegWriter'>
2026-05-10 16:45:27 - matplotlib.animation - INFO - MovieWriter._run: running command: ffmpeg -f rawvideo -vcodec rawvideo -s 880x660 -pix_fmt rgba -framerate 4 -loglevel error -i pipe: -vcodec h264 -pix_fmt yuv420p -b 1800k -y 'H:\Symphony\ras-commander\CLB-642\proof\mrms\flood_inundation_depth_davis_atmospheric_river_5min.mp4'
2026-05-10 16:49:06 - matplotlib.animation - INFO - Animation.save using <class 'matplotlib.animation.FFMpegWriter'>
2026-05-10 16:49:06 - matplotlib.animation - INFO - MovieWriter._run: running command: ffmpeg -f rawvideo -vcodec rawvideo -s 1320x550 -pix_fmt rgba -framerate 4 -loglevel error -i pipe: -vcodec h264 -pix_fmt yuv420p -b 1800k -y 'H:\Symphony\ras-commander\CLB-642\proof\mrms\combined_precip_flood_davis_atmospheric_river_5min.mp4'
Video: H:\Symphony\ras-commander\CLB-642\proof\mrms\mrms_precipitation_davis_atmospheric_river.mp4 (1,917,064 bytes)
Video: H:\Symphony\ras-commander\CLB-642\proof\mrms\flood_inundation_depth_davis_atmospheric_river_5min.mp4 (10,959,809 bytes)
Video: H:\Symphony\ras-commander\CLB-642\proof\mrms\combined_precip_flood_davis_atmospheric_river_5min.mp4 (9,037,078 bytes)

Text Only
2026-05-10 16:53:23 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:53:23 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:53:23 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:53:23 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:53:23 - ras_commander.hdf.HdfResultsMesh - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:53:23 - ras_commander.hdf.HdfResultsMesh - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:53:23 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:53:23 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:53:23 - ras_commander.hdf.HdfMesh - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:53:23 - ras_commander.hdf.HdfMesh - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:53:23 - ras_commander.hdf.HdfBase - INFO - Using HDF file from h5py.File object: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:53:23 - ras_commander.hdf.HdfBase - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:53:23 - ras_commander.hdf.HdfBase - INFO - Found projection in HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.g02.hdf
2026-05-10 16:53:23 - ras_commander.hdf.HdfBase - INFO - Converted WKT to EPSG:2871 from HDF file DavisStormSystem.g02.hdf
| case | mesh_name | reference_cell_id | peak_reference_depth_ft | peak_reference_wse_ft | peak_reference_precip_in_hr | |
|---|---|---|---|---|---|---|
| 0 | davis_atmospheric_river | area2 | 600 | 2.568577 | 41.221306 | 0.22 |

Text Only
2026-05-10 16:53:30 - ras_commander.hdf.HdfPump - INFO - Using existing Path object HDF file: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf
2026-05-10 16:53:30 - ras_commander.hdf.HdfPump - INFO - Final validated file path: C:\GH\symphony-workspaces\ras-commander\CLB-642\working\CLB-642\examples_917_mrms_qpe_revisions\Davis_mrms_qpe_917_davis_ar\DavisStormSystem.p02.hdf

| station | peak_total_flow_cfs | max_pumps_on | first_on | last_on | |
|---|---|---|---|---|---|
| 0 | Pump Station #1 | 67.364868 | 1.0 | 2022-12-31 03:45:00 | 2023-01-01 18:00:00 |
Text Only
Embedded MP4 animations generated by this notebook for Davis atmospheric river:
Precipitation only: mrms_precipitation_davis_atmospheric_river.mp4 (1,917,064 bytes)
Text Only
Flood inundation only: flood_inundation_depth_davis_atmospheric_river_5min.mp4 (10,959,809 bytes)