From 38d0b07300af6c7c8e59a1470d0fc963f9e8ab0e Mon Sep 17 00:00:00 2001 From: Hauke Schulz <43613877+observingClouds@users.noreply.github.com> Date: Thu, 8 Sep 2022 00:50:55 -0700 Subject: [PATCH] Update README.md --- README.md | 27 +++++++-------------------- 1 file changed, 7 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 5a493f2..a14ac7c 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# pySonde +# pySonde: converting radiosonde files to netcdf + +pySonde converts Vaisala's radiosonde files (mwx) to netCDF4 and interpolates them if needed to a common height grid for easier processing. ## Setup ``` -pip install -r requirements.txt -python setup.py sdist -pip install dist/pysonde*.tar.gz +pip install pysonde ``` For development @@ -31,21 +31,8 @@ Windows: sounding_converter.exe -i examples/level0/BCO_20200126_224454.mwx -o "test_{direction}.nc" -c config/main.yaml ``` -## Simple Plotting - -The package also includes a few plotting routines that can be called with e.g. - -Unix: -```sh -sounding_visualize -i converted/file/sounding.nc -``` +The configuration of attributes, variable names and units of the input and output is done via yaml files in the `config` folder. -## SkewT Plotting +To post-process radiosoundings with pysonde and track the processing steps, a new repository should be created that only contains the `config` folder and its scripts. An additional bash script with the `sounding_converter` calls tracks the processing steps. The version used of pysonde is automatically inserted into the output files. -A skewT diagram can be created with - -Unix: - -```sh -sounding_skewT -i converted/file/sounding.nc -``` +The [repository containing the processing setup for the circBrazil campaign](https://github.com/observingClouds/soundings_circbrazil) can serve as a template.