If my_address_file_geocoded.csv
is a file in the current working directory with coordinate columns named lat
, lon
, start_date
, and end_date
then the DeGAUSS command:
docker run --rm -v $PWD:/tmp ghcr.io/degauss-org/narr:1.0.0 my_address_file_geocoded.csv
will produce my_address_file_geocoded_narr_1.0.0_weather.csv
with added columns:
air.2m
: air temperature at 2mrhum.2m
: humidity at 2mUsers can supply an optional argument to select which NARR variables are returned:
Argument | Variables Returned | Variable Definitions |
---|---|---|
weather (default) |
air.2m rhum.2m |
air temperature at 2m humidity at 2m |
wind |
uwnd.10m vwnd.10m |
U wind speed at 10m V wind speed at 10m |
atmosphere |
hpbl vis |
planetary boundary layer height visibility |
precippres |
acpcp pres.sfc |
accumulated total precipitation surface pressure |
For example,
docker run --rm -v $PWD:/tmp ghcr.io/degauss-org/narr:1.0.0 my_address_file_geocoded.csv wind
will return uwnd.10m
and vwnd.10m
.
If this container errors unexpectedly, you may need to allocate more RAM to Docker. Please see the troubleshooting guide for more information.
This container was built using the appc package.
For detailed documentation on DeGAUSS, including general usage and installation, please see the DeGAUSS homepage.