domainiac 10.0.1__tar.gz → 10.0.2__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-10.0.1 → domainiac-10.0.2}/PKG-INFO +1 -1
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/managers/masterdata_manager.py +3 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/pyproject.toml +1 -1
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/__init__.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/functions/__init__.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/functions/conversions.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/functions/interpolation.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/functions/solar.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/functions/temperature.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/functions/typing.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/functions/wind.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/managers/__init__.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/managers/availability_manager.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/managers/metering_manager.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/managers/nwp_manager.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/managers/outage_manager.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/managers/resource_manager.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/managers/schemas/masterdata_manager.json +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/modeling/__init__.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/modeling/nwp.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/modeling/plant.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/wrappers/__init__.py +0 -0
- {domainiac-10.0.1 → domainiac-10.0.2}/domainiac/wrappers/cache_wrapper.py +0 -0
|
@@ -78,6 +78,9 @@ class MasterdataManager:
|
|
|
78
78
|
df_unit = self._get_table("masterdata_emda_units")
|
|
79
79
|
df_market_participant = self._get_table("masterdata_emda_market_participants")
|
|
80
80
|
|
|
81
|
+
# Only time intervals where the plant is commissioned is relevant
|
|
82
|
+
df_plant = df_plant[~df_plant["commission_time_utc"].isna()]
|
|
83
|
+
|
|
81
84
|
df_plant = self._intersect_time_and_comission_intervals(df_plant)
|
|
82
85
|
df_unit = self._intersect_time_and_comission_intervals(df_unit)
|
|
83
86
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "domainiac"
|
|
3
|
-
version = "10.0.
|
|
3
|
+
version = "10.0.2"
|
|
4
4
|
description = "Package for working with Energinet data, but with specialized functions used for Enigma."
|
|
5
5
|
authors = [{ name = "Team Enigma", email = "enigma@energinet.dk" }]
|
|
6
6
|
requires-python = ">=3.10"
|
|
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
|
|
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
|