Retrieval of sounding from U. Wyoming web-page from terminal
Python script to retrieve sounding from U. Wyoming web page directly from the terminal

Retrieval is done by directly reaping the outcome of the request. A single ASCII file is created with the outcomes of the request with the same ASCII format obtained from the web page. The outcome can be directly transformed to netCDF by means of the UWyoming_snd_nc.py script.
web-page only allows for monthly retrievals of a single year.
NOTE: This is a python3 script


get_UWyoming_snd.py -y [year] -m [mon] -i [idate] -e [edate] -r [region] -s [stat]
  [year]= year to retrieve from (in [YYYY] format)
  [mon]= month to retrieve from
  [idate]= Initial date of the period to retrieve from ([DD][HH] format)
  [edate]= End date of the period to retrieve from ([DD][HH] format)
  [region]= region ('europe': 'Europe', 'samer': 'South America')
  [stat]= station number (reference from U. Wyoming web-page)
* Retrieval of soundings from June 2019 27th 0 to 28th 0 UTC Ezeiza, ARG:
  get_UWyoming_snd.py -y 2019 -m 6 -i 2700 -e 2800 -r samer -s 87576
docs/