Packages

package model

Type Members

  1. case class PoiFile (name: Option[String] = None, description: Option[String] = None, creator: Option[String] = None, version: Option[FileVersion] = None, createdAt: Option[Instant] = None, waypoints: Seq[Waypoint] = Nil) extends Product with Serializable

    Representation of a file containing GPS data, such as Waypoints or POI.

    Representation of a file containing GPS data, such as Waypoints or POI.

    name

    Name of the file.

    description

    Description of the file.

    creator

    Software or device that created the file.

    version

    Version of the file?

    createdAt

    Timestamp of when the file was created.

    waypoints

    List of waypoints.

    Since

    0.0.1

  2. case class Waypoint (lat: Double, lon: Double, elevation: Option[Double] = None, name: Option[String] = None, comment: Option[String] = None, description: Option[String] = None, link: Option[String] = None, source: Option[String] = None) extends Product with Serializable

    Representation of a waypoint on a GPS track.

    Representation of a waypoint on a GPS track.

    lat

    Latitude of this waypoint in decimal degrees.

    lon

    Logitude of this waypoint in decimal degrees.

    elevation

    Elevation of this waypoint in metres.

    name

    Name of this waypoint.

    comment

    Comment about this waypoint.

    description

    Description of this waypoint.

    link

    Link to information about this waypoint.

    source

    Original source of this waypoint.

    Since

    0.0.1

Ungrouped