Jump to content
The simFlight Network Forums

METAR Format


mmaier

Recommended Posts

Hallo Paul

 

I,m using your new FSUIPCClient.dll 3.0.5358.4.

 

With ws.GetMetarAtLocation(ICAO) i get a METAR-String.

 

For Example: The Wind-Speed and Wind-Directon

This looks like 25006KT&D920NG or 27019KT&A1539NG

250 / 270 Degrees and 6 / 19 Knots Speed.

 

But was is the 2. Part of this Strings &D920NG / &A1539NG

 

Google givs me no Answer, maybe i'm looking wrong.

 

Best Regards

Manfred

Link to comment
Share on other sites

Hi Manfred,

 

The METAR strings are returned directly from the SimConnect interface (via FSUIPC). These contain extended data used by SimConnect in addition to the standard METAR codes. The extensions tend to start with &.

 

&D920NG means the (D)epth (height) of the wind layer is 920 metres, the turbulence is (N)one, and wind shear is (G)radual.

 

The &A is for winds above the surface layer and specifies the altitude in metres (in your example 1539m),

 

The official specification of the SimConnect METAR string can be found here:

 

http://msdn.microsoft.com/en-gb/library/cc526983.aspx#Metar_Data_Format

 

 

If you want a clean, standard METAR string then you can either build one from the SimConnect METAR, or create your own from the information in the FsWeather object e.g.:

FsWeather weather = ws.GetWeatherAtLocation(IACO);

Paul

Link to comment
Share on other sites

  • 3 years later...

Hello Paul,

I have another doubt.

Are both depth and altitude  represented by the Upper Altitude parameter (defined as UpperAlt in NewWeather.h)?

I am trying to read the depth/altitude values for Global weather using fsuipc and the offset class from the FSUIPCClient made available by you. 

On comparison with SimConnect's Metar string for global weather, I get the correct depth values (Last set global wind upper Alt - offset C4fc). But i am getting wrong altitude values (in this case there are 2 aloft winds and I am accessing the offsets C50C and C51C)

 

Link to comment
Share on other sites

2 hours ago, mer said:

On comparison with SimConnect's Metar string for global weather, I get the correct depth values (Last set global wind upper Alt - offset C4fc). But i am getting wrong altitude values (in this case there are 2 aloft winds and I am accessing the offsets C50C and C51C)

Please use the Weather logging in FSUIPC's Logging tab, and show the part you think is wrong. Weather logging shows both the METAR strings received and their decoding.

Pete

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.