domainiac 5.0.0__tar.gz → 6.0.0__tar.gz
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.
- {domainiac-5.0.0 → domainiac-6.0.0}/PKG-INFO +1 -1
- {domainiac-5.0.0 → domainiac-6.0.0}/domainiac/managers/metering_manager.py +1 -1
- {domainiac-5.0.0 → domainiac-6.0.0}/domainiac/managers/nwp_manager.py +4 -1
- {domainiac-5.0.0 → domainiac-6.0.0}/pyproject.toml +1 -1
- {domainiac-5.0.0 → domainiac-6.0.0}/domainiac/__init__.py +0 -0
- {domainiac-5.0.0 → domainiac-6.0.0}/domainiac/managers/__init__.py +0 -0
- {domainiac-5.0.0 → domainiac-6.0.0}/domainiac/managers/masterdata_manager.py +0 -0
- {domainiac-5.0.0 → domainiac-6.0.0}/domainiac/managers/plant_manager.py +0 -0
- {domainiac-5.0.0 → domainiac-6.0.0}/domainiac/managers/resource_manager.py +0 -0
- {domainiac-5.0.0 → domainiac-6.0.0}/domainiac/managers/unit_manager.py +0 -0
- {domainiac-5.0.0 → domainiac-6.0.0}/domainiac/modeling/__init__.py +0 -0
- {domainiac-5.0.0 → domainiac-6.0.0}/domainiac/modeling/nwp.py +0 -0
- {domainiac-5.0.0 → domainiac-6.0.0}/domainiac/modeling/plant.py +0 -0
- {domainiac-5.0.0 → domainiac-6.0.0}/domainiac/wrappers/__init__.py +0 -0
- {domainiac-5.0.0 → domainiac-6.0.0}/domainiac/wrappers/cache_wrapper.py +0 -0
@@ -182,10 +182,13 @@ class NWPManager:
|
|
182
182
|
df = df.drop(
|
183
183
|
columns=[
|
184
184
|
"created_time_utc",
|
185
|
+
"valid_from_time_utc",
|
186
|
+
"valid_to_time_utc",
|
185
187
|
"altitude_m",
|
186
188
|
"longitude",
|
187
189
|
"latitude",
|
188
|
-
]
|
190
|
+
],
|
191
|
+
errors="ignore",
|
189
192
|
)
|
190
193
|
|
191
194
|
return df
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|