• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

Variable types

Messages
49
Hi!!
I am wondering where I can find the variable type for the different variables that are pulled off the sim.
I am trying to extract some data and I followed the example and got to get the Lat, Long, Altitude, Airspeed, but that's about it.
For example the variable PLANE HEADING DEGREES MAGNETIC the documentation states that it is in radians.
I should know which type is which or is there a documentation where I can find the variable numeric or string type?
But how do I know if its a FLOAT64, INT32, etc etc.
I want to know how to extract the numbers in the correct format into my VB.NET application.
Any help is appreciated.

Thanks much,

Teo
 
teofilo said:
For example the variable PLANE HEADING DEGREES MAGNETIC the documentation states that it is in radians.
It will be supplied in whatever compatible unit you want. Just specify "degrees" if you want degrees. That's what you'll get.

But how do I know if its a FLOAT64, INT32, etc etc.
If you want a numeric value read into an INT32, you specify that. It will be the integer part with no fractions. If you want the fractional part specify FLOAT32 or FLOAT64. These are YOUR choices. Providing the type is compatible (and any numeric type is okay for any numeric value), that's what you'll get.

Pete
 
Back
Top