WindBarbSymbol Class
Symbol used to draw wind barbs.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public class WindBarbSymbol : Symbol
Remarks
This symbol is not supported in GlobeView.
A WindBarbSymbol is used together with a SymbolVisualizer to draw wind barbs that represent wind direction and speed. The direction is controlled by PointVisualizer.Rotation property. The barbs are drawn depending on the Speed property. It follows the following logic:
The speed is first rounded to the nearest 5 knots.
If 0 knots: A circle is drawn to represent a calm wind.
For each 50 knots: A triangular flag is drawn.
For each remaining 10 knots, a long line is drawn.
If there remains 5 knots, a short line is drawn.
![]() |
The insertion point of the wind barb is the undecorated end of the main line, or the center of the calm wind circle. If you prefer to have a filled circle indicating the insertion point, add another SymbolVisualizer that uses the predefined circle symbol.
Meteorological wind direction indicates which direction the wind comes from, using bearing. Therefore we have made the symbol point south if the rotation is 0, as 0 indicates a wind coming from north.
In most cases the direction is given relative true north. To get the correct symbol direction, set PointVisualizer.AzimuthRotation to True.
When using WindBarbSymbol you will probably read the data from a GRIB file. The data is often separated into multiple rasters with information that needs to be merged. To visualize the data you will likely want to sample the raster and create uniformly distributed wind barbs. A PointSampleOperator can be used for this. It can sample both rasters and merge that information into a single generated point feature.
If the wind data is given in two different rasters with speed and an angle, you can just use the angle as the rotation of the symbol. If the speed is given in m/s you have to convert it to knots. This can be done using the expression version of AttributeVariable<System.Double> and multiply with 1.94384449.
The data may also be given as the X and Y components of a vector. This vector points in the direction the wind is going to, rather than where it comes from. Since the symbol uses the meteorological interpretation, the calculation has to compensate for this. You can use the following expressions, given that the PointSampleOperator has set up values 'x' for the eastward wind component and 'y' for the northward one:
Rotation
When using atan2 we are working with radians, and the angles go from right and counter-clockwise. The rotation of the symbol works with degrees and go from up and clockwise.
Expression: 180 + 90 - rad2deg(atan2(y, x))
The "90 -" part will convert from mathematical angles to bearing. Finally, since the rotation value represents where the wind blows from and not where it is going, we add 180 degrees to turn it around.
Speed
The magnitude of the vector indicates the speed. We also include conversion from m/s to knots:
Expression: sqrt(x*x + y*y) * 1.94384449
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
ResourceObject
Symbol
WindBarbSymbol
Platforms
Windows, Linux, Android
WindBarbSymbol Members
The WindBarbSymbol type has the following members.
Constructors
Name | Description |
---|---|
WindBarbSymbol | Initializes a new instance of the WindBarbSymbol class. |
Properties
Name | Description |
---|---|
Gets the predefined brick fill pattern. Inherited from Symbol | |
Gets the predefined bullseye symbol. Inherited from Symbol | |
Gets the predefined burst symbol. Inherited from Symbol | |
Gets the predefined circle symbol. Inherited from Symbol | |
Gets the predefined circleCross symbol. Inherited from Symbol | |
Gets the predefined circleX symbol. Inherited from Symbol | |
Gets the predefined cross symbol. Inherited from Symbol | |
Gets the predefined deciduousTree fill pattern. Inherited from Symbol | |
Gets the predefined diamond symbol. Inherited from Symbol | |
Gets the predefined dots1 fill pattern. Inherited from Symbol | |
Gets the predefined dots2 fill pattern. Inherited from Symbol | |
Gets an empty symbol or fill pattern. Inherited from Symbol | |
Gets the predefined evergreenTree fill pattern. Inherited from Symbol | |
Gets the predefined floodable fill pattern. Inherited from Symbol | |
Gets the predefined glacier fill pattern. Inherited from Symbol | |
Gets the predefined grassland fill pattern. Inherited from Symbol | |
Gets the predefined grid1 fill pattern. Inherited from Symbol | |
Gets the predefined grid2 fill pattern. Inherited from Symbol | |
Gets the predefined hollow circle symbol. Inherited from Symbol | |
Gets the predefined hollow diamond symbol. Inherited from Symbol | |
Gets the predefined hollow rounded square symbol. Inherited from Symbol | |
Gets the predefined hollow square symbol. Inherited from Symbol | |
Gets the predefined hollow triangle symbol. Inherited from Symbol | |
IsDisposed | Gets a value that tells whether the current WindBarbSymbol has been disposed. Inherited from EngineObject |
Gets the predefined mangrove fill pattern. Inherited from Symbol | |
Gets the predefined mixedTree fill pattern. Inherited from Symbol | |
Name | Gets or sets the name of the WindBarbSymbol. Inherited from ResourceObject |
NativeHandle | Gets the native Carmenta Engine kernel object the current WindBarbSymbol represents. Inherited from EngineObject |
Gets a predefined north arrow symbol: an arrowhead without an N label. Inherited from Symbol | |
Gets a predefined north arrow symbol: an arrowhead with an N label. Inherited from Symbol | |
Gets the predefined orchard/plantation fill pattern. Inherited from Symbol | |
Gets the predefined rice fill pattern. Inherited from Symbol | |
Gets the predefined rounded square symbol. Inherited from Symbol | |
Gets the predefined sand fill pattern. Inherited from Symbol | |
Gets the predefined sandAndGravel fill pattern. Inherited from Symbol | |
Gets the predefined scrub/thicket fill pattern. Inherited from Symbol | |
Gets the predefined small dot symbol. Inherited from Symbol | |
Gets the predefined small plus symbol. Inherited from Symbol | |
Gets the predefined solid fill pattern. Inherited from Symbol | |
Speed | Gets or sets the speed of the wind the symbol represents. |
Gets the predefined square symbol. Inherited from Symbol | |
Gets the predefined star symbol. Inherited from Symbol | |
Gets the predefined stripes1 fill pattern. Inherited from Symbol | |
Gets the predefined stripes10 fill pattern. Inherited from Symbol | |
Gets the predefined stripes11 fill pattern. Inherited from Symbol | |
Gets the predefined stripes12 fill pattern. Inherited from Symbol | |
Gets the predefined stripes2 fill pattern. Inherited from Symbol | |
Gets the predefined stripes3 fill pattern. Inherited from Symbol | |
Gets the predefined stripes4 fill pattern. Inherited from Symbol | |
Gets the predefined stripes5 fill pattern. Inherited from Symbol | |
Gets the predefined stripes6 fill pattern. Inherited from Symbol | |
Gets the predefined stripes7 fill pattern. Inherited from Symbol | |
Gets the predefined stripes8 fill pattern. Inherited from Symbol | |
Gets the predefined stripes9 fill pattern. Inherited from Symbol | |
Gets the predefined swamp fill pattern. Inherited from Symbol | |
Gets the predefined triangle symbol. Inherited from Symbol | |
IUserProperties.UserProperties | Gets the AttributeSet that contains the user properties. Inherited from IUserProperties |
Gets the predefined vineyard/hops fill pattern. Inherited from Symbol | |
Gets the predefined x symbol. Inherited from Symbol |
Methods
Name | Description |
---|---|
Clone | Creates a copy of an object. Inherited from EngineObject |
Dispose | Releases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject |
Equals | Determines whether this instance is equal to another. Inherited from EngineObject |