Difference between revisions of "Elle grid"
From Lrose Wiki
Line 25: | Line 25: | ||
<li>Convert the raw files to CfRadial files</li></ol> | <li>Convert the raw files to CfRadial files</li></ol> | ||
$rdir/RadxConvert -params ./params/RadxConvert.* -f $RAW/$RADAR_NAME/$days/*.ar2v | $rdir/RadxConvert -params ./params/RadxConvert.* -f $RAW/$RADAR_NAME/$days/*.ar2v | ||
+ | <ol start="6" style="list-style-type: decimal;"> | ||
+ | <li>Regrid the data to a cartesian grid and apply the convective stratiform algorithm</li></ol> | ||
+ | $rdir/Radx2Grid -params ./params/RadxGrid.* -f convert/$RADAR_NAME/$days/*.nc | ||
+ | |||
+ | === Make modifications to the the gridding procedure === |
Revision as of 17:43, 1 September 2020
elle grid tutorial
This workflow will convert several raw radar files to the CfRadial format, interpolate the data to a cartesian grid, and apply a convective stratiform separation algorithm.
Run each program one by one on the command line
- Download the elle_grid.tar.gz file
- Extract contents into the desired directory
tar -zxvf elle_grid.tar.gz
You'll end up with a directory that includes the raw radar files and parameter files needed to run RadxConvert and Radx2Grid.
- Set the directories (note: there is purposely no slash at the beginning of PROJ). Together, HOMED/PROJ should direct you to the elle_grid directory. RAW is the full path to the raw radar data in /elle_grid.
export HOMED="/path/to/home/directory" export PROJ=“short/path/to/elle_grid” export RAW="/path/to/elle_basic/raw"
- Set the variables in the terminal and set the date. Print out the directory structure to make sure it's pointing to the right directory.
export RADAR_NAME="KHGX" export days=“20170827” export rdir="/path/to/lrose/bin" echo $HOMED/$PROJ
- Convert the raw files to CfRadial files
$rdir/RadxConvert -params ./params/RadxConvert.* -f $RAW/$RADAR_NAME/$days/*.ar2v
- Regrid the data to a cartesian grid and apply the convective stratiform algorithm
$rdir/Radx2Grid -params ./params/RadxGrid.* -f convert/$RADAR_NAME/$days/*.nc