From: Alexander Vasarab Date: Wed, 21 Dec 2022 03:47:53 +0000 (-0800) Subject: Add version to changelog X-Git-Tag: v3.4.1^0 X-Git-Url: https://wylark.com/src/infoex-autowx.git/commitdiff_plain/64df767d27f91a0da3d745484a96751d75cae917?hp=d0f0a9f2b3f26fce76dedc4e6a510e17f65df24c Add version to changelog --- 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(',')