ras-commander 0.76.0__py3-none-any.whl → 0.78.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/Decorators.py +256 -256
- ras_commander/HdfInfiltration.py +1529 -1529
- ras_commander/HdfResultsPlan.py +380 -380
- ras_commander/RasExamples.py +543 -424
- ras_commander/RasGeo.py +3 -3
- ras_commander/RasMap.py +467 -252
- ras_commander/RasPlan.py +1536 -1536
- ras_commander/RasPrj.py +1479 -1474
- ras_commander/__init__.py +1 -1
- {ras_commander-0.76.0.dist-info → ras_commander-0.78.0.dist-info}/METADATA +17 -12
- {ras_commander-0.76.0.dist-info → ras_commander-0.78.0.dist-info}/RECORD +14 -14
- {ras_commander-0.76.0.dist-info → ras_commander-0.78.0.dist-info}/WHEEL +1 -1
- {ras_commander-0.76.0.dist-info → ras_commander-0.78.0.dist-info}/licenses/LICENSE +0 -0
- {ras_commander-0.76.0.dist-info → ras_commander-0.78.0.dist-info}/top_level.txt +0 -0
ras_commander/RasGeo.py
CHANGED
@@ -206,10 +206,10 @@ class RasGeo:
|
|
206
206
|
|
207
207
|
# Create DataFrame
|
208
208
|
if base_table_rows:
|
209
|
-
df = pd.DataFrame(base_table_rows, columns=['Table Number', 'Land Cover Name', 'Base
|
209
|
+
df = pd.DataFrame(base_table_rows, columns=['Table Number', 'Land Cover Name', 'Base Mannings n Value'])
|
210
210
|
return df
|
211
211
|
else:
|
212
|
-
return pd.DataFrame(columns=['Table Number', 'Land Cover Name', 'Base
|
212
|
+
return pd.DataFrame(columns=['Table Number', 'Land Cover Name', 'Base Mannings n Value'])
|
213
213
|
|
214
214
|
|
215
215
|
@staticmethod
|
@@ -381,7 +381,7 @@ class RasGeo:
|
|
381
381
|
|
382
382
|
# Add base table entries
|
383
383
|
for _, row in mannings_data.iterrows():
|
384
|
-
new_content.append(f"{row['Land Cover Name']},{row['Base Manning
|
384
|
+
new_content.append(f"{row['Land Cover Name']},{row['Base Manning''s n Value']}\n")
|
385
385
|
|
386
386
|
# Replace the section in the original file
|
387
387
|
updated_lines = lines[:start_idx] + new_content + lines[end_idx:]
|