<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.lrose.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jcdehart</id>
	<title>Lrose Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.lrose.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jcdehart"/>
	<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php/Special:Contributions/Jcdehart"/>
	<updated>2026-04-30T03:34:46Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.33.0</generator>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=RadxBeamBlock&amp;diff=1087</id>
		<title>RadxBeamBlock</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=RadxBeamBlock&amp;diff=1087"/>
		<updated>2025-09-22T17:33:30Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Important parameters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;RadxBeamBlock estimates the amount of beam blockage due to terrain near a radar.&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
&lt;br /&gt;
Overall, RadxBeamBlock takes elevation data, the radar location, and radar characteristics to estimate how much blockage occurs due to terrain.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== '''Prerequesites''' ===&lt;br /&gt;
&lt;br /&gt;
The following items are required:&lt;br /&gt;
&lt;br /&gt;
* Digital elevation model data&lt;br /&gt;
* Radar antenna location&lt;br /&gt;
* Radar characteristics&lt;br /&gt;
* Parameter files for RadxBeamBlock&lt;br /&gt;
&lt;br /&gt;
=== '''Digital elevation model data''' ===&lt;br /&gt;
Note: a NASA Earthdata account is needed to download topography data. Creating an account is free and quick to do, and can be done [https://www.earthdata.nasa.gov/ here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The supported digital elevation models include Shuttle Radar Topography Mission (SRTM) and ESRI grid data (spheroid). SRTM data can be found online '''[https://lpdaac.usgs.gov/products/srtmgl3sv003/#tools here]'''. SRTM data for the entire globe is 22GB and can be a lot to download! If you only need a subsection for your region of interest, use a recursive script to download them. If you only need a few files, this is easy enough to do manually. Remember to unzip your files. Once completed, you should have a directory with .hgt files spanning your region.&lt;br /&gt;
&lt;br /&gt;
 Example:&lt;br /&gt;
  1 #!/bin/bash&lt;br /&gt;
  2 &lt;br /&gt;
  3 # download SRTM data for Taiwan region&lt;br /&gt;
  4 &lt;br /&gt;
  5 for lat in `seq 19 25`&lt;br /&gt;
  6   do&lt;br /&gt;
  7     for lon in `seq 117 123`&lt;br /&gt;
  8       do&lt;br /&gt;
  9       # get files&lt;br /&gt;
 10       wget --user=$USERNAME --password=$PASSWORD https://e4ftl01.cr.usgs.gov/MEASURES/SRTMGL1.003/2000.02.11/N${lat}E${lon}.SRTMGL1.hgt.zip&lt;br /&gt;
 11   done&lt;br /&gt;
 12 done&lt;br /&gt;
&lt;br /&gt;
=== '''Radar location and characteristics''' ===&lt;br /&gt;
&lt;br /&gt;
The radar location requires the latitude, longitude, and elevation of the antenna (ground level + radar height). In addition, characteristics including the wavelength, beamwidth, gate spacing, azimuths, and elevation angles are required. This information can be found using RadxPrint on a raw radar file or converted radar CfRadial file.&lt;br /&gt;
 RadxPrint -f /path/to/radar/file&lt;br /&gt;
&lt;br /&gt;
=== '''Parameter files''' ===&lt;br /&gt;
&lt;br /&gt;
RadxBeamBlock uses one parameter file. Compared to other Radx applications, the RadxBeamBlock parameter file requires just a few edits in order to run. Most of the parameters that need to be changed relate to the radar characteristics.&lt;br /&gt;
&lt;br /&gt;
==== '''1) Main parameter file''' ====&lt;br /&gt;
&lt;br /&gt;
===== '''Ensure file is up to date''' =====&lt;br /&gt;
&lt;br /&gt;
To obtain the default parameter file, use the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxBeamBlock -print_params &amp;amp;gt; param_file_name&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you already have a parameter file and simply want to check for (and add) updated parameters while retaining current parameters, use the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxBeamBlock -params orig_param_file_name -print_params &amp;amp;gt; new_param_file_name&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== '''Important parameters''' =====&lt;br /&gt;
&lt;br /&gt;
Input params&lt;br /&gt;
&lt;br /&gt;
* input_dem_parth: directory containing the elevation data&lt;br /&gt;
* input_data_format: specifies the format of the elevation data (examples provided in the parameter file)&lt;br /&gt;
&lt;br /&gt;
Radar parameters&lt;br /&gt;
&lt;br /&gt;
* radar_location: latitude, longitude, and elevation (ground elevation plus the radar height in km) of the radar antenna&lt;br /&gt;
* radar_wavelength_cm: radar wavelength (cm)&lt;br /&gt;
* horiz_beam_width_deg: horizontal beamwidth (degrees)&lt;br /&gt;
* vert_beam_width_deg: vertical beamwidth (degrees)&lt;br /&gt;
* gates: starting distance, gate spacing (km), and number of gates&lt;br /&gt;
* azimuths: starting azimuth, azimuth spacing (degrees), and number of azimuths&lt;br /&gt;
* elevations: starting elevation angle, angle spacing (degrees), and number of elevation angles&lt;br /&gt;
&lt;br /&gt;
Output directory and file name&lt;br /&gt;
&lt;br /&gt;
* output_dir: files will be written to this directory&lt;br /&gt;
* output_format: select the preferred file type (usually CFRADIAL)&lt;br /&gt;
&lt;br /&gt;
=== '''Running RadxBeamBlock''' ===&lt;br /&gt;
&lt;br /&gt;
To check all command line options for RadxBeamBlock, including debugging options and file paths, type the following command into a terminal.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxBeamBlock -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once your parameter file is complete, use a command similar to the following to run the application:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxBeamBlock -params param_file_name&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1086</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1086"/>
		<updated>2025-07-08T15:54:50Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/register.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Verify the Installation ====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''LROSE Science Gateway and Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
==== Quick Start Tutorial ====&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutter RadxClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/4/43/2023_LROSE_AMS_Workshop_Notes.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/2/2d/2025_LROSE_AMS_Workshop_Notes.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE 2025 Intermediate SAMURAI Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_SAMURAI_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1085</id>
		<title>Lrose quickstart</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1085"/>
		<updated>2025-07-07T23:03:25Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Install */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== '''LROSE quickstart tutorial''' ===&lt;br /&gt;
&lt;br /&gt;
Follow these steps to get up and running quickly with LROSE, and then continue through the documentation for more details about LROSE software.&lt;br /&gt;
&lt;br /&gt;
==== '''A Basic LROSE Workflow''' ====&lt;br /&gt;
This quick start guide covers a basic LROSE analysis workflow:&lt;br /&gt;
&amp;lt;ol start=&amp;quot;1&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Print data header from a NEXRAD file using RadxPrint.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;2&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Convert Level II data to CfRadial format using RadxConvert.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;3&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Display the data in CfRadial format using Hawkeye.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;4&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Perform coordinate transformations from the polar grid to a Cartesian grid using Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;5&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Create a parameter file, which can be edited and used in Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Install''' ====&lt;br /&gt;
Installation instructions for brew, Linux packages, and source can be found on the [https://github.com/NCAR/lrose-core/releases GitHub release page] for each release of LROSE.&lt;br /&gt;
&lt;br /&gt;
==== '''Get some data''' ====&lt;br /&gt;
A sample NEXRAD level II file is available [http://lrose.net/downloads/Level2_KAMX_20161006_1906.ar2v here] for use with this quick start guide.  &lt;br /&gt;
If you have your own data, just replace the filename in all the subsequent examples with your data.  &lt;br /&gt;
Open a terminal on Mac or Linux, and change the directory to where your data resides.  &lt;br /&gt;
 cd /path/to/my/data&lt;br /&gt;
&lt;br /&gt;
==== '''Inspect the data''' ====&lt;br /&gt;
LROSE can handle 24 radar and lidar formats (and counting). To see if your data works with LROSE, first use RadxPrint to print the metadata.  &lt;br /&gt;
&lt;br /&gt;
The following instructions assume you are using the LROSE binaries. If you are using your own data, replace the name of the file. The -f flag tells LROSE to use the FILELIST mode, where the path to the file is provided (the wildcard symbol * can be used to link to multiple files).&lt;br /&gt;
 RadxPrint -f $PWD/Level2_KAMX_20161006_1906.ar2v  &lt;br /&gt;
If the program returns ‘File format not recognized’ then it is not a file format that LROSE currently supports. Otherwise, you should see text output with all the metadata from your file.&lt;br /&gt;
&lt;br /&gt;
==== '''Convert the data to CfRadial''' ====&lt;br /&gt;
The LROSE workflow relies on the CfRadial format for all subsequent display and analysis. Use RadxConvert to convert your file(s) to CfRadial. It will work on any file that is recognized by RadxPrint from the first step through the Radx engine backend. Here, the -outdir flag tells RadxConvert the output directory, or where the output files should be written.&lt;br /&gt;
 RadxConvert -f $PWD/Level2_KAMX_20161006_1906.ar2v -outdir $PWD/output&lt;br /&gt;
&lt;br /&gt;
==== '''Display the data in HawkEye''' ====&lt;br /&gt;
HawkEye is a next generation data display that will eventually include editing capabilities. Use HawkEye to view the CfRadial files generated by RadxConvert on Linux and Mac (dmg) operating systems, respectively:  &lt;br /&gt;
 HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
 /Applications/HawkEye.app/Contents/MacOS/HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
&lt;br /&gt;
[[File:Qs_hawkeye_ref.png|550px]][[File:Qs_hawkeye_vel.png|550px]]&lt;br /&gt;
&lt;br /&gt;
==== '''Grid the data into Cartesian space''' ====&lt;br /&gt;
A common first step for working with NEXRAD data is to interpolate the data from its native radial coordinate to a regular grid. Radx2Grid can grid ground-based and some airborne lidar and radar data in spherical and Cartesian space. While there are many options for Radx2Grid, a basic gridding technique can be accomplished simply:  &lt;br /&gt;
 Radx2Grid -f $PWD/output/20161006/* -outdir $PWD/grid&lt;br /&gt;
&lt;br /&gt;
==== '''Create a parameter file''' ====&lt;br /&gt;
All of the aforementioned steps have used the default parameters, which likely are not be appropriate for each user. Most users will specify their desired parameters in a parameter file, which is read by the application. The -print_params flag will write out the parameters, which can be saved to a text file, as shown below. This parameter file can be opened by any text editor and edited by the user. &lt;br /&gt;
 Radx2Grid -print_params &amp;gt; ./Radx2Grid.params&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For example, a user might choose to change the &amp;quot;transform_fields_for_interpolation&amp;quot; parameter to TRUE, and in this example change the &amp;quot;input_name&amp;quot; and &amp;quot;output_name&amp;quot; parameters inside the &amp;quot;transform_fields&amp;quot; parameter to REF, to transform the reflectivity field to linear units before interpolation. Once the parameter file is saved, the parameter file is used by the program using the -params flag. A parameter file can be used in conjunction with command line flags, though command line flags supersede whatever is in the parameter file:  &lt;br /&gt;
 Radx2Grid -params &amp;gt; ./Radx2Grid.params -f $PWD/output/20161006/* -outdir $PWD/grid_linear&lt;br /&gt;
&lt;br /&gt;
==== '''Quick Start Complete!''' ====&lt;br /&gt;
If you have successfully run the previous steps then you should now have a Cartesian gridded NetCDF file to use for further analysis called ncf_20161006_191339.nc in the grid’ subdirectory. From here, you can read in the CfRadial or gridded netCDF file using Julia, Python, or other programming language for further analysis. &lt;br /&gt;
&lt;br /&gt;
[[File:Qs_ncview_lg_ref.png|275px]][[File:Qs_ncview_ref.png|300px]][[File:Qs_ncview_lg_vel.png|275px]][[File:Qs_ncview_vel.png|300px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- ==== '''Jupyter Notebook Starter Kit''' ====&lt;br /&gt;
All of the following steps are available in Jupyter Notebook tutorials in Julia and Python. You can [https://github.com/nsf-lrose/lrose-blaze/tree/master/docs/starter_kit clone] the notebook or [https://github.com/nsf-lrose/lrose-blaze/releases/download/lrose-blaze-alpha/lrose-blaze-starter-kit.tgz download] the whole starter kit with input and expected output files. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1084</id>
		<title>Lrose quickstart</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1084"/>
		<updated>2025-07-07T23:02:39Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Install */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== '''LROSE quickstart tutorial''' ===&lt;br /&gt;
&lt;br /&gt;
Follow these steps to get up and running quickly with LROSE, and then continue through the documentation for more details about LROSE software.&lt;br /&gt;
&lt;br /&gt;
==== '''A Basic LROSE Workflow''' ====&lt;br /&gt;
This quick start guide covers a basic LROSE analysis workflow:&lt;br /&gt;
&amp;lt;ol start=&amp;quot;1&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Print data header from a NEXRAD file using RadxPrint.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;2&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Convert Level II data to CfRadial format using RadxConvert.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;3&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Display the data in CfRadial format using Hawkeye.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;4&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Perform coordinate transformations from the polar grid to a Cartesian grid using Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;5&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Create a parameter file, which can be edited and used in Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Install''' ====&lt;br /&gt;
Installation instructions for brew, Linux packages, and source can be found on the [GitHub release page](https://github.com/NCAR/lrose-core/releases) for each release of LROSE.&lt;br /&gt;
&lt;br /&gt;
==== '''Get some data''' ====&lt;br /&gt;
A sample NEXRAD level II file is available [http://lrose.net/downloads/Level2_KAMX_20161006_1906.ar2v here] for use with this quick start guide.  &lt;br /&gt;
If you have your own data, just replace the filename in all the subsequent examples with your data.  &lt;br /&gt;
Open a terminal on Mac or Linux, and change the directory to where your data resides.  &lt;br /&gt;
 cd /path/to/my/data&lt;br /&gt;
&lt;br /&gt;
==== '''Inspect the data''' ====&lt;br /&gt;
LROSE can handle 24 radar and lidar formats (and counting). To see if your data works with LROSE, first use RadxPrint to print the metadata.  &lt;br /&gt;
&lt;br /&gt;
The following instructions assume you are using the LROSE binaries. If you are using your own data, replace the name of the file. The -f flag tells LROSE to use the FILELIST mode, where the path to the file is provided (the wildcard symbol * can be used to link to multiple files).&lt;br /&gt;
 RadxPrint -f $PWD/Level2_KAMX_20161006_1906.ar2v  &lt;br /&gt;
If the program returns ‘File format not recognized’ then it is not a file format that LROSE currently supports. Otherwise, you should see text output with all the metadata from your file.&lt;br /&gt;
&lt;br /&gt;
==== '''Convert the data to CfRadial''' ====&lt;br /&gt;
The LROSE workflow relies on the CfRadial format for all subsequent display and analysis. Use RadxConvert to convert your file(s) to CfRadial. It will work on any file that is recognized by RadxPrint from the first step through the Radx engine backend. Here, the -outdir flag tells RadxConvert the output directory, or where the output files should be written.&lt;br /&gt;
 RadxConvert -f $PWD/Level2_KAMX_20161006_1906.ar2v -outdir $PWD/output&lt;br /&gt;
&lt;br /&gt;
==== '''Display the data in HawkEye''' ====&lt;br /&gt;
HawkEye is a next generation data display that will eventually include editing capabilities. Use HawkEye to view the CfRadial files generated by RadxConvert on Linux and Mac (dmg) operating systems, respectively:  &lt;br /&gt;
 HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
 /Applications/HawkEye.app/Contents/MacOS/HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
&lt;br /&gt;
[[File:Qs_hawkeye_ref.png|550px]][[File:Qs_hawkeye_vel.png|550px]]&lt;br /&gt;
&lt;br /&gt;
==== '''Grid the data into Cartesian space''' ====&lt;br /&gt;
A common first step for working with NEXRAD data is to interpolate the data from its native radial coordinate to a regular grid. Radx2Grid can grid ground-based and some airborne lidar and radar data in spherical and Cartesian space. While there are many options for Radx2Grid, a basic gridding technique can be accomplished simply:  &lt;br /&gt;
 Radx2Grid -f $PWD/output/20161006/* -outdir $PWD/grid&lt;br /&gt;
&lt;br /&gt;
==== '''Create a parameter file''' ====&lt;br /&gt;
All of the aforementioned steps have used the default parameters, which likely are not be appropriate for each user. Most users will specify their desired parameters in a parameter file, which is read by the application. The -print_params flag will write out the parameters, which can be saved to a text file, as shown below. This parameter file can be opened by any text editor and edited by the user. &lt;br /&gt;
 Radx2Grid -print_params &amp;gt; ./Radx2Grid.params&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For example, a user might choose to change the &amp;quot;transform_fields_for_interpolation&amp;quot; parameter to TRUE, and in this example change the &amp;quot;input_name&amp;quot; and &amp;quot;output_name&amp;quot; parameters inside the &amp;quot;transform_fields&amp;quot; parameter to REF, to transform the reflectivity field to linear units before interpolation. Once the parameter file is saved, the parameter file is used by the program using the -params flag. A parameter file can be used in conjunction with command line flags, though command line flags supersede whatever is in the parameter file:  &lt;br /&gt;
 Radx2Grid -params &amp;gt; ./Radx2Grid.params -f $PWD/output/20161006/* -outdir $PWD/grid_linear&lt;br /&gt;
&lt;br /&gt;
==== '''Quick Start Complete!''' ====&lt;br /&gt;
If you have successfully run the previous steps then you should now have a Cartesian gridded NetCDF file to use for further analysis called ncf_20161006_191339.nc in the grid’ subdirectory. From here, you can read in the CfRadial or gridded netCDF file using Julia, Python, or other programming language for further analysis. &lt;br /&gt;
&lt;br /&gt;
[[File:Qs_ncview_lg_ref.png|275px]][[File:Qs_ncview_ref.png|300px]][[File:Qs_ncview_lg_vel.png|275px]][[File:Qs_ncview_vel.png|300px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- ==== '''Jupyter Notebook Starter Kit''' ====&lt;br /&gt;
All of the following steps are available in Jupyter Notebook tutorials in Julia and Python. You can [https://github.com/nsf-lrose/lrose-blaze/tree/master/docs/starter_kit clone] the notebook or [https://github.com/nsf-lrose/lrose-blaze/releases/download/lrose-blaze-alpha/lrose-blaze-starter-kit.tgz download] the whole starter kit with input and expected output files. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1083</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1083"/>
		<updated>2025-06-25T20:38:23Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Verify the Installation ====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''LROSE Science Gateway and Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
==== Quick Start Tutorial ====&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutter RadxClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/4/43/2023_LROSE_AMS_Workshop_Notes.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/2/2d/2025_LROSE_AMS_Workshop_Notes.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE 2025 Intermediate SAMURAI Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_SAMURAI_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=2025_SAMURAI_Workshop_Sessions&amp;diff=1082</id>
		<title>2025 SAMURAI Workshop Sessions</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=2025_SAMURAI_Workshop_Sessions&amp;diff=1082"/>
		<updated>2025-05-16T21:52:40Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: Created page with &amp;quot;=== '''Overview''' === This page holds the session recordings and slides from the 2025 Intermediate SAMURAI Workshop.   === '''Session Recordings''' === * [https://drive.googl...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== '''Overview''' ===&lt;br /&gt;
This page holds the session recordings and slides from the 2025 Intermediate SAMURAI Workshop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== '''Session Recordings''' ===&lt;br /&gt;
* [https://drive.google.com/file/d/1gERZLlSJEBd-voCKtfQRXmJMAOzBomsT/view?usp=drive_link Lecture #1: SAMURAI Overview + Data Thinning]&lt;br /&gt;
* [https://drive.google.com/file/d/1kqRRZ5qBN0ylST94K_Y4JcRPv-YTGO5p/view?usp=drive_link Lecture #2: Filters and Constraints]&lt;br /&gt;
* [https://drive.google.com/file/d/1o2JhJlHmC3niMwS7rTTWuYPjw2ckWSXb/view?usp=drive_link Lecture #3: Q&amp;amp;A + Wrap Up]&lt;br /&gt;
&lt;br /&gt;
=== '''Presentation Slides''' ===&lt;br /&gt;
* [https://drive.google.com/file/d/1bOuWAA6s-cZEfGODCFL7TRsaK6kkLN9v/view?usp=sharing Lecture Slides]&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1081</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1081"/>
		<updated>2025-05-16T21:44:42Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* LROSE Workshops */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Verify the Installation ====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
==== Quick Start Tutorial ====&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutter RadxClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/4/43/2023_LROSE_AMS_Workshop_Notes.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/2/2d/2025_LROSE_AMS_Workshop_Notes.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE 2025 Intermediate SAMURAI Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_SAMURAI_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=RadxClutter&amp;diff=1080</id>
		<title>RadxClutter</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=RadxClutter&amp;diff=1080"/>
		<updated>2025-03-17T18:40:58Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Scientific Background */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;RadxClutter identifies persistent clutter in radar data, flags it, and writes out the statistics.&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
&lt;br /&gt;
RadxClutter identifies persistent clutter. RadxClutter replaces RadxPersistentClutter, though the previous documentation can be found [http://wiki.lrose.net/index.php/RadxPersistentClutter here].&lt;br /&gt;
&lt;br /&gt;
Generally the reflectivity (DBZ) field will be used for the clutter identification. You are asked to select a reflectivity threshold that will be consistently exceeded by the presence of clutter. Reading data from a time period of a number of hours (at least) we compute the fraction of time that the reflectivity at each gate, in each ray, exceeds that threshold. Since non-AP clutter is a persistent phenomenon, the presence of clutter will yield a high time fraction for clutter gates. The identification step is the 'first pass' of this procedure. This will save out the clutter statistics as a CfRadial file to the output directory.&lt;br /&gt;
&lt;br /&gt;
In the optional 'second pass', you can read the clutter statistics, and then use those to censor clutter from any series of CfRadial files that have a matching scan strategy. The rule for censoring is as follows: If a gate is flagged as having clutter in the statistics volume, the reflectivity in the measured volume will be compared to the statistics. If the measured reflectivity exceeds the mean reflectivity, plus a specified multiple of the standard deviation, weather is likely to be present at that gate and it will not be censored. If the reflectivity does not pass this test it will be censored - i.e. it will be set to a specified low value. The use of X times the standard deviation above the mean allows us to account for variability in the clutter reflectivity from one time to the next. 'X' is the parameter 'n_sdev_for_clut_threshold'.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== '''Scientific Background''' ===&lt;br /&gt;
&lt;br /&gt;
RadxClutter is partially based on the following paper.&lt;br /&gt;
&lt;br /&gt;
Lakshmanan V., J. Zhang, K. Hondl and C. Langston: A Statistical Approach to Mitigating Persistent Clutter in Radar Reflectivity Data. IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing, Vol. 5, No. 2, April 2012. DOI: [https://doi.org/10.1109/JSTARS.2011.2181828 10.1109/JSTARS.2011.2181828].&lt;br /&gt;
&lt;br /&gt;
=== '''Prerequesites''' ===&lt;br /&gt;
&lt;br /&gt;
The following items are required:&lt;br /&gt;
&lt;br /&gt;
* Radar data (any Radx supported format, e.g., cfradial) over a period of at least 6 hours where there is no significant weather and the ray geometry is consistent&lt;br /&gt;
&lt;br /&gt;
=== '''Parameter file''' ===&lt;br /&gt;
&lt;br /&gt;
RadxClutter uses one parameter file that includes the basic parameters related to data location and field names, which is similar to the parameter files for the other Radx applications.&lt;br /&gt;
&lt;br /&gt;
==== '''Ensure file is up to date''' ====&lt;br /&gt;
&lt;br /&gt;
To obtain the default parameter file, use the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxClutter -print_params &amp;amp;gt; param_file_name&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you already have a parameter file and simply want to check for (and add) updated parameters while retaining current parameters, use the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxClutter -params orig_param_file_name -print_params &amp;amp;gt; new_param_file_name&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== '''Important parameters''' ====&lt;br /&gt;
&lt;br /&gt;
Data Input&lt;br /&gt;
&lt;br /&gt;
* input_dir: directory containing radar data (if not specified on the command line and if mode = REALTIME)&lt;br /&gt;
* mode: determines if the program waits for new files (REALTIME), moves through start and end times specified on the command line (ARCHIVE), or moves through list of files specified on the command line (FILELIST)&lt;br /&gt;
&lt;br /&gt;
Action&lt;br /&gt;
&lt;br /&gt;
* action: tell RadxClutter whether to analyze clutter statistics or filter reflectivity power for gates that are not overridden by weather (i.e., ANALYZE_CLUTTER or FILTER_CLUTTER)&lt;br /&gt;
&lt;br /&gt;
Scan Details&lt;br /&gt;
&lt;br /&gt;
* scan_mode: scan type (i.e., PPI or RHI)&lt;br /&gt;
* sweep_fixed_angles: list of fixed angles for desired sweeps (e.g., elevations or azimuths)&lt;br /&gt;
* first_ray_angle, last_ray_angle: set limits of scan angles&lt;br /&gt;
* ray_angle_resolution: angle difference between rays&lt;br /&gt;
* az_tolerance_deg, elev_tolerance_deg: tolerance for differences between angles to match expected geometry&lt;br /&gt;
* max_range_km: specified maximum range (km), gates beyond this range are removed&lt;br /&gt;
&lt;br /&gt;
Algorithm Details&lt;br /&gt;
&lt;br /&gt;
* dbz_field_name: reflectivity field name&lt;br /&gt;
* clutter_dbz_threshold: if data is persistently above this value then the gate is a clutter location&lt;br /&gt;
* use_vel_field: option to use velocity field to confirm clutter (TRUE or FALSE)&lt;br /&gt;
* vel_field_name: velocity field name&lt;br /&gt;
* max_abs_vel: maximum absolute radial velocity&lt;br /&gt;
* specify_clutter_frequency_threshold: option to specify clutter frequency threshold (see parameter file for more details)&lt;br /&gt;
* clutter_frequency_threshold: clutter frequency threshold&lt;br /&gt;
&lt;br /&gt;
Clutter Statistics Output&lt;br /&gt;
&lt;br /&gt;
* clutter_stats_output_dir: path to clutter statistics output&lt;br /&gt;
* dbz_mean_field_name: field name for mean dBZ&lt;br /&gt;
* dbz_sdev_field_name: field name for standard deviation of dBZ&lt;br /&gt;
* clut_freq_field_name: field name for clutter frequency&lt;br /&gt;
* clut_flag_field_name: field name for clutter flag&lt;br /&gt;
&lt;br /&gt;
Filtered Output&lt;br /&gt;
&lt;br /&gt;
* dbz_filt_field_name: field name for filtered dBZ&lt;br /&gt;
* clutter_stats_path: path to output volume containing clutter statistics&lt;br /&gt;
* n_sdev_for_clut_threshold: number of standard deviations above the mean for the clutter threshold&lt;br /&gt;
* filt_output_dir: path to filtered output volumes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== '''Running RadxClutter''' ===&lt;br /&gt;
&lt;br /&gt;
To check all command line options for RadxClutter, including debugging options and file paths, type the following command into a terminal.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxClutter -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once your parameter file is complete, use a command similar to the following to run the application:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxClutter -params param_file_name&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The user can also specify the location of cfradial files in the following manner:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxClutter -f /path/to/cfradial/files/ -params param_file_name&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=RadxClutter&amp;diff=1079</id>
		<title>RadxClutter</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=RadxClutter&amp;diff=1079"/>
		<updated>2025-03-17T18:39:40Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: Created page with &amp;quot;RadxClutter identifies persistent clutter in radar data, flags it, and writes out the statistics.  === '''Overview''' ===  RadxClutter identifies persistent clutter. RadxClutt...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;RadxClutter identifies persistent clutter in radar data, flags it, and writes out the statistics.&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
&lt;br /&gt;
RadxClutter identifies persistent clutter. RadxClutter replaces RadxPersistentClutter, though the previous documentation can be found [http://wiki.lrose.net/index.php/RadxPersistentClutter here].&lt;br /&gt;
&lt;br /&gt;
Generally the reflectivity (DBZ) field will be used for the clutter identification. You are asked to select a reflectivity threshold that will be consistently exceeded by the presence of clutter. Reading data from a time period of a number of hours (at least) we compute the fraction of time that the reflectivity at each gate, in each ray, exceeds that threshold. Since non-AP clutter is a persistent phenomenon, the presence of clutter will yield a high time fraction for clutter gates. The identification step is the 'first pass' of this procedure. This will save out the clutter statistics as a CfRadial file to the output directory.&lt;br /&gt;
&lt;br /&gt;
In the optional 'second pass', you can read the clutter statistics, and then use those to censor clutter from any series of CfRadial files that have a matching scan strategy. The rule for censoring is as follows: If a gate is flagged as having clutter in the statistics volume, the reflectivity in the measured volume will be compared to the statistics. If the measured reflectivity exceeds the mean reflectivity, plus a specified multiple of the standard deviation, weather is likely to be present at that gate and it will not be censored. If the reflectivity does not pass this test it will be censored - i.e. it will be set to a specified low value. The use of X times the standard deviation above the mean allows us to account for variability in the clutter reflectivity from one time to the next. 'X' is the parameter 'n_sdev_for_clut_threshold'.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== '''Scientific Background''' ===&lt;br /&gt;
&lt;br /&gt;
RadxClutter is partially based on the following paper.&lt;br /&gt;
&lt;br /&gt;
Lakshmanan V., J. Zhang, K. Hondl and C. Langston: A Statistical Approach to Mitigating Persistent Clutter in Radar Reflectivity Data. IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing, Vol. 5, No. 2, April 2012.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== '''Prerequesites''' ===&lt;br /&gt;
&lt;br /&gt;
The following items are required:&lt;br /&gt;
&lt;br /&gt;
* Radar data (any Radx supported format, e.g., cfradial) over a period of at least 6 hours where there is no significant weather and the ray geometry is consistent&lt;br /&gt;
&lt;br /&gt;
=== '''Parameter file''' ===&lt;br /&gt;
&lt;br /&gt;
RadxClutter uses one parameter file that includes the basic parameters related to data location and field names, which is similar to the parameter files for the other Radx applications.&lt;br /&gt;
&lt;br /&gt;
==== '''Ensure file is up to date''' ====&lt;br /&gt;
&lt;br /&gt;
To obtain the default parameter file, use the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxClutter -print_params &amp;amp;gt; param_file_name&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you already have a parameter file and simply want to check for (and add) updated parameters while retaining current parameters, use the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxClutter -params orig_param_file_name -print_params &amp;amp;gt; new_param_file_name&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== '''Important parameters''' ====&lt;br /&gt;
&lt;br /&gt;
Data Input&lt;br /&gt;
&lt;br /&gt;
* input_dir: directory containing radar data (if not specified on the command line and if mode = REALTIME)&lt;br /&gt;
* mode: determines if the program waits for new files (REALTIME), moves through start and end times specified on the command line (ARCHIVE), or moves through list of files specified on the command line (FILELIST)&lt;br /&gt;
&lt;br /&gt;
Action&lt;br /&gt;
&lt;br /&gt;
* action: tell RadxClutter whether to analyze clutter statistics or filter reflectivity power for gates that are not overridden by weather (i.e., ANALYZE_CLUTTER or FILTER_CLUTTER)&lt;br /&gt;
&lt;br /&gt;
Scan Details&lt;br /&gt;
&lt;br /&gt;
* scan_mode: scan type (i.e., PPI or RHI)&lt;br /&gt;
* sweep_fixed_angles: list of fixed angles for desired sweeps (e.g., elevations or azimuths)&lt;br /&gt;
* first_ray_angle, last_ray_angle: set limits of scan angles&lt;br /&gt;
* ray_angle_resolution: angle difference between rays&lt;br /&gt;
* az_tolerance_deg, elev_tolerance_deg: tolerance for differences between angles to match expected geometry&lt;br /&gt;
* max_range_km: specified maximum range (km), gates beyond this range are removed&lt;br /&gt;
&lt;br /&gt;
Algorithm Details&lt;br /&gt;
&lt;br /&gt;
* dbz_field_name: reflectivity field name&lt;br /&gt;
* clutter_dbz_threshold: if data is persistently above this value then the gate is a clutter location&lt;br /&gt;
* use_vel_field: option to use velocity field to confirm clutter (TRUE or FALSE)&lt;br /&gt;
* vel_field_name: velocity field name&lt;br /&gt;
* max_abs_vel: maximum absolute radial velocity&lt;br /&gt;
* specify_clutter_frequency_threshold: option to specify clutter frequency threshold (see parameter file for more details)&lt;br /&gt;
* clutter_frequency_threshold: clutter frequency threshold&lt;br /&gt;
&lt;br /&gt;
Clutter Statistics Output&lt;br /&gt;
&lt;br /&gt;
* clutter_stats_output_dir: path to clutter statistics output&lt;br /&gt;
* dbz_mean_field_name: field name for mean dBZ&lt;br /&gt;
* dbz_sdev_field_name: field name for standard deviation of dBZ&lt;br /&gt;
* clut_freq_field_name: field name for clutter frequency&lt;br /&gt;
* clut_flag_field_name: field name for clutter flag&lt;br /&gt;
&lt;br /&gt;
Filtered Output&lt;br /&gt;
&lt;br /&gt;
* dbz_filt_field_name: field name for filtered dBZ&lt;br /&gt;
* clutter_stats_path: path to output volume containing clutter statistics&lt;br /&gt;
* n_sdev_for_clut_threshold: number of standard deviations above the mean for the clutter threshold&lt;br /&gt;
* filt_output_dir: path to filtered output volumes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== '''Running RadxClutter''' ===&lt;br /&gt;
&lt;br /&gt;
To check all command line options for RadxClutter, including debugging options and file paths, type the following command into a terminal.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxClutter -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once your parameter file is complete, use a command similar to the following to run the application:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxClutter -params param_file_name&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The user can also specify the location of cfradial files in the following manner:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxClutter -f /path/to/cfradial/files/ -params param_file_name&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1078</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1078"/>
		<updated>2025-03-17T17:47:55Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Quality Control */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Verify the Installation ====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
==== Quick Start Tutorial ====&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutter RadxClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/4/43/2023_LROSE_AMS_Workshop_Notes.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/2/2d/2025_LROSE_AMS_Workshop_Notes.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1077</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1077"/>
		<updated>2025-03-13T00:14:54Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* LROSE AMS 2025 Workshop */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Verify the Installation ====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
==== Quick Start Tutorial ====&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/4/43/2023_LROSE_AMS_Workshop_Notes.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/2/2d/2025_LROSE_AMS_Workshop_Notes.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=File:2025_LROSE_AMS_Workshop_Notes.pdf&amp;diff=1076</id>
		<title>File:2025 LROSE AMS Workshop Notes.pdf</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=File:2025_LROSE_AMS_Workshop_Notes.pdf&amp;diff=1076"/>
		<updated>2025-03-13T00:14:40Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1075</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1075"/>
		<updated>2025-03-13T00:14:23Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* LROSE AMS 2023 Workshop */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Verify the Installation ====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
==== Quick Start Tutorial ====&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/4/43/2023_LROSE_AMS_Workshop_Notes.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=File:2023_LROSE_AMS_Workshop_Notes.pdf&amp;diff=1074</id>
		<title>File:2023 LROSE AMS Workshop Notes.pdf</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=File:2023_LROSE_AMS_Workshop_Notes.pdf&amp;diff=1074"/>
		<updated>2025-03-13T00:13:54Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=RadxPersistentClutter&amp;diff=1073</id>
		<title>RadxPersistentClutter</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=RadxPersistentClutter&amp;diff=1073"/>
		<updated>2025-03-12T22:54:40Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Prerequesites */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;RadxPersistentClutter sets clutter locations of one input field.&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
&lt;br /&gt;
RadxPersistentClutter sets clutter locations of one input field.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== '''Scientific Background''' ===&lt;br /&gt;
&lt;br /&gt;
Based on the following paper.&lt;br /&gt;
&lt;br /&gt;
Lakshmanan V., J. Zhang, K. Hondl and C. Langston: A Statistical Approach to Mitigating Persistent Clutter in Radar Reflectivity Data. IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing, Vol. 5, No. 2, April 2012.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== '''Prerequesites''' ===&lt;br /&gt;
&lt;br /&gt;
The following items are required:&lt;br /&gt;
&lt;br /&gt;
* Radar data (any Radx supported format, e.g., cfradial) over a period of hours&lt;br /&gt;
&lt;br /&gt;
=== '''Parameter file''' ===&lt;br /&gt;
&lt;br /&gt;
RadxPersistentClutter uses one parameter file that includes the basic parameters related to data location and field names, which is similar to the parameter files for the other Radx applications.&lt;br /&gt;
&lt;br /&gt;
==== '''Ensure file is up to date''' ====&lt;br /&gt;
&lt;br /&gt;
To obtain the default parameter file, use the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxPersistentClutter -print_params &amp;amp;gt; param_file_name&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you already have a parameter file and simply want to check for (and add) updated parameters while retaining current parameters, use the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxPersistentClutter -params orig_param_file_name -print_params &amp;amp;gt; new_param_file_name&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== '''Important parameters''' ====&lt;br /&gt;
&lt;br /&gt;
TDRP params&lt;br /&gt;
&lt;br /&gt;
* input_field: name the field to find clutter in&lt;br /&gt;
* output_field: name to give the final clutter field&lt;br /&gt;
* mode: determines if the program waits for new files (REALTIME), moves through start and end times specified on the command line (ARCHIVE), or moves through list of files specified on the command line (FILELIST)&lt;br /&gt;
* output_url: files will be written to this directory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Input paths&lt;br /&gt;
&lt;br /&gt;
* input: index, path, tolerance levels&lt;br /&gt;
* field_mapping: list of input fields and index to the path of that data&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== '''Running RadxPersistentClutter''' ===&lt;br /&gt;
&lt;br /&gt;
To check all command line options for RadxPersistentClutter, including debugging options and file paths, type the following command into a terminal.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxPersistentClutter -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once your parameter file is complete, use a command similar to the following to run the application:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxPersistentClutter -params param_file_name&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The user can also specify the location of cfradial files in the following manner:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/path/to/lrose/install/bin/RadxPersistentClutter -f /path/to/cfradial/files/ -params param_file_name&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1072</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1072"/>
		<updated>2025-03-12T22:53:26Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Quality Control */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Verify the Installation ====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
==== Quick Start Tutorial ====&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1071</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1071"/>
		<updated>2025-03-12T21:25:25Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Verify the Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Verify the Installation ====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
==== Quick Start Tutorial ====&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1070</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1070"/>
		<updated>2025-03-12T21:25:01Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Verify the Installation =====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
==== Quick Start Tutorial ====&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1069</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1069"/>
		<updated>2025-03-12T21:24:22Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Verify the Installation=====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
==== Quick Start Tutorial ====&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1068</id>
		<title>Lrose quickstart</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1068"/>
		<updated>2025-03-12T21:17:40Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Create a parameter file */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== '''LROSE quickstart tutorial''' ===&lt;br /&gt;
&lt;br /&gt;
Follow these steps to get up and running quickly with LROSE, and then continue through the documentation for more details about LROSE software.&lt;br /&gt;
&lt;br /&gt;
==== '''A Basic LROSE Workflow''' ====&lt;br /&gt;
This quick start guide covers a basic LROSE analysis workflow:&lt;br /&gt;
&amp;lt;ol start=&amp;quot;1&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Print data header from a NEXRAD file using RadxPrint.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;2&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Convert Level II data to CfRadial format using RadxConvert.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;3&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Display the data in CfRadial format using Hawkeye.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;4&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Perform coordinate transformations from the polar grid to a Cartesian grid using Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;5&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Create a parameter file, which can be edited and used in Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Install''' ====&lt;br /&gt;
Follow the [http://lrose.net/software.html install instructions].  &lt;br /&gt;
&lt;br /&gt;
==== '''Get some data''' ====&lt;br /&gt;
A sample NEXRAD level II file is available [http://lrose.net/downloads/Level2_KAMX_20161006_1906.ar2v here] for use with this quick start guide.  &lt;br /&gt;
If you have your own data, just replace the filename in all the subsequent examples with your data.  &lt;br /&gt;
Open a terminal on Mac or Linux, and change the directory to where your data resides.  &lt;br /&gt;
 cd /path/to/my/data&lt;br /&gt;
&lt;br /&gt;
==== '''Inspect the data''' ====&lt;br /&gt;
LROSE can handle 24 radar and lidar formats (and counting). To see if your data works with LROSE, first use RadxPrint to print the metadata.  &lt;br /&gt;
&lt;br /&gt;
The following instructions assume you are using the LROSE binaries. If you are using your own data, replace the name of the file. The -f flag tells LROSE to use the FILELIST mode, where the path to the file is provided (the wildcard symbol * can be used to link to multiple files).&lt;br /&gt;
 RadxPrint -f $PWD/Level2_KAMX_20161006_1906.ar2v  &lt;br /&gt;
If the program returns ‘File format not recognized’ then it is not a file format that LROSE currently supports. Otherwise, you should see text output with all the metadata from your file.&lt;br /&gt;
&lt;br /&gt;
==== '''Convert the data to CfRadial''' ====&lt;br /&gt;
The LROSE workflow relies on the CfRadial format for all subsequent display and analysis. Use RadxConvert to convert your file(s) to CfRadial. It will work on any file that is recognized by RadxPrint from the first step through the Radx engine backend. Here, the -outdir flag tells RadxConvert the output directory, or where the output files should be written.&lt;br /&gt;
 RadxConvert -f $PWD/Level2_KAMX_20161006_1906.ar2v -outdir $PWD/output&lt;br /&gt;
&lt;br /&gt;
==== '''Display the data in HawkEye''' ====&lt;br /&gt;
HawkEye is a next generation data display that will eventually include editing capabilities. Use HawkEye to view the CfRadial files generated by RadxConvert on Linux and Mac (dmg) operating systems, respectively:  &lt;br /&gt;
 HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
 /Applications/HawkEye.app/Contents/MacOS/HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
&lt;br /&gt;
[[File:Qs_hawkeye_ref.png|550px]][[File:Qs_hawkeye_vel.png|550px]]&lt;br /&gt;
&lt;br /&gt;
==== '''Grid the data into Cartesian space''' ====&lt;br /&gt;
A common first step for working with NEXRAD data is to interpolate the data from its native radial coordinate to a regular grid. Radx2Grid can grid ground-based and some airborne lidar and radar data in spherical and Cartesian space. While there are many options for Radx2Grid, a basic gridding technique can be accomplished simply:  &lt;br /&gt;
 Radx2Grid -f $PWD/output/20161006/* -outdir $PWD/grid&lt;br /&gt;
&lt;br /&gt;
==== '''Create a parameter file''' ====&lt;br /&gt;
All of the aforementioned steps have used the default parameters, which likely are not be appropriate for each user. Most users will specify their desired parameters in a parameter file, which is read by the application. The -print_params flag will write out the parameters, which can be saved to a text file, as shown below. This parameter file can be opened by any text editor and edited by the user. &lt;br /&gt;
 Radx2Grid -print_params &amp;gt; ./Radx2Grid.params&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For example, a user might choose to change the &amp;quot;transform_fields_for_interpolation&amp;quot; parameter to TRUE, and in this example change the &amp;quot;input_name&amp;quot; and &amp;quot;output_name&amp;quot; parameters inside the &amp;quot;transform_fields&amp;quot; parameter to REF, to transform the reflectivity field to linear units before interpolation. Once the parameter file is saved, the parameter file is used by the program using the -params flag. A parameter file can be used in conjunction with command line flags, though command line flags supersede whatever is in the parameter file:  &lt;br /&gt;
 Radx2Grid -params &amp;gt; ./Radx2Grid.params -f $PWD/output/20161006/* -outdir $PWD/grid_linear&lt;br /&gt;
&lt;br /&gt;
==== '''Quick Start Complete!''' ====&lt;br /&gt;
If you have successfully run the previous steps then you should now have a Cartesian gridded NetCDF file to use for further analysis called ncf_20161006_191339.nc in the grid’ subdirectory. From here, you can read in the CfRadial or gridded netCDF file using Julia, Python, or other programming language for further analysis. &lt;br /&gt;
&lt;br /&gt;
[[File:Qs_ncview_lg_ref.png|275px]][[File:Qs_ncview_ref.png|300px]][[File:Qs_ncview_lg_vel.png|275px]][[File:Qs_ncview_vel.png|300px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- ==== '''Jupyter Notebook Starter Kit''' ====&lt;br /&gt;
All of the following steps are available in Jupyter Notebook tutorials in Julia and Python. You can [https://github.com/nsf-lrose/lrose-blaze/tree/master/docs/starter_kit clone] the notebook or [https://github.com/nsf-lrose/lrose-blaze/releases/download/lrose-blaze-alpha/lrose-blaze-starter-kit.tgz download] the whole starter kit with input and expected output files. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1067</id>
		<title>Lrose quickstart</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1067"/>
		<updated>2025-03-12T21:17:23Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Create a parameter file */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== '''LROSE quickstart tutorial''' ===&lt;br /&gt;
&lt;br /&gt;
Follow these steps to get up and running quickly with LROSE, and then continue through the documentation for more details about LROSE software.&lt;br /&gt;
&lt;br /&gt;
==== '''A Basic LROSE Workflow''' ====&lt;br /&gt;
This quick start guide covers a basic LROSE analysis workflow:&lt;br /&gt;
&amp;lt;ol start=&amp;quot;1&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Print data header from a NEXRAD file using RadxPrint.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;2&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Convert Level II data to CfRadial format using RadxConvert.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;3&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Display the data in CfRadial format using Hawkeye.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;4&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Perform coordinate transformations from the polar grid to a Cartesian grid using Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;5&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Create a parameter file, which can be edited and used in Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Install''' ====&lt;br /&gt;
Follow the [http://lrose.net/software.html install instructions].  &lt;br /&gt;
&lt;br /&gt;
==== '''Get some data''' ====&lt;br /&gt;
A sample NEXRAD level II file is available [http://lrose.net/downloads/Level2_KAMX_20161006_1906.ar2v here] for use with this quick start guide.  &lt;br /&gt;
If you have your own data, just replace the filename in all the subsequent examples with your data.  &lt;br /&gt;
Open a terminal on Mac or Linux, and change the directory to where your data resides.  &lt;br /&gt;
 cd /path/to/my/data&lt;br /&gt;
&lt;br /&gt;
==== '''Inspect the data''' ====&lt;br /&gt;
LROSE can handle 24 radar and lidar formats (and counting). To see if your data works with LROSE, first use RadxPrint to print the metadata.  &lt;br /&gt;
&lt;br /&gt;
The following instructions assume you are using the LROSE binaries. If you are using your own data, replace the name of the file. The -f flag tells LROSE to use the FILELIST mode, where the path to the file is provided (the wildcard symbol * can be used to link to multiple files).&lt;br /&gt;
 RadxPrint -f $PWD/Level2_KAMX_20161006_1906.ar2v  &lt;br /&gt;
If the program returns ‘File format not recognized’ then it is not a file format that LROSE currently supports. Otherwise, you should see text output with all the metadata from your file.&lt;br /&gt;
&lt;br /&gt;
==== '''Convert the data to CfRadial''' ====&lt;br /&gt;
The LROSE workflow relies on the CfRadial format for all subsequent display and analysis. Use RadxConvert to convert your file(s) to CfRadial. It will work on any file that is recognized by RadxPrint from the first step through the Radx engine backend. Here, the -outdir flag tells RadxConvert the output directory, or where the output files should be written.&lt;br /&gt;
 RadxConvert -f $PWD/Level2_KAMX_20161006_1906.ar2v -outdir $PWD/output&lt;br /&gt;
&lt;br /&gt;
==== '''Display the data in HawkEye''' ====&lt;br /&gt;
HawkEye is a next generation data display that will eventually include editing capabilities. Use HawkEye to view the CfRadial files generated by RadxConvert on Linux and Mac (dmg) operating systems, respectively:  &lt;br /&gt;
 HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
 /Applications/HawkEye.app/Contents/MacOS/HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
&lt;br /&gt;
[[File:Qs_hawkeye_ref.png|550px]][[File:Qs_hawkeye_vel.png|550px]]&lt;br /&gt;
&lt;br /&gt;
==== '''Grid the data into Cartesian space''' ====&lt;br /&gt;
A common first step for working with NEXRAD data is to interpolate the data from its native radial coordinate to a regular grid. Radx2Grid can grid ground-based and some airborne lidar and radar data in spherical and Cartesian space. While there are many options for Radx2Grid, a basic gridding technique can be accomplished simply:  &lt;br /&gt;
 Radx2Grid -f $PWD/output/20161006/* -outdir $PWD/grid&lt;br /&gt;
&lt;br /&gt;
==== '''Create a parameter file''' ====&lt;br /&gt;
All of the aforementioned steps have used the default parameters, which likely are not be appropriate for each user. Most users will specify their desired parameters in a parameter file, which is read by the application. The -print_params flag will write out the parameters, which can be saved to a text file, as shown below. This parameter file can be opened by any text editor and edited by the user. &lt;br /&gt;
 Radx2Grid -print_params &amp;gt; ./Radx2Grid.params&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For example, a user might choose to change the &amp;quot;transform_fields_for_interpolation&amp;quot; parameter to TRUE, and in this example change the &amp;quot;input_name&amp;quot; and &amp;quot;output_name&amp;quot; parameters inside the &amp;quot;transform_fields&amp;quot; parameter to REF, to transform the reflectivity field to linear units before interpolation. Once the parameter file is saved, the parameter file is used by the program using the -params flag. A parameter file can be used in conjunction with command line flags, though command line flags supersede whatever is in the parameter file:  &lt;br /&gt;
 Radx2Grid -params &amp;gt; ./Radx2Grid.params -f $PWD/output/20161006/* -outdir $PWD/grid&lt;br /&gt;
&lt;br /&gt;
==== '''Quick Start Complete!''' ====&lt;br /&gt;
If you have successfully run the previous steps then you should now have a Cartesian gridded NetCDF file to use for further analysis called ncf_20161006_191339.nc in the grid’ subdirectory. From here, you can read in the CfRadial or gridded netCDF file using Julia, Python, or other programming language for further analysis. &lt;br /&gt;
&lt;br /&gt;
[[File:Qs_ncview_lg_ref.png|275px]][[File:Qs_ncview_ref.png|300px]][[File:Qs_ncview_lg_vel.png|275px]][[File:Qs_ncview_vel.png|300px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- ==== '''Jupyter Notebook Starter Kit''' ====&lt;br /&gt;
All of the following steps are available in Jupyter Notebook tutorials in Julia and Python. You can [https://github.com/nsf-lrose/lrose-blaze/tree/master/docs/starter_kit clone] the notebook or [https://github.com/nsf-lrose/lrose-blaze/releases/download/lrose-blaze-alpha/lrose-blaze-starter-kit.tgz download] the whole starter kit with input and expected output files. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1066</id>
		<title>Lrose quickstart</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1066"/>
		<updated>2025-03-12T21:16:27Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Create a parameter file */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== '''LROSE quickstart tutorial''' ===&lt;br /&gt;
&lt;br /&gt;
Follow these steps to get up and running quickly with LROSE, and then continue through the documentation for more details about LROSE software.&lt;br /&gt;
&lt;br /&gt;
==== '''A Basic LROSE Workflow''' ====&lt;br /&gt;
This quick start guide covers a basic LROSE analysis workflow:&lt;br /&gt;
&amp;lt;ol start=&amp;quot;1&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Print data header from a NEXRAD file using RadxPrint.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;2&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Convert Level II data to CfRadial format using RadxConvert.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;3&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Display the data in CfRadial format using Hawkeye.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;4&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Perform coordinate transformations from the polar grid to a Cartesian grid using Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;5&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Create a parameter file, which can be edited and used in Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Install''' ====&lt;br /&gt;
Follow the [http://lrose.net/software.html install instructions].  &lt;br /&gt;
&lt;br /&gt;
==== '''Get some data''' ====&lt;br /&gt;
A sample NEXRAD level II file is available [http://lrose.net/downloads/Level2_KAMX_20161006_1906.ar2v here] for use with this quick start guide.  &lt;br /&gt;
If you have your own data, just replace the filename in all the subsequent examples with your data.  &lt;br /&gt;
Open a terminal on Mac or Linux, and change the directory to where your data resides.  &lt;br /&gt;
 cd /path/to/my/data&lt;br /&gt;
&lt;br /&gt;
==== '''Inspect the data''' ====&lt;br /&gt;
LROSE can handle 24 radar and lidar formats (and counting). To see if your data works with LROSE, first use RadxPrint to print the metadata.  &lt;br /&gt;
&lt;br /&gt;
The following instructions assume you are using the LROSE binaries. If you are using your own data, replace the name of the file. The -f flag tells LROSE to use the FILELIST mode, where the path to the file is provided (the wildcard symbol * can be used to link to multiple files).&lt;br /&gt;
 RadxPrint -f $PWD/Level2_KAMX_20161006_1906.ar2v  &lt;br /&gt;
If the program returns ‘File format not recognized’ then it is not a file format that LROSE currently supports. Otherwise, you should see text output with all the metadata from your file.&lt;br /&gt;
&lt;br /&gt;
==== '''Convert the data to CfRadial''' ====&lt;br /&gt;
The LROSE workflow relies on the CfRadial format for all subsequent display and analysis. Use RadxConvert to convert your file(s) to CfRadial. It will work on any file that is recognized by RadxPrint from the first step through the Radx engine backend. Here, the -outdir flag tells RadxConvert the output directory, or where the output files should be written.&lt;br /&gt;
 RadxConvert -f $PWD/Level2_KAMX_20161006_1906.ar2v -outdir $PWD/output&lt;br /&gt;
&lt;br /&gt;
==== '''Display the data in HawkEye''' ====&lt;br /&gt;
HawkEye is a next generation data display that will eventually include editing capabilities. Use HawkEye to view the CfRadial files generated by RadxConvert on Linux and Mac (dmg) operating systems, respectively:  &lt;br /&gt;
 HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
 /Applications/HawkEye.app/Contents/MacOS/HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
&lt;br /&gt;
[[File:Qs_hawkeye_ref.png|550px]][[File:Qs_hawkeye_vel.png|550px]]&lt;br /&gt;
&lt;br /&gt;
==== '''Grid the data into Cartesian space''' ====&lt;br /&gt;
A common first step for working with NEXRAD data is to interpolate the data from its native radial coordinate to a regular grid. Radx2Grid can grid ground-based and some airborne lidar and radar data in spherical and Cartesian space. While there are many options for Radx2Grid, a basic gridding technique can be accomplished simply:  &lt;br /&gt;
 Radx2Grid -f $PWD/output/20161006/* -outdir $PWD/grid&lt;br /&gt;
&lt;br /&gt;
==== '''Create a parameter file''' ====&lt;br /&gt;
All of the aforementioned steps have used the default parameters, which likely are not be appropriate for each user. Most users will specify their desired parameters in a parameter file, which is read by the application. The -print_params flag will write out the parameters, which can be saved to a text file, as shown below. This parameter file can be opened by any text editor and edited by the user. &lt;br /&gt;
 Radx2Grid -print_params &amp;gt; ./Radx2Grid.params&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For example, a user might choose to change the &amp;quot;transform_fields_for_interpolation&amp;quot; parameter to TRUE, and in this example change the input_name and output_name parameters to REF, to transform the reflectivity field to linear units before interpolation. Once the parameter file is saved, the parameter file is used by the program using the -params flag. A parameter file can be used in conjunction with command line flags, though command line flags supersede whatever is in the parameter file:  &lt;br /&gt;
 Radx2Grid -params &amp;gt; ./Radx2Grid.params -f $PWD/output/20161006/* -outdir $PWD/grid&lt;br /&gt;
&lt;br /&gt;
==== '''Quick Start Complete!''' ====&lt;br /&gt;
If you have successfully run the previous steps then you should now have a Cartesian gridded NetCDF file to use for further analysis called ncf_20161006_191339.nc in the grid’ subdirectory. From here, you can read in the CfRadial or gridded netCDF file using Julia, Python, or other programming language for further analysis. &lt;br /&gt;
&lt;br /&gt;
[[File:Qs_ncview_lg_ref.png|275px]][[File:Qs_ncview_ref.png|300px]][[File:Qs_ncview_lg_vel.png|275px]][[File:Qs_ncview_vel.png|300px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- ==== '''Jupyter Notebook Starter Kit''' ====&lt;br /&gt;
All of the following steps are available in Jupyter Notebook tutorials in Julia and Python. You can [https://github.com/nsf-lrose/lrose-blaze/tree/master/docs/starter_kit clone] the notebook or [https://github.com/nsf-lrose/lrose-blaze/releases/download/lrose-blaze-alpha/lrose-blaze-starter-kit.tgz download] the whole starter kit with input and expected output files. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1065</id>
		<title>Lrose quickstart</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1065"/>
		<updated>2025-03-12T21:12:32Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Quick Start Complete! */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== '''LROSE quickstart tutorial''' ===&lt;br /&gt;
&lt;br /&gt;
Follow these steps to get up and running quickly with LROSE, and then continue through the documentation for more details about LROSE software.&lt;br /&gt;
&lt;br /&gt;
==== '''A Basic LROSE Workflow''' ====&lt;br /&gt;
This quick start guide covers a basic LROSE analysis workflow:&lt;br /&gt;
&amp;lt;ol start=&amp;quot;1&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Print data header from a NEXRAD file using RadxPrint.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;2&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Convert Level II data to CfRadial format using RadxConvert.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;3&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Display the data in CfRadial format using Hawkeye.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;4&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Perform coordinate transformations from the polar grid to a Cartesian grid using Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;5&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Create a parameter file, which can be edited and used in Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Install''' ====&lt;br /&gt;
Follow the [http://lrose.net/software.html install instructions].  &lt;br /&gt;
&lt;br /&gt;
==== '''Get some data''' ====&lt;br /&gt;
A sample NEXRAD level II file is available [http://lrose.net/downloads/Level2_KAMX_20161006_1906.ar2v here] for use with this quick start guide.  &lt;br /&gt;
If you have your own data, just replace the filename in all the subsequent examples with your data.  &lt;br /&gt;
Open a terminal on Mac or Linux, and change the directory to where your data resides.  &lt;br /&gt;
 cd /path/to/my/data&lt;br /&gt;
&lt;br /&gt;
==== '''Inspect the data''' ====&lt;br /&gt;
LROSE can handle 24 radar and lidar formats (and counting). To see if your data works with LROSE, first use RadxPrint to print the metadata.  &lt;br /&gt;
&lt;br /&gt;
The following instructions assume you are using the LROSE binaries. If you are using your own data, replace the name of the file. The -f flag tells LROSE to use the FILELIST mode, where the path to the file is provided (the wildcard symbol * can be used to link to multiple files).&lt;br /&gt;
 RadxPrint -f $PWD/Level2_KAMX_20161006_1906.ar2v  &lt;br /&gt;
If the program returns ‘File format not recognized’ then it is not a file format that LROSE currently supports. Otherwise, you should see text output with all the metadata from your file.&lt;br /&gt;
&lt;br /&gt;
==== '''Convert the data to CfRadial''' ====&lt;br /&gt;
The LROSE workflow relies on the CfRadial format for all subsequent display and analysis. Use RadxConvert to convert your file(s) to CfRadial. It will work on any file that is recognized by RadxPrint from the first step through the Radx engine backend. Here, the -outdir flag tells RadxConvert the output directory, or where the output files should be written.&lt;br /&gt;
 RadxConvert -f $PWD/Level2_KAMX_20161006_1906.ar2v -outdir $PWD/output&lt;br /&gt;
&lt;br /&gt;
==== '''Display the data in HawkEye''' ====&lt;br /&gt;
HawkEye is a next generation data display that will eventually include editing capabilities. Use HawkEye to view the CfRadial files generated by RadxConvert on Linux and Mac (dmg) operating systems, respectively:  &lt;br /&gt;
 HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
 /Applications/HawkEye.app/Contents/MacOS/HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
&lt;br /&gt;
[[File:Qs_hawkeye_ref.png|550px]][[File:Qs_hawkeye_vel.png|550px]]&lt;br /&gt;
&lt;br /&gt;
==== '''Grid the data into Cartesian space''' ====&lt;br /&gt;
A common first step for working with NEXRAD data is to interpolate the data from its native radial coordinate to a regular grid. Radx2Grid can grid ground-based and some airborne lidar and radar data in spherical and Cartesian space. While there are many options for Radx2Grid, a basic gridding technique can be accomplished simply:  &lt;br /&gt;
 Radx2Grid -f $PWD/output/20161006/* -outdir $PWD/grid&lt;br /&gt;
&lt;br /&gt;
==== '''Create a parameter file''' ====&lt;br /&gt;
All of the aforementioned steps have used the default parameters, which likely are not be appropriate for each user. Most users will specify their desired parameters in a parameter file, which is read by the application. The -print_params flag will write out the parameters, which can be saved to a text file, as shown below. This parameter file can be opened by any text editor and edited by the user. &lt;br /&gt;
 Radx2Grid -print_params &amp;gt; ./Radx2Grid.params&lt;br /&gt;
&lt;br /&gt;
Once the parameter file is saved, the parameter file is used by the program using the -params flag. A parameter file can be used in conjunction with command line flags, though command line flags supersede whatever is in the parameter file:  &lt;br /&gt;
 Radx2Grid -params &amp;gt; ./Radx2Grid.params -f $PWD/output/20161006/* -outdir $PWD/grid&lt;br /&gt;
&lt;br /&gt;
==== '''Quick Start Complete!''' ====&lt;br /&gt;
If you have successfully run the previous steps then you should now have a Cartesian gridded NetCDF file to use for further analysis called ncf_20161006_191339.nc in the grid’ subdirectory. From here, you can read in the CfRadial or gridded netCDF file using Julia, Python, or other programming language for further analysis. &lt;br /&gt;
&lt;br /&gt;
[[File:Qs_ncview_lg_ref.png|275px]][[File:Qs_ncview_ref.png|300px]][[File:Qs_ncview_lg_vel.png|275px]][[File:Qs_ncview_vel.png|300px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- ==== '''Jupyter Notebook Starter Kit''' ====&lt;br /&gt;
All of the following steps are available in Jupyter Notebook tutorials in Julia and Python. You can [https://github.com/nsf-lrose/lrose-blaze/tree/master/docs/starter_kit clone] the notebook or [https://github.com/nsf-lrose/lrose-blaze/releases/download/lrose-blaze-alpha/lrose-blaze-starter-kit.tgz download] the whole starter kit with input and expected output files. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1064</id>
		<title>Lrose quickstart</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1064"/>
		<updated>2025-03-12T21:12:04Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== '''LROSE quickstart tutorial''' ===&lt;br /&gt;
&lt;br /&gt;
Follow these steps to get up and running quickly with LROSE, and then continue through the documentation for more details about LROSE software.&lt;br /&gt;
&lt;br /&gt;
==== '''A Basic LROSE Workflow''' ====&lt;br /&gt;
This quick start guide covers a basic LROSE analysis workflow:&lt;br /&gt;
&amp;lt;ol start=&amp;quot;1&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Print data header from a NEXRAD file using RadxPrint.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;2&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Convert Level II data to CfRadial format using RadxConvert.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;3&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Display the data in CfRadial format using Hawkeye.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;4&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Perform coordinate transformations from the polar grid to a Cartesian grid using Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;5&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Create a parameter file, which can be edited and used in Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Install''' ====&lt;br /&gt;
Follow the [http://lrose.net/software.html install instructions].  &lt;br /&gt;
&lt;br /&gt;
==== '''Get some data''' ====&lt;br /&gt;
A sample NEXRAD level II file is available [http://lrose.net/downloads/Level2_KAMX_20161006_1906.ar2v here] for use with this quick start guide.  &lt;br /&gt;
If you have your own data, just replace the filename in all the subsequent examples with your data.  &lt;br /&gt;
Open a terminal on Mac or Linux, and change the directory to where your data resides.  &lt;br /&gt;
 cd /path/to/my/data&lt;br /&gt;
&lt;br /&gt;
==== '''Inspect the data''' ====&lt;br /&gt;
LROSE can handle 24 radar and lidar formats (and counting). To see if your data works with LROSE, first use RadxPrint to print the metadata.  &lt;br /&gt;
&lt;br /&gt;
The following instructions assume you are using the LROSE binaries. If you are using your own data, replace the name of the file. The -f flag tells LROSE to use the FILELIST mode, where the path to the file is provided (the wildcard symbol * can be used to link to multiple files).&lt;br /&gt;
 RadxPrint -f $PWD/Level2_KAMX_20161006_1906.ar2v  &lt;br /&gt;
If the program returns ‘File format not recognized’ then it is not a file format that LROSE currently supports. Otherwise, you should see text output with all the metadata from your file.&lt;br /&gt;
&lt;br /&gt;
==== '''Convert the data to CfRadial''' ====&lt;br /&gt;
The LROSE workflow relies on the CfRadial format for all subsequent display and analysis. Use RadxConvert to convert your file(s) to CfRadial. It will work on any file that is recognized by RadxPrint from the first step through the Radx engine backend. Here, the -outdir flag tells RadxConvert the output directory, or where the output files should be written.&lt;br /&gt;
 RadxConvert -f $PWD/Level2_KAMX_20161006_1906.ar2v -outdir $PWD/output&lt;br /&gt;
&lt;br /&gt;
==== '''Display the data in HawkEye''' ====&lt;br /&gt;
HawkEye is a next generation data display that will eventually include editing capabilities. Use HawkEye to view the CfRadial files generated by RadxConvert on Linux and Mac (dmg) operating systems, respectively:  &lt;br /&gt;
 HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
 /Applications/HawkEye.app/Contents/MacOS/HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
&lt;br /&gt;
[[File:Qs_hawkeye_ref.png|550px]][[File:Qs_hawkeye_vel.png|550px]]&lt;br /&gt;
&lt;br /&gt;
==== '''Grid the data into Cartesian space''' ====&lt;br /&gt;
A common first step for working with NEXRAD data is to interpolate the data from its native radial coordinate to a regular grid. Radx2Grid can grid ground-based and some airborne lidar and radar data in spherical and Cartesian space. While there are many options for Radx2Grid, a basic gridding technique can be accomplished simply:  &lt;br /&gt;
 Radx2Grid -f $PWD/output/20161006/* -outdir $PWD/grid&lt;br /&gt;
&lt;br /&gt;
==== '''Create a parameter file''' ====&lt;br /&gt;
All of the aforementioned steps have used the default parameters, which likely are not be appropriate for each user. Most users will specify their desired parameters in a parameter file, which is read by the application. The -print_params flag will write out the parameters, which can be saved to a text file, as shown below. This parameter file can be opened by any text editor and edited by the user. &lt;br /&gt;
 Radx2Grid -print_params &amp;gt; ./Radx2Grid.params&lt;br /&gt;
&lt;br /&gt;
Once the parameter file is saved, the parameter file is used by the program using the -params flag. A parameter file can be used in conjunction with command line flags, though command line flags supersede whatever is in the parameter file:  &lt;br /&gt;
 Radx2Grid -params &amp;gt; ./Radx2Grid.params -f $PWD/output/20161006/* -outdir $PWD/grid&lt;br /&gt;
&lt;br /&gt;
==== '''Quick Start Complete!''' ====&lt;br /&gt;
If you have successfully run the previous steps then you should now have a Cartesian gridded NetCDF file to use for further analysis called ncf_20161006_191339.nc in the grid’ subdirectory. From here, you can read in the CfRadial or gridded netCDF file using Julia, Python, or other programming language for further analysis. Continue with the documentation to find out more about LROSE and the many options and parameters available in the LROSE-elle software suite.&lt;br /&gt;
&lt;br /&gt;
[[File:Qs_ncview_lg_ref.png|275px]][[File:Qs_ncview_ref.png|300px]][[File:Qs_ncview_lg_vel.png|275px]][[File:Qs_ncview_vel.png|300px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- ==== '''Jupyter Notebook Starter Kit''' ====&lt;br /&gt;
All of the following steps are available in Jupyter Notebook tutorials in Julia and Python. You can [https://github.com/nsf-lrose/lrose-blaze/tree/master/docs/starter_kit clone] the notebook or [https://github.com/nsf-lrose/lrose-blaze/releases/download/lrose-blaze-alpha/lrose-blaze-starter-kit.tgz download] the whole starter kit with input and expected output files. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1063</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1063"/>
		<updated>2025-03-12T21:02:09Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====='''Verify the Installation'''=====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
==== '''Quick Start Tutorial''' ====&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== '''Convert''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== '''Display''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== '''Quality Control''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== '''Grid''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== '''Echo''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== '''Wind''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1062</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1062"/>
		<updated>2025-03-12T21:01:59Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====='''Verify the Installation'''=====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== '''Quick Start Tutorial''' ====&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== '''Convert''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== '''Display''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== '''Quality Control''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== '''Grid''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== '''Echo''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== '''Wind''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1061</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1061"/>
		<updated>2025-03-12T21:01:17Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====='''Verify the Installation'''=====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Quick Start Tutorial'''&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== '''Convert''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== '''Display''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== '''Quality Control''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== '''Grid''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== '''Echo''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== '''Wind''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1060</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1060"/>
		<updated>2025-03-12T21:00:47Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====='''Verify the Installation'''=====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
'''Quick Start Tutorial'''&lt;br /&gt;
&lt;br /&gt;
The tutorial below provides an introductory guide to using LROSE, including printing metadata, format conversion to CfRadial, opening the data in HawkEye, regridding the data from a polar to Cartesian grid, and saving a parameter file.&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/lrose_quickstart LROSE Quickstart Tutorial]'''  &lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== '''Convert''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== '''Display''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== '''Quality Control''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== '''Grid''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== '''Echo''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== '''Wind''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1059</id>
		<title>Lrose quickstart</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Lrose_quickstart&amp;diff=1059"/>
		<updated>2025-03-12T20:57:23Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== '''LROSE quickstart tutorial''' ===&lt;br /&gt;
&lt;br /&gt;
Follow these steps to get up and running quickly with LROSE, and then continue through the documentation for more details about LROSE software.&lt;br /&gt;
&lt;br /&gt;
==== '''A Basic LROSE Workflow''' ====&lt;br /&gt;
This quick start guide covers a basic LROSE analysis workflow:&lt;br /&gt;
&amp;lt;ol start=&amp;quot;1&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Print data header from a NEXRAD file using RadxPrint.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;2&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Convert Level II data to CfRadial format using RadxConvert.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;3&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Display the data in CfRadial format using Hawkeye.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;4&amp;quot; style=&amp;quot;list-style-type: decimal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Perform coordinate transformations from the polar grid to a Cartesian grid using Radx2Grid.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== '''Install''' ====&lt;br /&gt;
Follow the [http://lrose.net/software.html install instructions].  &lt;br /&gt;
&lt;br /&gt;
==== '''Get some data''' ====&lt;br /&gt;
A sample NEXRAD level II file is available [http://lrose.net/downloads/Level2_KAMX_20161006_1906.ar2v here] for use with this quick start guide.  &lt;br /&gt;
If you have your own data, just replace the filename in all the subsequent examples with your data.  &lt;br /&gt;
Open a terminal on Mac or Linux, and change the directory to where your data resides.  &lt;br /&gt;
 cd /path/to/my/data&lt;br /&gt;
&lt;br /&gt;
==== '''Inspect the data''' ====&lt;br /&gt;
LROSE can handle 24 radar and lidar formats (and counting). To see if your data works with LROSE, first use RadxPrint to print the metadata.  &lt;br /&gt;
&lt;br /&gt;
The following instructions assume you are using the LROSE binaries. If you are using your own data, replace the name of the file.&lt;br /&gt;
 RadxPrint -f $PWD/Level2_KAMX_20161006_1906.ar2v  &lt;br /&gt;
If the program returns ‘File format not recognized’ then it is not a file format that LROSE currently supports. Otherwise, you should see text output with all the metadata from your file.&lt;br /&gt;
&lt;br /&gt;
==== '''Convert the data to CfRadial''' ====&lt;br /&gt;
The LROSE workflow relies on the CfRadial format for all subsequent display and analysis. Use RadxConvert to convert your file(s) to CfRadial. It will work on any file that is recognized by RadxPrint from the first step through the Radx engine backend.  &lt;br /&gt;
 RadxConvert -f $PWD/Level2_KAMX_20161006_1906.ar2v -outdir $PWD/output&lt;br /&gt;
&lt;br /&gt;
==== '''Display the data in HawkEye''' ====&lt;br /&gt;
HawkEye is a next generation data display that will eventually include editing capabilities. Use HawkEye to view the CfRadial files generated by RadxConvert on Linux and Mac (dmg) operating systems, respectively:  &lt;br /&gt;
 HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
 /Applications/HawkEye.app/Contents/MacOS/HawkEye -f $PWD/output/20161006/*&lt;br /&gt;
&lt;br /&gt;
[[File:Qs_hawkeye_ref.png|550px]][[File:Qs_hawkeye_vel.png|550px]]&lt;br /&gt;
&lt;br /&gt;
==== '''Grid the data into Cartesian space''' ====&lt;br /&gt;
A common first step for working with NEXRAD data is to interpolate the data from its native radial coordinate to a regular grid. Radx2Grid can grid ground-based and some airborne lidar and radar data in spherical and Cartesian space. While there are many options for Radx2Grid, a basic gridding technique can be accomplished simply:  &lt;br /&gt;
 Radx2Grid -f $PWD/output/20161006/* -outdir $PWD/grid&lt;br /&gt;
&lt;br /&gt;
==== '''Quick Start Complete!''' ====&lt;br /&gt;
If you have successfully run the previous steps then you should now have a Cartesian gridded NetCDF file to use for further analysis called ncf_20161006_191339.nc in the grid’ subdirectory. From here, you can read in the CfRadial or gridded netCDF file using Julia, Python, or other programming language for further analysis. Continue with the documentation to find out more about LROSE and the many options and parameters available in the LROSE-elle software suite.&lt;br /&gt;
&lt;br /&gt;
[[File:Qs_ncview_lg_ref.png|275px]][[File:Qs_ncview_ref.png|300px]][[File:Qs_ncview_lg_vel.png|275px]][[File:Qs_ncview_vel.png|300px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- ==== '''Jupyter Notebook Starter Kit''' ====&lt;br /&gt;
All of the following steps are available in Jupyter Notebook tutorials in Julia and Python. You can [https://github.com/nsf-lrose/lrose-blaze/tree/master/docs/starter_kit clone] the notebook or [https://github.com/nsf-lrose/lrose-blaze/releases/download/lrose-blaze-alpha/lrose-blaze-starter-kit.tgz download] the whole starter kit with input and expected output files. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Old_lrose_tutorials&amp;diff=1058</id>
		<title>Old lrose tutorials</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Old_lrose_tutorials&amp;diff=1058"/>
		<updated>2025-03-12T20:55:18Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Old LROSE Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== '''Old LROSE Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
* '''echo tutorials'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic basic elle echo tutorial]''' - Go through the basic steps necessary to convert a raw radar file to CfRadial, calculate Kdp and three-dimensional rain rate, and estimate the surface rainfall. The purpose of this tutorial is to confirm that the install process was successful and that some programs are working.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic_plus basic+ elle echo tutorial]''' - Similar to the basic elle tutorial with the added tasks of downloading GFS analysis from which to estimate a sounding near the radar and running the RadxBeamBlock application.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_full full elle echo tutorial]''' - This tutorial assumes the user has radar data downloaded in an [http://wiki.lrose.net/index.php/RadxConvert acceptable radar format] and walks through the most important parameters that need to be edited to run the Quantitative Precipitation Estimation (QPE) workflow.  &lt;br /&gt;
&lt;br /&gt;
* '''grid tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_grid elle regrid and convective/stratiform tutorial]''' - Convert raw NEXRAD data to the cfradial format and then interpolate to a cartesian grid and applies a convective stratiform separation algorithm.&lt;br /&gt;
&lt;br /&gt;
* '''wind tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/vortrac_tutorial VORTRAC tutorial]''' - run VORTRAC to retrieve the winds using the GBVTD/GVTD algorithm from a single Doppler radar data.&lt;br /&gt;
&lt;br /&gt;
* '''CSU Radartools tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/csu_radartools_tutorial CSU-Radartools tutorial]''' - Step through the processing of a raw radar file through editing, QC and gridding using LROSE and CSU-Radartools&lt;br /&gt;
&lt;br /&gt;
* ''' Airborne radar navigation correction tutorial'''&lt;br /&gt;
** '''[https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction/blob/main/Tutorial.md Airborne radar navigation correction]''' - Go through the steps of applying navigation correction on airborne radar data. Airborne radar navigation correction package can be found [https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction here].&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Old_lrose_tutorials&amp;diff=1057</id>
		<title>Old lrose tutorials</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Old_lrose_tutorials&amp;diff=1057"/>
		<updated>2025-03-12T20:55:05Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Old LROSE Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Old LROSE Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* '''echo tutorials'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic basic elle echo tutorial]''' - Go through the basic steps necessary to convert a raw radar file to CfRadial, calculate Kdp and three-dimensional rain rate, and estimate the surface rainfall. The purpose of this tutorial is to confirm that the install process was successful and that some programs are working.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic_plus basic+ elle echo tutorial]''' - Similar to the basic elle tutorial with the added tasks of downloading GFS analysis from which to estimate a sounding near the radar and running the RadxBeamBlock application.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_full full elle echo tutorial]''' - This tutorial assumes the user has radar data downloaded in an [http://wiki.lrose.net/index.php/RadxConvert acceptable radar format] and walks through the most important parameters that need to be edited to run the Quantitative Precipitation Estimation (QPE) workflow.  &lt;br /&gt;
&lt;br /&gt;
* '''grid tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_grid elle regrid and convective/stratiform tutorial]''' - Convert raw NEXRAD data to the cfradial format and then interpolate to a cartesian grid and applies a convective stratiform separation algorithm.&lt;br /&gt;
&lt;br /&gt;
* '''wind tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/vortrac_tutorial VORTRAC tutorial]''' - run VORTRAC to retrieve the winds using the GBVTD/GVTD algorithm from a single Doppler radar data.&lt;br /&gt;
&lt;br /&gt;
* '''CSU Radartools tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/csu_radartools_tutorial CSU-Radartools tutorial]''' - Step through the processing of a raw radar file through editing, QC and gridding using LROSE and CSU-Radartools&lt;br /&gt;
&lt;br /&gt;
* ''' Airborne radar navigation correction tutorial'''&lt;br /&gt;
** '''[https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction/blob/main/Tutorial.md Airborne radar navigation correction]''' - Go through the steps of applying navigation correction on airborne radar data. Airborne radar navigation correction package can be found [https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction here].&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1056</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1056"/>
		<updated>2025-03-12T20:52:44Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== '''Overview''' ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== '''Citations for LROSE tools''' ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== '''Installation Instructions''' ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====='''Verify the Installation'''=====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''Tutorials''' ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== '''Toolsets''' ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== '''Convert''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== '''Display''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== '''Quality Control''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== '''Grid''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== '''Echo''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== '''Wind''' ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1055</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1055"/>
		<updated>2025-03-12T19:52:47Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Verify the Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====='''Verify the Installation'''=====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1054</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1054"/>
		<updated>2025-03-12T19:52:26Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Verify the Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====='''Verify the Installation'''=====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to run the application with the &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;-h&amp;lt;/code&amp;gt; flag, as shown in the commands below. These commands should provide a list of command line options. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1053</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1053"/>
		<updated>2025-03-12T19:51:00Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Installation Instructions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====='''Verify the Installation'''=====&lt;br /&gt;
A quick way to verify that the LROSE software installed properly is to check the help flags for applications, as shown in the commands below. These commands should provide a list of command line flag options and their descriptions. There should be no errors associated with running these commands.&lt;br /&gt;
&lt;br /&gt;
If installing through Homebrew or other packages, LROSE applications should be added to your path, such that the application can be called with just its name, as shown below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the above command does not work and &amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;which RadxPrint&amp;lt;/code&amp;gt; returns nothing, use the following command or replace the path with the path into which LROSE was installed.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;/usr/local/bin/RadxPrint -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other commands to use to test the installation include:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;RadxConvert -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;Radx2Grid -h&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code lang=&amp;quot;bash&amp;quot;&amp;gt;HawkEye&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=2025_AMS_Workshop_Sessions&amp;diff=1052</id>
		<title>2025 AMS Workshop Sessions</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=2025_AMS_Workshop_Sessions&amp;diff=1052"/>
		<updated>2025-03-11T16:49:26Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: Created page with &amp;quot;=== '''Overview''' === This page holds the session recordings and slides from the 2023 AMS Workshop.   === '''Session Recordings''' === * [https://drive.google.com/file/d/11K3...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== '''Overview''' ===&lt;br /&gt;
This page holds the session recordings and slides from the 2023 AMS Workshop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== '''Session Recordings''' ===&lt;br /&gt;
* [https://drive.google.com/file/d/11K3gyvoDmqOEAaYZHXZZb__v5ZPSwqLA/view?usp=sharing Session #1: Introduction and LROSE Status Update]&lt;br /&gt;
&lt;br /&gt;
=== '''Presentation Slides''' ===&lt;br /&gt;
* [https://docs.google.com/presentation/d/1mYYuL3annukl-UV-nf70ytHFGc6l6BU_2jByCMGHhdM/edit?usp=sharing Introduction and LROSE Status Update]&lt;br /&gt;
* [https://docs.google.com/presentation/d/10Uyq56Gzqrwqd_RgcgyEnbB9-lUBoR7kfgHznpuyCak/edit?usp=sharing Community Discussion]&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1051</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1051"/>
		<updated>2025-03-11T16:45:00Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* LROSE Workshops */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2025 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2025_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1050</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1050"/>
		<updated>2025-01-09T21:01:10Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Citations for LROSE tools */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
*'''[https://doi.org/10.5281/zenodo.14624762 lrose-colette, 2025]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2025). nsf-lrose/lrose-releases: lrose-colette-20250105 (lrose-colette-20250105). Zenodo. https://doi.org/10.5281/zenodo.14624762&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1049</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1049"/>
		<updated>2024-11-13T17:36:38Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11510075 lrose-colette, 2024]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-colette-20240525 (lrose-colette-20240525). Zenodo. https://doi.org/10.5281/zenodo.11510075&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1048</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1048"/>
		<updated>2024-11-13T17:35:49Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11510075 lrose-colette, 2024]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-colette-20240525 (lrose-colette-20240525). Zenodo. https://doi.org/10.5281/zenodo.11510075&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found at [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Old_lrose_tutorials&amp;diff=1047</id>
		<title>Old lrose tutorials</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Old_lrose_tutorials&amp;diff=1047"/>
		<updated>2024-11-13T17:35:29Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Old LROSE Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* '''quick start'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/lrose_quickstart lrose quickstart tutorial]''' - Go over the basics to get up and running quickly with LROSE. &lt;br /&gt;
&lt;br /&gt;
* '''echo tutorials'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic basic elle echo tutorial]''' - Go through the basic steps necessary to convert a raw radar file to CfRadial, calculate Kdp and three-dimensional rain rate, and estimate the surface rainfall. The purpose of this tutorial is to confirm that the install process was successful and that some programs are working.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic_plus basic+ elle echo tutorial]''' - Similar to the basic elle tutorial with the added tasks of downloading GFS analysis from which to estimate a sounding near the radar and running the RadxBeamBlock application.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_full full elle echo tutorial]''' - This tutorial assumes the user has radar data downloaded in an [http://wiki.lrose.net/index.php/RadxConvert acceptable radar format] and walks through the most important parameters that need to be edited to run the Quantitative Precipitation Estimation (QPE) workflow.  &lt;br /&gt;
&lt;br /&gt;
* '''grid tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_grid elle regrid and convective/stratiform tutorial]''' - Convert raw NEXRAD data to the cfradial format and then interpolate to a cartesian grid and applies a convective stratiform separation algorithm.&lt;br /&gt;
&lt;br /&gt;
* '''wind tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/vortrac_tutorial VORTRAC tutorial]''' - run VORTRAC to retrieve the winds using the GBVTD/GVTD algorithm from a single Doppler radar data.&lt;br /&gt;
&lt;br /&gt;
* '''CSU Radartools tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/csu_radartools_tutorial CSU-Radartools tutorial]''' - Step through the processing of a raw radar file through editing, QC and gridding using LROSE and CSU-Radartools&lt;br /&gt;
&lt;br /&gt;
* ''' Airborne radar navigation correction tutorial'''&lt;br /&gt;
** '''[https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction/blob/main/Tutorial.md Airborne radar navigation correction]''' - Go through the steps of applying navigation correction on airborne radar data. Airborne radar navigation correction package can be found [https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction here].&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Old_lrose_tutorials&amp;diff=1046</id>
		<title>Old lrose tutorials</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Old_lrose_tutorials&amp;diff=1046"/>
		<updated>2024-11-13T17:35:13Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: Created page with &amp;quot;  * '''quick start''' ** '''[http://wiki.lrose.net/index.php/lrose_quickstart lrose quickstart tutorial]''' - Go over the basics to get up and running quickly with LROSE.   *...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
* '''quick start'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/lrose_quickstart lrose quickstart tutorial]''' - Go over the basics to get up and running quickly with LROSE. &lt;br /&gt;
&lt;br /&gt;
* '''echo tutorials'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic basic elle echo tutorial]''' - Go through the basic steps necessary to convert a raw radar file to CfRadial, calculate Kdp and three-dimensional rain rate, and estimate the surface rainfall. The purpose of this tutorial is to confirm that the install process was successful and that some programs are working.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic_plus basic+ elle echo tutorial]''' - Similar to the basic elle tutorial with the added tasks of downloading GFS analysis from which to estimate a sounding near the radar and running the RadxBeamBlock application.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_full full elle echo tutorial]''' - This tutorial assumes the user has radar data downloaded in an [http://wiki.lrose.net/index.php/RadxConvert acceptable radar format] and walks through the most important parameters that need to be edited to run the Quantitative Precipitation Estimation (QPE) workflow.  &lt;br /&gt;
&lt;br /&gt;
* '''grid tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_grid elle regrid and convective/stratiform tutorial]''' - Convert raw NEXRAD data to the cfradial format and then interpolate to a cartesian grid and applies a convective stratiform separation algorithm.&lt;br /&gt;
&lt;br /&gt;
* '''wind tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/vortrac_tutorial VORTRAC tutorial]''' - run VORTRAC to retrieve the winds using the GBVTD/GVTD algorithm from a single Doppler radar data.&lt;br /&gt;
&lt;br /&gt;
* '''CSU Radartools tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/csu_radartools_tutorial CSU-Radartools tutorial]''' - Step through the processing of a raw radar file through editing, QC and gridding using LROSE and CSU-Radartools&lt;br /&gt;
&lt;br /&gt;
* ''' Airborne radar navigation correction tutorial'''&lt;br /&gt;
** '''[https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction/blob/main/Tutorial.md Airborne radar navigation correction]''' - Go through the steps of applying navigation correction on airborne radar data. Airborne radar navigation correction package can be found [https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction here].&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1045</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1045"/>
		<updated>2024-11-13T17:34:37Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11510075 lrose-colette, 2024]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-colette-20240525 (lrose-colette-20240525). Zenodo. https://doi.org/10.5281/zenodo.11510075&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
We are in the process of transitioning most of our tutorials to our new LROSE Science Gateway hosted on JupyterHub servers deployed on NSF's Jetstream2 supercomputer at Indiana University. The notebooks can also be found on our [https://github.com/nsf-lrose/lrose-hub GitHub] repository. This work is supported by NSF award AGS-2103776. For more information, please contact the LROSE team directly for JupyterHub access or setting up a classroom exercise or workshop.&lt;br /&gt;
&lt;br /&gt;
Our old tutorials can be found at [http://wiki.lrose.net/index.php/old_lrose_tutorials here].&lt;br /&gt;
&lt;br /&gt;
* '''quick start'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/lrose_quickstart lrose quickstart tutorial]''' - Go over the basics to get up and running quickly with LROSE. &lt;br /&gt;
&lt;br /&gt;
* '''echo tutorials'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic basic elle echo tutorial]''' - Go through the basic steps necessary to convert a raw radar file to CfRadial, calculate Kdp and three-dimensional rain rate, and estimate the surface rainfall. The purpose of this tutorial is to confirm that the install process was successful and that some programs are working.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic_plus basic+ elle echo tutorial]''' - Similar to the basic elle tutorial with the added tasks of downloading GFS analysis from which to estimate a sounding near the radar and running the RadxBeamBlock application.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_full full elle echo tutorial]''' - This tutorial assumes the user has radar data downloaded in an [http://wiki.lrose.net/index.php/RadxConvert acceptable radar format] and walks through the most important parameters that need to be edited to run the Quantitative Precipitation Estimation (QPE) workflow.  &lt;br /&gt;
&lt;br /&gt;
* '''grid tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_grid elle regrid and convective/stratiform tutorial]''' - Convert raw NEXRAD data to the cfradial format and then interpolate to a cartesian grid and applies a convective stratiform separation algorithm.&lt;br /&gt;
&lt;br /&gt;
* '''wind tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/vortrac_tutorial VORTRAC tutorial]''' - run VORTRAC to retrieve the winds using the GBVTD/GVTD algorithm from a single Doppler radar data.&lt;br /&gt;
&lt;br /&gt;
* '''CSU Radartools tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/csu_radartools_tutorial CSU-Radartools tutorial]''' - Step through the processing of a raw radar file through editing, QC and gridding using LROSE and CSU-Radartools&lt;br /&gt;
&lt;br /&gt;
* ''' Airborne radar navigation correction tutorial'''&lt;br /&gt;
** '''[https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction/blob/main/Tutorial.md Airborne radar navigation correction]''' - Go through the steps of applying navigation correction on airborne radar data. Airborne radar navigation correction package can be found [https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1044</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1044"/>
		<updated>2024-06-06T21:50:37Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Citations for LROSE tools */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11510075 lrose-colette, 2024]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-colette-20240525 (lrose-colette-20240525). Zenodo. https://doi.org/10.5281/zenodo.11510075&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, &amp;amp; Bruno Melli. (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell. (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* '''quick start'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/lrose_quickstart lrose quickstart tutorial]''' - Go over the basics to get up and running quickly with LROSE. &lt;br /&gt;
&lt;br /&gt;
* '''echo tutorials'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic basic elle echo tutorial]''' - Go through the basic steps necessary to convert a raw radar file to CfRadial, calculate Kdp and three-dimensional rain rate, and estimate the surface rainfall. The purpose of this tutorial is to confirm that the install process was successful and that some programs are working.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic_plus basic+ elle echo tutorial]''' - Similar to the basic elle tutorial with the added tasks of downloading GFS analysis from which to estimate a sounding near the radar and running the RadxBeamBlock application.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_full full elle echo tutorial]''' - This tutorial assumes the user has radar data downloaded in an [http://wiki.lrose.net/index.php/RadxConvert acceptable radar format] and walks through the most important parameters that need to be edited to run the Quantitative Precipitation Estimation (QPE) workflow.  &lt;br /&gt;
&lt;br /&gt;
* '''grid tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_grid elle regrid and convective/stratiform tutorial]''' - Convert raw NEXRAD data to the cfradial format and then interpolate to a cartesian grid and applies a convective stratiform separation algorithm.&lt;br /&gt;
&lt;br /&gt;
* '''wind tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/vortrac_tutorial VORTRAC tutorial]''' - run VORTRAC to retrieve the winds using the GBVTD/GVTD algorithm from a single Doppler radar data.&lt;br /&gt;
&lt;br /&gt;
* '''CSU Radartools tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/csu_radartools_tutorial CSU-Radartools tutorial]''' - Step through the processing of a raw radar file through editing, QC and gridding using LROSE and CSU-Radartools&lt;br /&gt;
&lt;br /&gt;
* ''' Airborne radar navigation correction tutorial'''&lt;br /&gt;
** '''[https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction/blob/main/Tutorial.md Airborne radar navigation correction]''' - Go through the steps of applying navigation correction on airborne radar data. Airborne radar navigation correction package can be found [https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1043</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1043"/>
		<updated>2024-06-06T21:48:29Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Citations for LROSE tools */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11510075 lrose-colette, 2024]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-colette-20240525 (lrose-colette-20240525). Zenodo. https://doi.org/10.5281/zenodo.11510075&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.11479603 lrose-jade, 2023]''': DeHart, J., Dixon, M., Javornik, B., Bell, M., Cha, T.-Y., DesRosiers, A., &amp;amp; Lee, W.-C. (2024). nsf-lrose/lrose-releases: lrose-jade-20230814 (lrose-jade-20230814). Zenodo. https://doi.org/10.5281/zenodo.11479603&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell. (2022). nsf-lrose/lrose-topaz: lrose-topaz-20220222 (lrose-topaz-20220222). Zenodo. https://doi.org/10.5281/zenodo.6909479&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, Michael Dixon, Brenda Javornik, Wen-Chau Lee, Bruno Melli, Jennifer DeHart and Ting-Yu Cha (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell, Michael Dixon, Brenda Javornik, Wen-Chau Lee, Bruno Melli, Jennifer DeHart and Ting-Yu Cha (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* '''quick start'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/lrose_quickstart lrose quickstart tutorial]''' - Go over the basics to get up and running quickly with LROSE. &lt;br /&gt;
&lt;br /&gt;
* '''echo tutorials'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic basic elle echo tutorial]''' - Go through the basic steps necessary to convert a raw radar file to CfRadial, calculate Kdp and three-dimensional rain rate, and estimate the surface rainfall. The purpose of this tutorial is to confirm that the install process was successful and that some programs are working.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic_plus basic+ elle echo tutorial]''' - Similar to the basic elle tutorial with the added tasks of downloading GFS analysis from which to estimate a sounding near the radar and running the RadxBeamBlock application.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_full full elle echo tutorial]''' - This tutorial assumes the user has radar data downloaded in an [http://wiki.lrose.net/index.php/RadxConvert acceptable radar format] and walks through the most important parameters that need to be edited to run the Quantitative Precipitation Estimation (QPE) workflow.  &lt;br /&gt;
&lt;br /&gt;
* '''grid tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_grid elle regrid and convective/stratiform tutorial]''' - Convert raw NEXRAD data to the cfradial format and then interpolate to a cartesian grid and applies a convective stratiform separation algorithm.&lt;br /&gt;
&lt;br /&gt;
* '''wind tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/vortrac_tutorial VORTRAC tutorial]''' - run VORTRAC to retrieve the winds using the GBVTD/GVTD algorithm from a single Doppler radar data.&lt;br /&gt;
&lt;br /&gt;
* '''CSU Radartools tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/csu_radartools_tutorial CSU-Radartools tutorial]''' - Step through the processing of a raw radar file through editing, QC and gridding using LROSE and CSU-Radartools&lt;br /&gt;
&lt;br /&gt;
* ''' Airborne radar navigation correction tutorial'''&lt;br /&gt;
** '''[https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction/blob/main/Tutorial.md Airborne radar navigation correction]''' - Go through the steps of applying navigation correction on airborne radar data. Airborne radar navigation correction package can be found [https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1042</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1042"/>
		<updated>2024-05-29T18:27:20Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] GitHub repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, Ting-Yu Cha, and Alex DesRosiers. (2022). nsf-lrose/lrose-topaz: lrose-topaz stable final release 20220222 (lrose-topaz-2022022). Zenodo. https://doi.org/10.5281/zenodo.6909479 &lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, Michael Dixon, Brenda Javornik, Wen-Chau Lee, Bruno Melli, Jennifer DeHart and Ting-Yu Cha (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell, Michael Dixon, Brenda Javornik, Wen-Chau Lee, Bruno Melli, Jennifer DeHart and Ting-Yu Cha (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* '''quick start'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/lrose_quickstart lrose quickstart tutorial]''' - Go over the basics to get up and running quickly with LROSE. &lt;br /&gt;
&lt;br /&gt;
* '''echo tutorials'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic basic elle echo tutorial]''' - Go through the basic steps necessary to convert a raw radar file to CfRadial, calculate Kdp and three-dimensional rain rate, and estimate the surface rainfall. The purpose of this tutorial is to confirm that the install process was successful and that some programs are working.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic_plus basic+ elle echo tutorial]''' - Similar to the basic elle tutorial with the added tasks of downloading GFS analysis from which to estimate a sounding near the radar and running the RadxBeamBlock application.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_full full elle echo tutorial]''' - This tutorial assumes the user has radar data downloaded in an [http://wiki.lrose.net/index.php/RadxConvert acceptable radar format] and walks through the most important parameters that need to be edited to run the Quantitative Precipitation Estimation (QPE) workflow.  &lt;br /&gt;
&lt;br /&gt;
* '''grid tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_grid elle regrid and convective/stratiform tutorial]''' - Convert raw NEXRAD data to the cfradial format and then interpolate to a cartesian grid and applies a convective stratiform separation algorithm.&lt;br /&gt;
&lt;br /&gt;
* '''wind tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/vortrac_tutorial VORTRAC tutorial]''' - run VORTRAC to retrieve the winds using the GBVTD/GVTD algorithm from a single Doppler radar data.&lt;br /&gt;
&lt;br /&gt;
* '''CSU Radartools tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/csu_radartools_tutorial CSU-Radartools tutorial]''' - Step through the processing of a raw radar file through editing, QC and gridding using LROSE and CSU-Radartools&lt;br /&gt;
&lt;br /&gt;
* ''' Airborne radar navigation correction tutorial'''&lt;br /&gt;
** '''[https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction/blob/main/Tutorial.md Airborne radar navigation correction]''' - Go through the steps of applying navigation correction on airborne radar data. Airborne radar navigation correction package can be found [https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1041</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1041"/>
		<updated>2024-05-29T18:26:44Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* The cmake build option now supports qt6.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 37, 38, 39, Alma Linux, Suse.&lt;br /&gt;
* Bug fixes and updates to Radx applications.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the [https://github.com/NCAR/lrose-core lrose-core] Github repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, Ting-Yu Cha, and Alex DesRosiers. (2022). nsf-lrose/lrose-topaz: lrose-topaz stable final release 20220222 (lrose-topaz-2022022). Zenodo. https://doi.org/10.5281/zenodo.6909479 &lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, Michael Dixon, Brenda Javornik, Wen-Chau Lee, Bruno Melli, Jennifer DeHart and Ting-Yu Cha (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell, Michael Dixon, Brenda Javornik, Wen-Chau Lee, Bruno Melli, Jennifer DeHart and Ting-Yu Cha (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* '''quick start'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/lrose_quickstart lrose quickstart tutorial]''' - Go over the basics to get up and running quickly with LROSE. &lt;br /&gt;
&lt;br /&gt;
* '''echo tutorials'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic basic elle echo tutorial]''' - Go through the basic steps necessary to convert a raw radar file to CfRadial, calculate Kdp and three-dimensional rain rate, and estimate the surface rainfall. The purpose of this tutorial is to confirm that the install process was successful and that some programs are working.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic_plus basic+ elle echo tutorial]''' - Similar to the basic elle tutorial with the added tasks of downloading GFS analysis from which to estimate a sounding near the radar and running the RadxBeamBlock application.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_full full elle echo tutorial]''' - This tutorial assumes the user has radar data downloaded in an [http://wiki.lrose.net/index.php/RadxConvert acceptable radar format] and walks through the most important parameters that need to be edited to run the Quantitative Precipitation Estimation (QPE) workflow.  &lt;br /&gt;
&lt;br /&gt;
* '''grid tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_grid elle regrid and convective/stratiform tutorial]''' - Convert raw NEXRAD data to the cfradial format and then interpolate to a cartesian grid and applies a convective stratiform separation algorithm.&lt;br /&gt;
&lt;br /&gt;
* '''wind tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/vortrac_tutorial VORTRAC tutorial]''' - run VORTRAC to retrieve the winds using the GBVTD/GVTD algorithm from a single Doppler radar data.&lt;br /&gt;
&lt;br /&gt;
* '''CSU Radartools tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/csu_radartools_tutorial CSU-Radartools tutorial]''' - Step through the processing of a raw radar file through editing, QC and gridding using LROSE and CSU-Radartools&lt;br /&gt;
&lt;br /&gt;
* ''' Airborne radar navigation correction tutorial'''&lt;br /&gt;
** '''[https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction/blob/main/Tutorial.md Airborne radar navigation correction]''' - Go through the steps of applying navigation correction on airborne radar data. Airborne radar navigation correction package can be found [https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1040</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1040"/>
		<updated>2024-05-29T18:19:27Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://commons.wikimedia.org/wiki/File:Rose,_Colette,_%E3%83%90%E3%83%A9,_%E3%82%B3%E3%83%AC%E3%83%83%E3%83%88,_(21149732508).jpg T.Kiya from Japan], [https://creativecommons.org/licenses/by-sa/2.0 CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* This release contains further refinements in radial data format translation.&lt;br /&gt;
* The cmake-based build option is available.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 32, 33, 34, Alma Linux, Suse.&lt;br /&gt;
* Only dependent on the HDF5 C library, the C++ library is now included in libs/Ncxx in LROSE.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the lrose-cyclone Github repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, Ting-Yu Cha, and Alex DesRosiers. (2022). nsf-lrose/lrose-topaz: lrose-topaz stable final release 20220222 (lrose-topaz-2022022). Zenodo. https://doi.org/10.5281/zenodo.6909479 &lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, Michael Dixon, Brenda Javornik, Wen-Chau Lee, Bruno Melli, Jennifer DeHart and Ting-Yu Cha (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell, Michael Dixon, Brenda Javornik, Wen-Chau Lee, Bruno Melli, Jennifer DeHart and Ting-Yu Cha (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* '''quick start'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/lrose_quickstart lrose quickstart tutorial]''' - Go over the basics to get up and running quickly with LROSE. &lt;br /&gt;
&lt;br /&gt;
* '''echo tutorials'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic basic elle echo tutorial]''' - Go through the basic steps necessary to convert a raw radar file to CfRadial, calculate Kdp and three-dimensional rain rate, and estimate the surface rainfall. The purpose of this tutorial is to confirm that the install process was successful and that some programs are working.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic_plus basic+ elle echo tutorial]''' - Similar to the basic elle tutorial with the added tasks of downloading GFS analysis from which to estimate a sounding near the radar and running the RadxBeamBlock application.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_full full elle echo tutorial]''' - This tutorial assumes the user has radar data downloaded in an [http://wiki.lrose.net/index.php/RadxConvert acceptable radar format] and walks through the most important parameters that need to be edited to run the Quantitative Precipitation Estimation (QPE) workflow.  &lt;br /&gt;
&lt;br /&gt;
* '''grid tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_grid elle regrid and convective/stratiform tutorial]''' - Convert raw NEXRAD data to the cfradial format and then interpolate to a cartesian grid and applies a convective stratiform separation algorithm.&lt;br /&gt;
&lt;br /&gt;
* '''wind tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/vortrac_tutorial VORTRAC tutorial]''' - run VORTRAC to retrieve the winds using the GBVTD/GVTD algorithm from a single Doppler radar data.&lt;br /&gt;
&lt;br /&gt;
* '''CSU Radartools tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/csu_radartools_tutorial CSU-Radartools tutorial]''' - Step through the processing of a raw radar file through editing, QC and gridding using LROSE and CSU-Radartools&lt;br /&gt;
&lt;br /&gt;
* ''' Airborne radar navigation correction tutorial'''&lt;br /&gt;
** '''[https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction/blob/main/Tutorial.md Airborne radar navigation correction]''' - Go through the steps of applying navigation correction on airborne radar data. Airborne radar navigation correction package can be found [https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1039</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=Main_Page&amp;diff=1039"/>
		<updated>2024-05-29T18:12:33Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''LROSE: The Lidar Radar Open Software Environment''' ==&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
[[File:Colette_rose.jpg|thumb|right|'''Colette &amp;lt;br /&amp;gt;Image: [https://creativecommons.org/licenses/by-sa/2.0 T.Kiya from Japan, CC BY-SA 2.0], via Wikimedia Commons''']]&lt;br /&gt;
The current LROSE release is called '''“Colette”''' (a versatile climbing rose) and encompasses six key toolsets that define a core lidar/radar workflow: ''[http://wiki.lrose.net/index.php?title=Main_Page#Convert Convert], [http://wiki.lrose.net/index.php?title=Main_Page#Display Display], [http://wiki.lrose.net/index.php?title=Main_Page#Quality_Control QC], [http://wiki.lrose.net/index.php?title=Main_Page#Grid Grid], [http://wiki.lrose.net/index.php?title=Main_Page#Echo Echo], and [http://wiki.lrose.net/index.php?title=Main_Page#Wind Winds].'' '''Colette''' focuses on high-quality, well-tested, well-maintained and well-documented key applications as ‘building blocks’, allowing users to assemble trusted, reproducible workflows to accomplish more complex scientific tasks.&lt;br /&gt;
&lt;br /&gt;
Some highlights for Colette:&lt;br /&gt;
* This release contains further refinements in radial data format translation.&lt;br /&gt;
* The cmake-based build option is available.&lt;br /&gt;
* Packages are available for Centos, Ubuntu, Fedora 32, 33, 34, Alma Linux, Suse.&lt;br /&gt;
* Only dependent on the HDF5 C library, the C++ library is now included in libs/Ncxx in LROSE.&lt;br /&gt;
* HawkEdit is now a beta version, and has undergone considerable testing from users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Colette can be compiled in C++ for native apps on Linux or Mac. Preliminary support is available for some tools on Windows.&lt;br /&gt;
&lt;br /&gt;
We encourage users to [http://lrose.net/software.html register] in order to receive critical software updates, and sign up for the mailing list to help build the LROSE community.&lt;br /&gt;
&lt;br /&gt;
[http://lrose.net/help.html Help] can be obtained by posting issues directly to the lrose-cyclone Github repository, via our help mailing list, or Discourse user forum.&lt;br /&gt;
&lt;br /&gt;
LROSE is a co-operative project between:&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmos.colostate.edu/ Dept. of Atmospheric Science at Colorado State University (CSU)] and the&lt;br /&gt;
* [https://www.eol.ucar.edu/content/lidar-radar-open-software-environment The Earth Observing Lab at the National Center for Atmospheric Research (NCAR)].&lt;br /&gt;
&lt;br /&gt;
LROSE is funded by the [https://www.nsf.gov National Science Foundation].&lt;br /&gt;
&lt;br /&gt;
=== Citations for LROSE tools ===&lt;br /&gt;
&lt;br /&gt;
Please cite the version of LROSE tools you use for publication. If you are unsure of the version, please cite the latest stable release.&lt;br /&gt;
&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.6909479 lrose-topaz, 2022]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, Ting-Yu Cha, and Alex DesRosiers. (2022). nsf-lrose/lrose-topaz: lrose-topaz stable final release 20220222 (lrose-topaz-2022022). Zenodo. https://doi.org/10.5281/zenodo.6909479 &lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.5523312 lrose-elle, 2021]''': Michael M. Bell, Michael Dixon, Wen-Chau Lee, Brenda Javornik, Jennifer DeHart, &amp;amp; Ting-Yu Cha. (2021). nsf-lrose/lrose-elle: lrose-elle stable final release 20210312 (lrose-elle-20210312). Zenodo. https://doi.org/10.5281/zenodo.5523312&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.3604387 lrose-cyclone, 2020]''': Michael M. Bell, Michael Dixon, Brenda Javornik, Wen-Chau Lee, Bruno Melli, Jennifer DeHart and Ting-Yu Cha (2020). nsf-lrose/lrose-cyclone: lrose-cyclone release 20200110 (lrose-cyclone-20200110). Zenodo. https://doi.org/10.5281/zenodo.3604387&lt;br /&gt;
* '''[https://doi.org/10.5281/zenodo.2532758 lrose-blaze, 2019]''': Michael M. Bell, Michael Dixon, Brenda Javornik, Wen-Chau Lee, Bruno Melli, Jennifer DeHart and Ting-Yu Cha (2019). nsf-lrose/lrose-blaze: lrose-blaze-20190105 (lrose-blaze-20190105). Zenodo. https://doi.org/10.5281/zenodo.2532758&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
*'''Homebrew Installation'''&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/install_using_homebrew.mac_osx.md Mac Homebrew installation]''' - For Native applications on the Mac, the recommended method is to use Homebrew. The formula contains all the necessary dependencies and builds instructions.&lt;br /&gt;
&lt;br /&gt;
* '''Source Installation''' - Intended for users who wish to do a manual build or build in a non-standard location. Source compilation is best performed using a supplied Python script.&lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/build/LROSE_build_main_page.md Build system]''' -  For LINUX and MAC OS cmake/autoconf/manual builds and code development &lt;br /&gt;
&lt;br /&gt;
* '''CIDD Binary Installation''' &lt;br /&gt;
** '''[https://github.com/NCAR/lrose-core/blob/master/docs/download/CIDD_binary_download_and_install.linux.md CIDD Binary Release]''' - CIDD depends on a 32-bit build, which complicates the build and install for the core. The CIDD display application is not included in the standard lrose-core packages (above).&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
&lt;br /&gt;
* '''quick start'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/lrose_quickstart lrose quickstart tutorial]''' - Go over the basics to get up and running quickly with LROSE. &lt;br /&gt;
&lt;br /&gt;
* '''echo tutorials'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic basic elle echo tutorial]''' - Go through the basic steps necessary to convert a raw radar file to CfRadial, calculate Kdp and three-dimensional rain rate, and estimate the surface rainfall. The purpose of this tutorial is to confirm that the install process was successful and that some programs are working.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_basic_plus basic+ elle echo tutorial]''' - Similar to the basic elle tutorial with the added tasks of downloading GFS analysis from which to estimate a sounding near the radar and running the RadxBeamBlock application.  &lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_full full elle echo tutorial]''' - This tutorial assumes the user has radar data downloaded in an [http://wiki.lrose.net/index.php/RadxConvert acceptable radar format] and walks through the most important parameters that need to be edited to run the Quantitative Precipitation Estimation (QPE) workflow.  &lt;br /&gt;
&lt;br /&gt;
* '''grid tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/elle_grid elle regrid and convective/stratiform tutorial]''' - Convert raw NEXRAD data to the cfradial format and then interpolate to a cartesian grid and applies a convective stratiform separation algorithm.&lt;br /&gt;
&lt;br /&gt;
* '''wind tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/vortrac_tutorial VORTRAC tutorial]''' - run VORTRAC to retrieve the winds using the GBVTD/GVTD algorithm from a single Doppler radar data.&lt;br /&gt;
&lt;br /&gt;
* '''CSU Radartools tutorial'''&lt;br /&gt;
** '''[http://wiki.lrose.net/index.php/csu_radartools_tutorial CSU-Radartools tutorial]''' - Step through the processing of a raw radar file through editing, QC and gridding using LROSE and CSU-Radartools&lt;br /&gt;
&lt;br /&gt;
* ''' Airborne radar navigation correction tutorial'''&lt;br /&gt;
** '''[https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction/blob/main/Tutorial.md Airborne radar navigation correction]''' - Go through the steps of applying navigation correction on airborne radar data. Airborne radar navigation correction package can be found [https://github.com/csu-tropical/Airborne-Radar-Navigation-Correction here].&lt;br /&gt;
&lt;br /&gt;
=== Toolsets ===&lt;br /&gt;
In the current release, the following tools are available:&lt;br /&gt;
&lt;br /&gt;
==== Convert ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPrint RadxPrint]''' - Query files to determine properties and support by the Radx engine&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxConvert RadxConvert]''' - Convert 24 different lidar and radar formats to CfRadial NetCDF format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBufr RadxBufr]''' - Convert Bufr format to CfRadial NetCDF format&lt;br /&gt;
&lt;br /&gt;
==== Display ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/HawkEye HawkEye]''' - Real-time and archive display suitable for both scanning and vertically pointing radars.&lt;br /&gt;
&lt;br /&gt;
==== Quality Control ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffFields RadxDiffFields]''' - Compare two fields in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDiffVol RadxDiffVol]''' - Compare two volumes in different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMergeFields RadxMergeFields]''' - Merge fields from different CfRadial files&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxFilter RadxFilter]''' - Perform simple filtering operations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPersistentClutter RadxPersistentClutter]''' - Create a mask for persistent ground clutter&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxDealias RadxDealias]''' - Dealias single-Doppler data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQc RadxQc]''' - General quality control&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/IntfRemove IntfRemove]''' - Identify and remove interference in Titan data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxModelQc RadxModelQc]''' - Filter Radx data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxClutMon RadxClutMon]''' - Clutter analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TsCalAuto TsCalAuto]''' - Radar calibration analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadarCal RadarCal]''' - Analyze calibration data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxSunMon RadxSunMon]''' - Search for sun spikes and perform solar analysis&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SunCal SunCal]''' - Analyze time series data from sun scans&lt;br /&gt;
&lt;br /&gt;
==== Grid ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Radx2Grid Radx2Grid]''' - Gridding and interpolation of ground-based radar data&lt;br /&gt;
&lt;br /&gt;
==== Echo ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxKdp RadxKdp]''' - KDP and Attenuation calculations&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxPid RadxPid]''' - KDP, Attenuation, and Particle Identification&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxRate RadxRate]''' - KDP, Attenuation, PID, and Rain Rate&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxQpe RadxQpe]''' - Accumulated Quantitative Precipitation Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxHca RadxHca]''' - NEXRAD Hydrometeor Classification Algorithm&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RateAccum RateAccum]''' - Accumulated Precipitation (''recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/PrecipAccum PrecipAccum]''' - Accumulated Precipitation (''not recommended'')&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxBeamBlock RadxBeamBlock]''' - Beam Blockage Estimation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ConvStrat ConvStrat]''' - Identify convective and stratiform regions in Cartesian radar volume&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxMesoCyclone RadxMesoCyclone]''' - Identify mesocyclones in radar data&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/QpeVerify QpeVerify]''' - Compare radar-derived and observed precipitation accumulation&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCompute RefractCompute]''' - Compute refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RefractCalib RefractCalib]''' - Create calibration file used by RefractCompute&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/CalcMoisture CalcMoisture]''' - Calculate moisture fields from refractivity&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Titan Titan]''' - Thunderstorm Identification, Tracking, Analysis, and Nowcasting application&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tracks2Ascii Tracks2Ascii]''' - Print out storm and track data in ASCII format&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Tstorms2Xml Tstorms2Xml]''' - Convert storms data to XML or Spdb&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/StormInitLocation StormInitLocation]''' - Write out the initiation location of significant storms&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ScaleSep ScaleSep]''' - Separate a radar image into different spatial scales&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Colide Colide]''' - Detect and extrapolate boundaries&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/ctrec ctrec]''' - Track echo motion&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/Rview Rview]''' - Visualize Titan data (spatially)&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/TimeHist TimeHist]''' - Visualize Titan data (through time)&lt;br /&gt;
&lt;br /&gt;
==== Wind ====&lt;br /&gt;
&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/RadxEvad RadxEvad]''' - Extended Velocity Azimuth Display single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/FRACTL FRACTL]''' - Fast Reorder and CEDRIC Technique in LROSE multi-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/SAMURAI SAMURAI]''' - Variational multi-Doppler retrieval and analysis package&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/VORTRAC VORTRAC]''' - Vortex Objective Radar Tracking and Circulation single-Doppler retrieval&lt;br /&gt;
* '''[http://wiki.lrose.net/index.php/OpticalFlow OpticalFlow]''' - Estimate 2-D velocity of a radar field&lt;br /&gt;
&lt;br /&gt;
== '''Practical Radar Meteorology''' ==&lt;br /&gt;
&lt;br /&gt;
The material contained here is designed to supplement radar textbooks and course materials with scientific background on common procedures used in radar meteorology. When combined with the above tutorials and documentation, these practical guides will help apply LROSE tools for scientific applications.&lt;br /&gt;
&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Gridding_Options Cartesian Gridding of Polar Radar Data]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Radx2Grid_Convective_Stratiform Convective/Stratiform Partitioning]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/KDP_estimation Kdp Calculation]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxRate_equations Rain Rate Calculations]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/Estimated_Attenuation Attenuation Correction]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxPid_fuzzylogic Particle Identification using Fuzzy Logic]&lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxQpe_expanded Quantitative Precipitation Estimation] &lt;br /&gt;
# [http://wiki.lrose.net/index.php/RadxDealias_James_and_Houze_2001 Velocity Dealiasing]&lt;br /&gt;
&lt;br /&gt;
== '''LROSE Workshops''' ==&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2020 Mini Workshop ===&lt;br /&gt;
*'''[http://wiki.lrose.net/images/a/ae/LROSE_AMS_2020_Mini-Workshop_Agenda.pdf Meeting Notes]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/8/89/Mmbell_LROSE_AMSannual2020_small.pdf LROSE Mini-Workshop Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/9/9c/LROSE-CycloneDoppler_small.pdf LROSE Cyclone Multi-Doppler Tutorial Slides]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/images/0/09/HawkEye_Tutorial.pdf Brief Hawkeye Tutorial Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE Fall 2021 Virtual Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Videos Pre-recorded Videos]'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2021_Fall_Workshop_Sessions Session Recordings and Slides]'''&lt;br /&gt;
&lt;br /&gt;
=== LROSE AMS 2023 Workshop ===&lt;br /&gt;
*'''Meeting Notes'''&lt;br /&gt;
*'''[http://wiki.lrose.net/index.php/2023_AMS_Workshop_Sessions Session Recordings and Slides]'''&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
	<entry>
		<id>http://wiki.lrose.net/index.php?title=File:Colette_rose.jpg&amp;diff=1038</id>
		<title>File:Colette rose.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.lrose.net/index.php?title=File:Colette_rose.jpg&amp;diff=1038"/>
		<updated>2024-05-29T17:48:06Z</updated>

		<summary type="html">&lt;p&gt;Jcdehart: T.Kiya from Japan, CC BY-SA 2.0 &amp;lt;https://creativecommons.org/licenses/by-sa/2.0&amp;gt;, via Wikimedia Commons&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
T.Kiya from Japan, CC BY-SA 2.0 &amp;lt;https://creativecommons.org/licenses/by-sa/2.0&amp;gt;, via Wikimedia Commons&lt;/div&gt;</summary>
		<author><name>Jcdehart</name></author>
		
	</entry>
</feed>