MBKEngineers / collect

MBK Python scripts for scraping water data from the web
MIT License
3 stars 1 forks source link

BUG: get_station_sensors produces empty list for each duration #102

Open narlesky opened 11 months ago

narlesky commented 11 months ago

Description

I believe this function previously relied on a different behavior from the CDEC query service that would populate a query that did not specify sensors with all available sensors. As it stands, the method serves no purpose and should be removed.

Minimum Working Example (MWE)

import datetime as dt
from collect.dwr import cdec
cdec.get_station_sensors('CFW', dt.datetime(2023, 1, 1), dt.datetime(2023, 1, 3))

returns {'E': [], 'H': [], 'D': [], 'M': []}

Breaking Changes

TBD

Priority

Low