ras-commander 0.51.0__py3-none-any.whl → 0.52.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ras_commander/HdfBase.py +344 -307
- ras_commander/HdfFluvialPluvial.py +554 -309
- ras_commander/HdfMesh.py +461 -461
- ras_commander/HdfUtils.py +434 -434
- ras_commander/HdfXsec.py +56 -38
- ras_commander/RasPrj.py +93 -55
- {ras_commander-0.51.0.dist-info → ras_commander-0.52.0.dist-info}/METADATA +11 -8
- {ras_commander-0.51.0.dist-info → ras_commander-0.52.0.dist-info}/RECORD +11 -11
- {ras_commander-0.51.0.dist-info → ras_commander-0.52.0.dist-info}/WHEEL +1 -1
- {ras_commander-0.51.0.dist-info → ras_commander-0.52.0.dist-info}/LICENSE +0 -0
- {ras_commander-0.51.0.dist-info → ras_commander-0.52.0.dist-info}/top_level.txt +0 -0
ras_commander/HdfBase.py
CHANGED
@@ -1,307 +1,344 @@
|
|
1
|
-
"""
|
2
|
-
HdfBase: Core HDF File Operations for HEC-RAS
|
3
|
-
|
4
|
-
This module provides fundamental methods for interacting with HEC-RAS HDF files.
|
5
|
-
It serves as a foundation for more specialized HDF classes.
|
6
|
-
|
7
|
-
Attribution:
|
8
|
-
Derived from the rashdf library (https://github.com/fema-ffrd/rashdf)
|
9
|
-
Copyright (c) 2024 fema-ffrd - MIT License
|
10
|
-
|
11
|
-
Features:
|
12
|
-
- Time parsing and conversion utilities
|
13
|
-
- HDF attribute and dataset access
|
14
|
-
- Geometric data extraction
|
15
|
-
- 2D flow area information retrieval
|
16
|
-
|
17
|
-
Classes:
|
18
|
-
HdfBase: Base class containing static methods for HDF operations
|
19
|
-
|
20
|
-
Key Methods:
|
21
|
-
Time Operations:
|
22
|
-
- get_simulation_start_time(): Get simulation start datetime
|
23
|
-
- get_unsteady_timestamps(): Get unsteady output timestamps
|
24
|
-
- parse_ras_datetime(): Parse RAS datetime strings
|
25
|
-
|
26
|
-
Data Access:
|
27
|
-
- get_2d_flow_area_names_and_counts(): Get 2D flow area info
|
28
|
-
- get_projection(): Get spatial projection
|
29
|
-
- get_attrs(): Access HDF attributes
|
30
|
-
- get_dataset_info(): Explore HDF structure
|
31
|
-
- get_polylines_from_parts(): Extract geometric polylines
|
32
|
-
|
33
|
-
Example:
|
34
|
-
```python
|
35
|
-
from ras_commander import HdfBase
|
36
|
-
|
37
|
-
with h5py.File('model.hdf', 'r') as hdf:
|
38
|
-
start_time = HdfBase.get_simulation_start_time(hdf)
|
39
|
-
timestamps = HdfBase.get_unsteady_timestamps(hdf)
|
40
|
-
```
|
41
|
-
"""
|
42
|
-
import re
|
43
|
-
from datetime import datetime, timedelta
|
44
|
-
import h5py
|
45
|
-
import numpy as np
|
46
|
-
import pandas as pd
|
47
|
-
import xarray as xr
|
48
|
-
from typing import List, Tuple, Union, Optional, Dict, Any
|
49
|
-
from pathlib import Path
|
50
|
-
import logging
|
51
|
-
from shapely.geometry import LineString, MultiLineString
|
52
|
-
|
53
|
-
from .HdfUtils import HdfUtils
|
54
|
-
from .Decorators import standardize_input, log_call
|
55
|
-
from .LoggingConfig import setup_logging, get_logger
|
56
|
-
|
57
|
-
logger = get_logger(__name__)
|
58
|
-
|
59
|
-
class HdfBase:
|
60
|
-
"""
|
61
|
-
Base class for HEC-RAS HDF file operations.
|
62
|
-
|
63
|
-
This class provides static methods for fundamental HDF file operations,
|
64
|
-
including time parsing, attribute access, and geometric data extraction.
|
65
|
-
All methods are designed to work with h5py.File objects or pathlib.Path
|
66
|
-
inputs.
|
67
|
-
|
68
|
-
Note:
|
69
|
-
This class is not meant to be instantiated. All methods are static
|
70
|
-
and should be called directly from the class.
|
71
|
-
"""
|
72
|
-
|
73
|
-
@staticmethod
|
74
|
-
def get_simulation_start_time(hdf_file: h5py.File) -> datetime:
|
75
|
-
"""
|
76
|
-
Extract the simulation start time from the HDF file.
|
77
|
-
|
78
|
-
Args:
|
79
|
-
hdf_file: Open HDF file object containing RAS simulation data.
|
80
|
-
|
81
|
-
Returns:
|
82
|
-
datetime: Simulation start time as a datetime object.
|
83
|
-
|
84
|
-
Raises:
|
85
|
-
ValueError: If Plan Information is not found or start time cannot be parsed.
|
86
|
-
|
87
|
-
Note:
|
88
|
-
Expects 'Plan Data/Plan Information' group with 'Simulation Start Time' attribute.
|
89
|
-
"""
|
90
|
-
plan_info = hdf_file.get("Plan Data/Plan Information")
|
91
|
-
if plan_info is None:
|
92
|
-
raise ValueError("Plan Information not found in HDF file")
|
93
|
-
time_str = plan_info.attrs.get('Simulation Start Time')
|
94
|
-
return HdfUtils.parse_ras_datetime(time_str.decode('utf-8'))
|
95
|
-
|
96
|
-
@staticmethod
|
97
|
-
def get_unsteady_timestamps(hdf_file: h5py.File) -> List[datetime]:
|
98
|
-
"""
|
99
|
-
Extract the list of unsteady timestamps from the HDF file.
|
100
|
-
|
101
|
-
Args:
|
102
|
-
hdf_file (h5py.File): Open HDF file object.
|
103
|
-
|
104
|
-
Returns:
|
105
|
-
List[datetime]: A list of datetime objects representing the unsteady timestamps.
|
106
|
-
"""
|
107
|
-
group_path = "Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/Time Date Stamp (ms)"
|
108
|
-
raw_datetimes = hdf_file[group_path][:]
|
109
|
-
return [HdfUtils.parse_ras_datetime_ms(x.decode("utf-8")) for x in raw_datetimes]
|
110
|
-
|
111
|
-
@staticmethod
|
112
|
-
@standardize_input(file_type='plan_hdf')
|
113
|
-
def get_2d_flow_area_names_and_counts(hdf_path: Path) -> List[Tuple[str, int]]:
|
114
|
-
"""
|
115
|
-
Get the names and cell counts of 2D flow areas from the HDF file.
|
116
|
-
|
117
|
-
Args:
|
118
|
-
hdf_path (Path): Path to the HDF file.
|
119
|
-
|
120
|
-
Returns:
|
121
|
-
List[Tuple[str, int]]: A list of tuples containing the name and cell count of each 2D flow area.
|
122
|
-
|
123
|
-
Raises:
|
124
|
-
ValueError: If there's an error reading the HDF file or accessing the required data.
|
125
|
-
"""
|
126
|
-
try:
|
127
|
-
with h5py.File(hdf_path, 'r') as hdf_file:
|
128
|
-
flow_area_2d_path = "Geometry/2D Flow Areas"
|
129
|
-
if flow_area_2d_path not in hdf_file:
|
130
|
-
return []
|
131
|
-
|
132
|
-
attributes = hdf_file[f"{flow_area_2d_path}/Attributes"][()]
|
133
|
-
names = [HdfUtils.convert_ras_string(name) for name in attributes["Name"]]
|
134
|
-
|
135
|
-
cell_info = hdf_file[f"{flow_area_2d_path}/Cell Info"][()]
|
136
|
-
cell_counts = [info[1] for info in cell_info]
|
137
|
-
|
138
|
-
return list(zip(names, cell_counts))
|
139
|
-
except Exception as e:
|
140
|
-
logger.error(f"Error reading 2D flow area names and counts from {hdf_path}: {str(e)}")
|
141
|
-
raise ValueError(f"Failed to get 2D flow area names and counts: {str(e)}")
|
142
|
-
|
143
|
-
|
144
|
-
@
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
"""
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
1
|
+
"""
|
2
|
+
HdfBase: Core HDF File Operations for HEC-RAS
|
3
|
+
|
4
|
+
This module provides fundamental methods for interacting with HEC-RAS HDF files.
|
5
|
+
It serves as a foundation for more specialized HDF classes.
|
6
|
+
|
7
|
+
Attribution:
|
8
|
+
Derived from the rashdf library (https://github.com/fema-ffrd/rashdf)
|
9
|
+
Copyright (c) 2024 fema-ffrd - MIT License
|
10
|
+
|
11
|
+
Features:
|
12
|
+
- Time parsing and conversion utilities
|
13
|
+
- HDF attribute and dataset access
|
14
|
+
- Geometric data extraction
|
15
|
+
- 2D flow area information retrieval
|
16
|
+
|
17
|
+
Classes:
|
18
|
+
HdfBase: Base class containing static methods for HDF operations
|
19
|
+
|
20
|
+
Key Methods:
|
21
|
+
Time Operations:
|
22
|
+
- get_simulation_start_time(): Get simulation start datetime
|
23
|
+
- get_unsteady_timestamps(): Get unsteady output timestamps
|
24
|
+
- parse_ras_datetime(): Parse RAS datetime strings
|
25
|
+
|
26
|
+
Data Access:
|
27
|
+
- get_2d_flow_area_names_and_counts(): Get 2D flow area info
|
28
|
+
- get_projection(): Get spatial projection
|
29
|
+
- get_attrs(): Access HDF attributes
|
30
|
+
- get_dataset_info(): Explore HDF structure
|
31
|
+
- get_polylines_from_parts(): Extract geometric polylines
|
32
|
+
|
33
|
+
Example:
|
34
|
+
```python
|
35
|
+
from ras_commander import HdfBase
|
36
|
+
|
37
|
+
with h5py.File('model.hdf', 'r') as hdf:
|
38
|
+
start_time = HdfBase.get_simulation_start_time(hdf)
|
39
|
+
timestamps = HdfBase.get_unsteady_timestamps(hdf)
|
40
|
+
```
|
41
|
+
"""
|
42
|
+
import re
|
43
|
+
from datetime import datetime, timedelta
|
44
|
+
import h5py
|
45
|
+
import numpy as np
|
46
|
+
import pandas as pd
|
47
|
+
import xarray as xr
|
48
|
+
from typing import List, Tuple, Union, Optional, Dict, Any
|
49
|
+
from pathlib import Path
|
50
|
+
import logging
|
51
|
+
from shapely.geometry import LineString, MultiLineString
|
52
|
+
|
53
|
+
from .HdfUtils import HdfUtils
|
54
|
+
from .Decorators import standardize_input, log_call
|
55
|
+
from .LoggingConfig import setup_logging, get_logger
|
56
|
+
|
57
|
+
logger = get_logger(__name__)
|
58
|
+
|
59
|
+
class HdfBase:
|
60
|
+
"""
|
61
|
+
Base class for HEC-RAS HDF file operations.
|
62
|
+
|
63
|
+
This class provides static methods for fundamental HDF file operations,
|
64
|
+
including time parsing, attribute access, and geometric data extraction.
|
65
|
+
All methods are designed to work with h5py.File objects or pathlib.Path
|
66
|
+
inputs.
|
67
|
+
|
68
|
+
Note:
|
69
|
+
This class is not meant to be instantiated. All methods are static
|
70
|
+
and should be called directly from the class.
|
71
|
+
"""
|
72
|
+
|
73
|
+
@staticmethod
|
74
|
+
def get_simulation_start_time(hdf_file: h5py.File) -> datetime:
|
75
|
+
"""
|
76
|
+
Extract the simulation start time from the HDF file.
|
77
|
+
|
78
|
+
Args:
|
79
|
+
hdf_file: Open HDF file object containing RAS simulation data.
|
80
|
+
|
81
|
+
Returns:
|
82
|
+
datetime: Simulation start time as a datetime object.
|
83
|
+
|
84
|
+
Raises:
|
85
|
+
ValueError: If Plan Information is not found or start time cannot be parsed.
|
86
|
+
|
87
|
+
Note:
|
88
|
+
Expects 'Plan Data/Plan Information' group with 'Simulation Start Time' attribute.
|
89
|
+
"""
|
90
|
+
plan_info = hdf_file.get("Plan Data/Plan Information")
|
91
|
+
if plan_info is None:
|
92
|
+
raise ValueError("Plan Information not found in HDF file")
|
93
|
+
time_str = plan_info.attrs.get('Simulation Start Time')
|
94
|
+
return HdfUtils.parse_ras_datetime(time_str.decode('utf-8'))
|
95
|
+
|
96
|
+
@staticmethod
|
97
|
+
def get_unsteady_timestamps(hdf_file: h5py.File) -> List[datetime]:
|
98
|
+
"""
|
99
|
+
Extract the list of unsteady timestamps from the HDF file.
|
100
|
+
|
101
|
+
Args:
|
102
|
+
hdf_file (h5py.File): Open HDF file object.
|
103
|
+
|
104
|
+
Returns:
|
105
|
+
List[datetime]: A list of datetime objects representing the unsteady timestamps.
|
106
|
+
"""
|
107
|
+
group_path = "Results/Unsteady/Output/Output Blocks/Base Output/Unsteady Time Series/Time Date Stamp (ms)"
|
108
|
+
raw_datetimes = hdf_file[group_path][:]
|
109
|
+
return [HdfUtils.parse_ras_datetime_ms(x.decode("utf-8")) for x in raw_datetimes]
|
110
|
+
|
111
|
+
@staticmethod
|
112
|
+
@standardize_input(file_type='plan_hdf')
|
113
|
+
def get_2d_flow_area_names_and_counts(hdf_path: Path) -> List[Tuple[str, int]]:
|
114
|
+
"""
|
115
|
+
Get the names and cell counts of 2D flow areas from the HDF file.
|
116
|
+
|
117
|
+
Args:
|
118
|
+
hdf_path (Path): Path to the HDF file.
|
119
|
+
|
120
|
+
Returns:
|
121
|
+
List[Tuple[str, int]]: A list of tuples containing the name and cell count of each 2D flow area.
|
122
|
+
|
123
|
+
Raises:
|
124
|
+
ValueError: If there's an error reading the HDF file or accessing the required data.
|
125
|
+
"""
|
126
|
+
try:
|
127
|
+
with h5py.File(hdf_path, 'r') as hdf_file:
|
128
|
+
flow_area_2d_path = "Geometry/2D Flow Areas"
|
129
|
+
if flow_area_2d_path not in hdf_file:
|
130
|
+
return []
|
131
|
+
|
132
|
+
attributes = hdf_file[f"{flow_area_2d_path}/Attributes"][()]
|
133
|
+
names = [HdfUtils.convert_ras_string(name) for name in attributes["Name"]]
|
134
|
+
|
135
|
+
cell_info = hdf_file[f"{flow_area_2d_path}/Cell Info"][()]
|
136
|
+
cell_counts = [info[1] for info in cell_info]
|
137
|
+
|
138
|
+
return list(zip(names, cell_counts))
|
139
|
+
except Exception as e:
|
140
|
+
logger.error(f"Error reading 2D flow area names and counts from {hdf_path}: {str(e)}")
|
141
|
+
raise ValueError(f"Failed to get 2D flow area names and counts: {str(e)}")
|
142
|
+
|
143
|
+
|
144
|
+
@staticmethod
|
145
|
+
@standardize_input(file_type='plan_hdf')
|
146
|
+
def get_projection(hdf_path: Path) -> Optional[str]:
|
147
|
+
"""
|
148
|
+
Get projection information from HDF file or RASMapper project file.
|
149
|
+
Converts WKT projection to EPSG code for GeoDataFrame compatibility.
|
150
|
+
|
151
|
+
Args:
|
152
|
+
hdf_path (Path): Path to the HDF file.
|
153
|
+
|
154
|
+
Returns:
|
155
|
+
Optional[str]: The projection as EPSG code (e.g. "EPSG:6556"), or None if not found.
|
156
|
+
"""
|
157
|
+
from pyproj import CRS
|
158
|
+
|
159
|
+
project_folder = hdf_path.parent
|
160
|
+
wkt = None
|
161
|
+
|
162
|
+
# Try HDF file
|
163
|
+
try:
|
164
|
+
with h5py.File(hdf_path, 'r') as hdf_file:
|
165
|
+
proj_wkt = hdf_file.attrs.get("Projection")
|
166
|
+
if proj_wkt is not None:
|
167
|
+
if isinstance(proj_wkt, (bytes, np.bytes_)):
|
168
|
+
wkt = proj_wkt.decode("utf-8")
|
169
|
+
logger.info(f"Found projection in HDF file: {hdf_path}")
|
170
|
+
return wkt
|
171
|
+
except Exception as e:
|
172
|
+
logger.error(f"Error reading projection from HDF file {hdf_path}: {str(e)}")
|
173
|
+
# Try RASMapper file if no HDF projection
|
174
|
+
if not wkt:
|
175
|
+
try:
|
176
|
+
rasmap_files = list(project_folder.glob("*.rasmap"))
|
177
|
+
if rasmap_files:
|
178
|
+
with open(rasmap_files[0], 'r') as f:
|
179
|
+
content = f.read()
|
180
|
+
|
181
|
+
proj_match = re.search(r'<RASProjectionFilename Filename="(.*?)"', content)
|
182
|
+
if proj_match:
|
183
|
+
proj_file = project_folder / proj_match.group(1).replace('.\\', '')
|
184
|
+
if proj_file.exists():
|
185
|
+
with open(proj_file, 'r') as f:
|
186
|
+
wkt = f.read().strip()
|
187
|
+
logger.info(f"Found projection in RASMapper file: {proj_file}")
|
188
|
+
return wkt
|
189
|
+
except Exception as e:
|
190
|
+
logger.error(f"Error reading RASMapper projection file: {str(e)}")
|
191
|
+
|
192
|
+
logger.critical(
|
193
|
+
"No valid projection found. Checked:\n"
|
194
|
+
f"1. HDF file projection attribute: {hdf_path}\n"
|
195
|
+
f"2. RASMapper projection file {proj_file} found in RASMapper file, but was invalid\n"
|
196
|
+
"To fix this:\n"
|
197
|
+
"1. Open RASMapper\n"
|
198
|
+
"2. Click Map > Set Projection\n"
|
199
|
+
"3. Select an appropriate projection file or coordinate system\n"
|
200
|
+
"4. Save the RASMapper project"
|
201
|
+
)
|
202
|
+
return None
|
203
|
+
|
204
|
+
@staticmethod
|
205
|
+
@standardize_input(file_type='plan_hdf')
|
206
|
+
def get_attrs(hdf_file: h5py.File, attr_path: str) -> Dict[str, Any]:
|
207
|
+
"""
|
208
|
+
Get attributes from an HDF file at a specified path.
|
209
|
+
|
210
|
+
Args:
|
211
|
+
hdf_file (h5py.File): The opened HDF file.
|
212
|
+
attr_path (str): Path to the attributes in the HDF file.
|
213
|
+
|
214
|
+
Returns:
|
215
|
+
Dict[str, Any]: Dictionary of attributes.
|
216
|
+
"""
|
217
|
+
try:
|
218
|
+
if attr_path not in hdf_file:
|
219
|
+
logger.warning(f"Path {attr_path} not found in HDF file")
|
220
|
+
return {}
|
221
|
+
|
222
|
+
return HdfUtils.hdf5_attrs_to_dict(hdf_file[attr_path].attrs)
|
223
|
+
except Exception as e:
|
224
|
+
logger.error(f"Error getting attributes from {attr_path}: {str(e)}")
|
225
|
+
return {}
|
226
|
+
|
227
|
+
@staticmethod
|
228
|
+
@standardize_input(file_type='plan_hdf')
|
229
|
+
def get_dataset_info(file_path: Path, group_path: str = '/') -> None:
|
230
|
+
"""
|
231
|
+
Recursively explore and print the structure of an HDF5 file.
|
232
|
+
|
233
|
+
Displays detailed information about groups, datasets, and their attributes
|
234
|
+
in a hierarchical format.
|
235
|
+
|
236
|
+
Args:
|
237
|
+
file_path: Path to the HDF5 file.
|
238
|
+
group_path: Starting group path to explore (default: root '/').
|
239
|
+
|
240
|
+
Prints:
|
241
|
+
- Group and dataset names with hierarchical indentation
|
242
|
+
- Dataset shapes and data types
|
243
|
+
- All attributes for groups and datasets
|
244
|
+
"""
|
245
|
+
def recurse(name, obj, indent=0):
|
246
|
+
spacer = " " * indent
|
247
|
+
if isinstance(obj, h5py.Group):
|
248
|
+
print(f"{spacer}Group: {name}")
|
249
|
+
HdfBase.print_attrs(name, obj)
|
250
|
+
for key in obj:
|
251
|
+
recurse(f"{name}/{key}", obj[key], indent+1)
|
252
|
+
elif isinstance(obj, h5py.Dataset):
|
253
|
+
print(f"{spacer}Dataset: {name}")
|
254
|
+
print(f"{spacer} Shape: {obj.shape}")
|
255
|
+
print(f"{spacer} Dtype: {obj.dtype}")
|
256
|
+
HdfBase.print_attrs(name, obj)
|
257
|
+
else:
|
258
|
+
print(f"{spacer}Unknown object: {name}")
|
259
|
+
|
260
|
+
try:
|
261
|
+
with h5py.File(file_path, 'r') as hdf_file:
|
262
|
+
if group_path in hdf_file:
|
263
|
+
print("")
|
264
|
+
print(f"Exploring group: {group_path}\n")
|
265
|
+
group = hdf_file[group_path]
|
266
|
+
for key in group:
|
267
|
+
print("")
|
268
|
+
recurse(f"{group_path}/{key}", group[key], indent=1)
|
269
|
+
else:
|
270
|
+
print(f"Group path '{group_path}' not found in the HDF5 file.")
|
271
|
+
except Exception as e:
|
272
|
+
print(f"Error exploring HDF5 file: {e}")
|
273
|
+
|
274
|
+
@staticmethod
|
275
|
+
@log_call
|
276
|
+
@standardize_input(file_type='plan_hdf')
|
277
|
+
def get_polylines_from_parts(hdf_path: Path, path: str, info_name: str = "Polyline Info",
|
278
|
+
parts_name: str = "Polyline Parts",
|
279
|
+
points_name: str = "Polyline Points") -> List[LineString]:
|
280
|
+
"""
|
281
|
+
Extract polylines from HDF file parts data.
|
282
|
+
|
283
|
+
Args:
|
284
|
+
hdf_path: Path to the HDF file.
|
285
|
+
path: Internal HDF path to polyline data.
|
286
|
+
info_name: Name of polyline info dataset.
|
287
|
+
parts_name: Name of polyline parts dataset.
|
288
|
+
points_name: Name of polyline points dataset.
|
289
|
+
|
290
|
+
Returns:
|
291
|
+
List of Shapely LineString/MultiLineString geometries.
|
292
|
+
|
293
|
+
Note:
|
294
|
+
Expects HDF datasets containing:
|
295
|
+
- Polyline information (start points and counts)
|
296
|
+
- Parts information for multi-part lines
|
297
|
+
- Point coordinates
|
298
|
+
"""
|
299
|
+
try:
|
300
|
+
with h5py.File(hdf_path, 'r') as hdf_file:
|
301
|
+
polyline_info_path = f"{path}/{info_name}"
|
302
|
+
polyline_parts_path = f"{path}/{parts_name}"
|
303
|
+
polyline_points_path = f"{path}/{points_name}"
|
304
|
+
|
305
|
+
polyline_info = hdf_file[polyline_info_path][()]
|
306
|
+
polyline_parts = hdf_file[polyline_parts_path][()]
|
307
|
+
polyline_points = hdf_file[polyline_points_path][()]
|
308
|
+
|
309
|
+
geoms = []
|
310
|
+
for pnt_start, pnt_cnt, part_start, part_cnt in polyline_info:
|
311
|
+
points = polyline_points[pnt_start : pnt_start + pnt_cnt]
|
312
|
+
if part_cnt == 1:
|
313
|
+
geoms.append(LineString(points))
|
314
|
+
else:
|
315
|
+
parts = polyline_parts[part_start : part_start + part_cnt]
|
316
|
+
geoms.append(
|
317
|
+
MultiLineString(
|
318
|
+
list(
|
319
|
+
points[part_pnt_start : part_pnt_start + part_pnt_cnt]
|
320
|
+
for part_pnt_start, part_pnt_cnt in parts
|
321
|
+
)
|
322
|
+
)
|
323
|
+
)
|
324
|
+
return geoms
|
325
|
+
except Exception as e:
|
326
|
+
logger.error(f"Error getting polylines: {str(e)}")
|
327
|
+
return []
|
328
|
+
|
329
|
+
@staticmethod
|
330
|
+
def print_attrs(name: str, obj: Union[h5py.Dataset, h5py.Group]) -> None:
|
331
|
+
"""
|
332
|
+
Print the attributes of an HDF5 object (Dataset or Group).
|
333
|
+
|
334
|
+
Args:
|
335
|
+
name (str): Name of the object
|
336
|
+
obj (Union[h5py.Dataset, h5py.Group]): HDF5 object whose attributes are to be printed
|
337
|
+
"""
|
338
|
+
if len(obj.attrs) > 0:
|
339
|
+
print(f" Attributes for {name}:")
|
340
|
+
for key, value in obj.attrs.items():
|
341
|
+
print(f" {key}: {value}")
|
342
|
+
|
343
|
+
|
344
|
+
|