Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions continuous-integration/environment-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ dependencies:
- arm-test-data
- distributed
- xarray==2025.6.1
- pandas
- numpy
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"

[project]
name = "radclss"
version = "2026.3.5"
version = "2026.3.6"
description = "Extracted Radar Columns and In Situ Sensors"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
authors = [{ name = "rjackson" }, {name = "jrobrien91"}]
license = { text = "MIT" }
dependencies = [
"arm_pyart",
"numpy",
"numpy<2.4.0",
"xarray",
"pandas",
"xradar",
Expand Down
2 changes: 1 addition & 1 deletion src/radclss/config/default_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@
],
}

DEFAULT_NEXRAD_RADARS = {"BNF": "KHTX", "SGP": "KVNX"}
DEFAULT_NEXRAD_RADARS = {"bnf": "KHTX", "sgp": "KVNX"}


def set_discarded_variables(instrument, var_list):
Expand Down
2 changes: 1 addition & 1 deletion src/radclss/core/radclss_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def _get_nexrad_wrapper(time_str):
print(
f" ERROR fetching NEXRAD data (total failures: {failed_count})"
)
logging.log.exception(error)
logging.exception(error)

if verbose:
print(
Expand Down
4 changes: 2 additions & 2 deletions src/radclss/util/column_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ def get_nexrad_column(

"""
if nexrad_radar is None:
if site in DEFAULT_NEXRAD_RADARS.keys():
nexrad_radar = DEFAULT_NEXRAD_RADARS[site]
if site.lower() in DEFAULT_NEXRAD_RADARS.keys():
nexrad_radar = DEFAULT_NEXRAD_RADARS[site.lower()]
else:
raise UserWarning(
f"There are no NEXRAD radars within 100 km of {site}. Returning None."
Expand Down
Loading