ecopipeline 0.4.15__tar.gz → 0.4.16__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.
- {ecopipeline-0.4.15/src/ecopipeline.egg-info → ecopipeline-0.4.16}/PKG-INFO +1 -1
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/setup.cfg +1 -1
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline/load/load.py +1 -1
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline/transform/transform.py +1 -1
- {ecopipeline-0.4.15 → ecopipeline-0.4.16/src/ecopipeline.egg-info}/PKG-INFO +1 -1
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/LICENSE +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/README.md +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/pyproject.toml +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/setup.py +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline/__init__.py +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline/extract/__init__.py +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline/extract/extract.py +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline/load/__init__.py +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline/transform/__init__.py +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline/transform/bayview.py +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline/transform/lbnl.py +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline/utils/ConfigManager.py +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline/utils/__init__.py +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline/utils/unit_convert.py +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline.egg-info/SOURCES.txt +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline.egg-info/dependency_links.txt +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline.egg-info/requires.txt +0 -0
- {ecopipeline-0.4.15 → ecopipeline-0.4.16}/src/ecopipeline.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = ecopipeline
|
|
3
|
-
version = 0.4.
|
|
3
|
+
version = 0.4.16
|
|
4
4
|
authors = ["Carlos Bello, <bellocarlos@seattleu.edu>, Emil Fahrig <fahrigemil@seattleu.edu>, Casey Mang <cmang@seattleu.edu>, Julian Harris <harrisjulian@seattleu.edu>, Roger Tram <rtram@seattleu.edu>, Nolan Price <nolan@ecotope.com>"]
|
|
5
5
|
description = Contains functions for use in Ecotope Datapipelines
|
|
6
6
|
long_description = file: README.md
|
|
@@ -289,7 +289,7 @@ def load_event_table(config : ConfigManager, event_df: pd.DataFrame, site_name :
|
|
|
289
289
|
site_name = config.get_site_name()
|
|
290
290
|
column_names = f"start_time_pt,site_name"
|
|
291
291
|
column_types = ["datetime","varchar(25)","datetime",
|
|
292
|
-
"ENUM('HW_OUTAGE', 'HW_LOSS','PIPELINE_STATUS', 'MISC_EVENT', 'PIPELINE_UPLOAD', 'DATA_LOSS', 'DATA_LOSS_COP', 'SITE_VISIT', 'COMMISIONING', 'SYSTEM_MAINTENENCE', 'POWER_OUTAGE', 'EQUIPMENT_MALFUNCTION','PARTIAL_OCCUPANCY','INSTALLATION_ERROR')",
|
|
292
|
+
"ENUM('HW_OUTAGE', 'HW_LOSS','PIPELINE_STATUS', 'MISC_EVENT', 'PIPELINE_UPLOAD', 'DATA_LOSS', 'DATA_LOSS_COP', 'SITE_VISIT', 'COMMISIONING', 'SYSTEM_MAINTENENCE', 'POWER_OUTAGE', 'EQUIPMENT_MALFUNCTION','PARTIAL_OCCUPANCY','INSTALLATION_ERROR','SETPOINT_ADJUSTMENT')",
|
|
293
293
|
"varchar(200)"]
|
|
294
294
|
column_list = ['end_time_pt','event_type', 'event_detail']
|
|
295
295
|
if not set(column_list).issubset(event_df.columns):
|
|
@@ -346,7 +346,7 @@ def nullify_erroneous(original_df: pd.DataFrame, config : ConfigManager) -> pd.D
|
|
|
346
346
|
|
|
347
347
|
return df
|
|
348
348
|
|
|
349
|
-
def heat_output_calc(df: pd.DataFrame, flow_var : str, hot_temp : str, cold_temp : str, heat_out_col_name : str, return_as_kw : bool = True):
|
|
349
|
+
def heat_output_calc(df: pd.DataFrame, flow_var : str, hot_temp : str, cold_temp : str, heat_out_col_name : str, return_as_kw : bool = True) -> pd.DataFrame:
|
|
350
350
|
"""
|
|
351
351
|
Function will take a flow varriable and two temperature inputs to calculate heat output
|
|
352
352
|
|
|
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
|