GPSPointImpl

Implementation of a GPS point with time information.

Constructors

Link copied to clipboard
constructor(latitude: Double, longitude: Double, time: Time)
constructor(delegate: LatLongPosition, time: Time)

Properties

Link copied to clipboard
open override val coordinates: DoubleArray

Allows to get the position as a Number array.

Link copied to clipboard
open override val dimensions: Int
Link copied to clipboard
open override val x: Double
Link copied to clipboard
open override val y: Double

Functions

Link copied to clipboard
open override fun addTime(shift: Time): GPSPointImpl
Link copied to clipboard
open override fun boundingBox(range: Double): List<GeoPosition>

Given a range, produces N coordinates, representing the N opposite vertices of the hypercube having the current coordinate as center and circumscribing the N-sphere defined by the range. In the case of bidimensional coordinates, it must return the opposite vertices of the square circumscribing the circle with center in this position and radius range.

Link copied to clipboard
open operator override fun compareTo(other: GPSPoint): Int
Link copied to clipboard
open override fun distanceTo(other: GeoPosition): Double

Computes the distance between this position and another compatible position.

Link copied to clipboard
open override fun getCoordinate(dimension: Int): Double

Allows to access the value of a coordinate.

Link copied to clipboard
open override fun getLatitude(): Double
Link copied to clipboard
open override fun getLongitude(): Double
Link copied to clipboard
open override fun getTime(): Time
Link copied to clipboard
open operator override fun minus(other: GeoPosition): GeoPosition

Subtracts the provided GeoPosition from this GeoPosition.

open operator override fun minus(other: DoubleArray): GeoPosition

Considers both positions as vectors, and returns the difference between this position and the passed one.

Link copied to clipboard
open operator override fun plus(other: GeoPosition): GeoPosition

Adds two GeoPosition.

open operator override fun plus(other: DoubleArray): GeoPosition

Considers both positions as vectors, and sums them.

Link copied to clipboard
open override fun subtractTime(t: Time): GPSPointImpl
Link copied to clipboard
open override fun toString(): String