Howto:Calculate elevations: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(Creation)
 
m (Fixed spelling and formatting)
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
There is a specific script in Flightgear, called find_elevations.pl
There is a specific script in [[FlightGear]] that enables the '''calculation of the elevation''' at a specific longitude and latitude. The script is called find_elevations.pl and is located in the FG source directory under: <tt>[http://mapserver.flightgear.org/git/gitweb.pl?p=flightgear;a=blob_plain;f=scripts/perl/examples/find_elevations.pl;hb=HEAD scripts/perl/examples/find_elevations.pl]</tt>.


Under GNU/Linux, for instance, this script is located here : "/usr/local/src/flightgear/scripts/perl/examples/find_elevations.pl".
To use it:
# Launch FG like this: <tt>fgfs --fdm=null --telnet=5401</tt>
# Then, in a separate window, launch the script: <tt>./find_elevations.pl</tt>.
# Enter the longitude and latitude of the object for which you want to get the elevation.
For instance:
olivier@olivier-portable:/var/www$ ./find_elevations.pl
-3.926816 48.632452 62.37586682
For a longitude of -3.926816 and a latitude of 48.632452, the elevation is 62.37586682.


This script enables the calculation of the elevation at a specific longitude and latitude.
Enjoy!


To use it, launch FG like this : "fgfs --fdm=null --telnet=5401"
== Related content ==
* [[Howto: Get a number of elevation offsets for a number of objects]]


Then, in a separate windows, lauch the script : "./find_elevations.pl".
[[Category:Howto|elevations calculate]]
 
[[Category:Scenery enhancement|elevations calculate]]
Then enter the longitude and latitude of the object for which you want to get the elevation.
 
For instance :
 
olivier@olivier-portable:/var/www$ ./find_elevations.pl
-3.926816 48.632452 62.37586682
 
=> For a longitude of -3.926816 and a latitude of 48.632452, the elevation is 62.37586682.
 
Enjoy !

Latest revision as of 13:35, 18 April 2014

There is a specific script in FlightGear that enables the calculation of the elevation at a specific longitude and latitude. The script is called find_elevations.pl and is located in the FG source directory under: scripts/perl/examples/find_elevations.pl.

To use it:

  1. Launch FG like this: fgfs --fdm=null --telnet=5401
  2. Then, in a separate window, launch the script: ./find_elevations.pl.
  3. Enter the longitude and latitude of the object for which you want to get the elevation.

For instance:

olivier@olivier-portable:/var/www$ ./find_elevations.pl
-3.926816 48.632452 62.37586682

For a longitude of -3.926816 and a latitude of 48.632452, the elevation is 62.37586682.

Enjoy!

Related content