Skip to content

Commit e4eaaef

Browse files
yuvraajnarulapre-commit-ci[bot]jacobbieker
authored
WeatherStationReader Processing & Add Comprehensive Tests (#141)
* station reader and it's tests * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * QC defaults added, removed test dataset and create empty function and refactored test function * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Prehooks formatting, SynopticPy conditional import and handling of unexpected response format * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Ruff prehooks fixes for weather_station_reader.py * Ruff prehooks fixes for weather_station_reader.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Test_read_weatherreal_file assert fix and ruff checks * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * ruff checks * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update graph_weather/data/weather_station_reader.py --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Jacob Prince-Bieker <jacob@bieker.tech>
1 parent 066a027 commit e4eaaef

File tree

4 files changed

+1173
-0
lines changed

4 files changed

+1173
-0
lines changed

graph_weather/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Main import for the complete models"""
22

33
from .data.nnja_ai import SensorDataset, collate_fn
4+
from .data.weather_station_reader import WeatherStationReader
45
from .models.analysis import GraphWeatherAssimilator
56
from .models.forecast import GraphWeatherForecaster

graph_weather/data/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
"""Dataloaders and data processing utilities"""
22

33
from .nnja_ai import SensorDataset, collate_fn
4+
from .weather_station_reader import WeatherStationReader

0 commit comments

Comments
 (0)