lossyTypes
public enum lossyTypes
extension GPXCompression.lossyTypes: RawRepresentable
Currently supported types of compression.
-
Removal of duplicated points.
Declaration
Swift
case stripDuplicates
-
Removal of points with nearby co ordinates, subject to distance radius provided.
Declaration
Swift
case stripNearbyData(distanceRadius: Double)
-
Removal of points in a random manner, with a percentage of removal.
Declaration
Swift
case randomRemoval(percentage: Double)
-
Represented as an integer
Declaration
Swift
public typealias RawValue = Int
-
Initializes raw
Declaration
Swift
public init?(rawValue: Int, value: Double?)
-
Default Initializer. Not recommended for use.
Declaration
Swift
public init?(rawValue: Int)
-
Raw Value
Declaration
Swift
public var rawValue: Int { get }