Coverage for aixweather/transformation_to_core_data/__init__.py: 100%

0 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2025-01-06 16:01 +0000

1""" 

2AixWeather Transformation to Core Data 

3 

4The 'transformation_to_core_data' module contains functions to transform imported weather data to a 

5standardized core data format within the AixWeather package (see auxiliary.py). 

6 

7This core data format adheres to specific guidelines: 

8 

9- Timezone: UTC 

10- Hourly data 

11- Index is a datetime index (DatetimeIndex complete and monotonic) 

12- Measurement at the indicated time (not as average for the following or preceding hour) 

13- Always the same set of variables names (see core_data) 

14- Missing values are displayed as 'nan' 

15 

16These transformation functions take imported_data as input and convert it to the specified core data format, 

17ensuring uniformity and adherence to the core data guidelines. 

18 

19Each module is designed to handle data from a specific source or format. 

20"""