From 64df767d27f91a0da3d745484a96751d75cae917 Mon Sep 17 00:00:00 2001 From: Alexander Vasarab Date: Tue, 20 Dec 2022 19:47:53 -0800 Subject: [PATCH] Add version to changelog --- README.md | 5 +++++ infoex-autowx.py | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 93fdea2..a90acbf 100644 --- a/README.md +++ b/README.md @@ -334,6 +334,11 @@ windGustSpeedNum Version history --------------- +- 3.4.1 (Dec 2022) + + Reverse "American" units mode such that precip values are in metric, + and wind values are in imperial/English. + - 3.4.0 (Mar 2022) Implement HN24 for NRCS SNOTEL stations, and implement "American" diff --git a/infoex-autowx.py b/infoex-autowx.py index 3d3da27..54fab39 100755 --- a/infoex-autowx.py +++ b/infoex-autowx.py @@ -117,7 +117,9 @@ def setup_config(config): # massage provider config items if station['provider'] == 'nrcs': - station['source'] = 'https://www.wcc.nrcs.usda.gov/awdbWebService/services?WSDL' + #station['source'] = 'https://www.wcc.nrcs.usda.gov/awdbWebService/services?WSDL' + station['source'] = 'https://wcc.sc.egov.usda.gov/awdbWebService/services?WSDL' + station['station_id'] = config['station']['station_id'] station['desired_data'] = config['station']['desired_data'].split(',') -- 2.30.2