Arcgis通过格网收敛角改正画风速矢量图(plot wind vector with grid convergence correction in arcgis10.3)

时间:2024-04-12 08:48:33

“转载请注明出处!”

Data: Era interim 10m wind component U and V

Arcgis通过格网收敛角改正画风速矢量图(plot wind vector with grid convergence correction in arcgis10.3)Arcgis通过格网收敛角改正画风速矢量图(plot wind vector with grid convergence correction in arcgis10.3)

 Software:matlab2014b, Arcmap10.3

1. compute the wind speed and direction in matlab:

speed=sqrt(u.*u+v.*v)

angle=(180/3.14)*atan2(v,u)

note that the angle now is just arithmetic angle and we should convert the arithmetic angle to geographic angle before plot in arcmap

conversion:

angle=rem(450-angle,360)

2.add the wind data with lat, lon, speed and direction fields in Arcmap, the step by step processes about how to display the wind vector had been illustrated by Kevin Butler (Displaying Speed and Direction Symbology from U and V vectors) https://www.esri.com/arcgis-blog/products/product/analytics/displaying-speed-and-direction-symbology-from-u-and-v-vectors/ 

3. The formulas above are correct only if U and V are measured relative to a grid where true north consistently points straight up (e.g. no rotation). Otherwise, a convergence angle correction must be applied based on the projection of the data

4. Convergence correction in Arcgis:

Arcgis tool box:  Cartography Tools->Data Driven Pages->Calculate Grid Convergence

Arcgis通过格网收敛角改正画风速矢量图(plot wind vector with grid convergence correction in arcgis10.3)

1)Select the field to calculate the convergence (usually add a new field in the attribute table)

Arcgis通过格网收敛角改正画风速矢量图(plot wind vector with grid convergence correction in arcgis10.3)

2)Set the envrionment to specify the projection coordinate:

Arcgis通过格网收敛角改正画风速矢量图(plot wind vector with grid convergence correction in arcgis10.3)

3)output corrdinate

Arcgis通过格网收敛角改正画风速矢量图(plot wind vector with grid convergence correction in arcgis10.3)

4)Cartography

Arcgis通过格网收敛角改正画风速矢量图(plot wind vector with grid convergence correction in arcgis10.3)

5)original wind vector without correction

Arcgis通过格网收敛角改正画风速矢量图(plot wind vector with grid convergence correction in arcgis10.3)

6)set the rotation as original angle plus convergence correction

Arcgis通过格网收敛角改正画风速矢量图(plot wind vector with grid convergence correction in arcgis10.3)

7)wind vector with grid convergence correction

Arcgis通过格网收敛角改正画风速矢量图(plot wind vector with grid convergence correction in arcgis10.3)