How to compare NEXRAD with rain gauge data in ICM? — Part 2

Mel Meng
4 min readJun 12, 2021

source: Innovyze Support Portal

In part 1, we setup two models, one uses NEXRAD, and the other uses a single rain gauge from a time series stored in a TSDB.

What if we want to use both the rain gauge data and the NEXRAD rainfall in the same model, for areas close to the rain gauges, we would like to use rain gauges, and for areas too far away we would like to use the NEXRAD.

Turn rain gauges into Spatial rainfall Polygons

In part 1, we created two TVD connectors for the two rain gauges as points and used the rainfall profile in the subcatchment properties to reference the data.

To use spatial rainfall, we need to create polygons instead of points for the rain gauges. When using spatial rainfall, instead of relying on the rain gauge IDs, the spatial relation between the rain gauge polygon and the subcatchment polygon will be used to determine the rainfall time series for the subcatchment.

As shown below, the two subcatchments that are completely within the TVD polygon will use the rain gauge data from that polygon, and subcatchment “Spatial” is crossing both TVD polygons.

Area-averaged rain

By default, the rain gauge region that contains the centroid of the subcatchment will be used to provide rainfall data for the entire subcatchment. For very large subcatchments, where the subcatchment overlaps multiple rainfall polygons, this can mean that the simulated subcatchment rainfall is not representative of the rainfall over the subcatchment as a whole. Check the subcatchment Use area-averaged rainfall field to use data from all rain gauge regions that the subcatchment overlaps.

If we don’t check the “Use area-averaged rain”, then RW_PINN will be used for subcatchment “Spatail”, otherwise, an area averaged rainfall of both rain gauges will be used.

Create Rain Gauge Polygons

Use the polygon tool to create the TVD connector,

To use the TVD polygons to assign rainfall, we need to create a rain gauge network first.

We first need to group all the rain gauge polygons using the same category name “rg”, it can be anything meaningful for the project.

Then, we add a record to the “Spatial rain source” tab,

  1. switch to the spatial rain source tab
  2. give the rain gauge network a name
  3. choose the “Raingauge polygons” option to group all the polygons into one rainfall source
  4. this the category name we defined in the TVD connector tab
  5. give it a priority: when multiple sources are available using the priority to decide which source to use first

Spatial Rainfall Results

As expected, the rainfall are exactly the same for the subcatchments are completed within the rain gauge polygon.

For subcatchment “Spatial”,

when using profile: RW_PINN

using centroid: exactly the same as RW_PINN, since the centroid is in that rain gauge polygon

using area-weighted: much higher because RW_GWRISSOM recorded more rainfall.

The sample model can be downloaded from github.

In the next post, we’ll learn how to prioritize different rainfall sources.

--

--