Project

seeyoucup

0.0
No commit activity in last 3 years
No release in over 3 years
A library to work with SeeYou CUP files
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

>= 0
>= 0
>= 0
 Project Readme

Ruby parser for SeeYou .cup files

THIS IS A VERY EARLY VERSION

File format specs can be found here.

Example:

require 'see_you_cup'

waypoints = SeeYouCup::Parser.new("#{__dir__}/samples/basic.cup").parse
wp = waypoints.first
wp.name     # String
wp.code     # String
wp.country  # String
wp.elev     # String
wp.rwydir   # String
wp.rwylen   # String
wp.freq     # String
wp.desc     # String
wp.lat      # Float
wp.lon      # Float

Limitations:

  • Only files containing ONLY Waypoints section are supported
  • Files that combine Waypoints and Tasks have not been tested