Sha256: a1d517f865e997fa8f38616465d9377f5bf910dd64cb4206ed41a61efb8f69ed

Contents?: true

Size: 655 Bytes

Versions: 1

Compression:

Stored size: 655 Bytes

Contents

#!/usr/bin/env ruby
##################################################
# Flightgear Mapping
#
# Provide a real-time map of flight position in Flightgear. It is based on tiles from Openstreetmap, 
# downloads them in the background, provides navigation aids and runways, allows setting of waypoints 
# and tracks the flight.
#
# License
# GPL V2
#
# Author Michael Meltner (mmeltner@gmail.com)
##################################################

# check if we were launched via symlink, then resolve it
myself = __FILE__
if File.lstat(myself).symlink? then
	myself = File.readlink(__FILE__)
end
Dir.chdir(File.dirname(myself))

load "./fgmap/waypoint.rb"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fgmapping-2.0.0 lib/fgmapping.rb