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/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 Manning\'s n Value'])
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 Manning\'s n Value'])
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\'s n Value']}\n")
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:]