| Recommend this page to a friend! | 
| Classes of Jakub Dubec | PHP GPX Library | docs/phpGPX-Models-Point.md | Download | 
| 
 | |||||||||||||||||||||
|  Download phpGPX\Models\PointClass Point GPX point representation according to GPX 1.1 specification. 
 ConstantsWAYPOINTTRACKPOINTROUTEPOINTProperties$latitudeThe latitude of the point. Decimal degrees, WGS84 datum. Original GPX 1.1 attribute. 
 $longitudeThe longitude of the point. Decimal degrees, WGS84 datum. Original GPX 1.1 attribute. 
 $elevationElevation (in meters) of the point. Original GPX 1.1 attribute. 
 $timeCreation/modification timestamp for element. Date and time in are in Univeral Coordinated Time (UTC), not local time! Fractional seconds are allowed for millisecond timing in tracklogs. 
 $magVarMagnetic variation (in degrees) at the point Original GPX 1.1 attribute. 
 $geoidHeightHeight (in meters) of geoid (mean sea level) above WGS84 earth ellipsoid. As defined in NMEA GGA message. Original GPX 1.1 attribute. 
 $nameThe GPS name of the waypoint. This field will be transferred to and from the GPS. GPX does not place restrictions on the length of this field or the characters contained in it. It is up to the receiving application to validate the field before sending it to the GPS. Original GPX 1.1 attribute. 
 $commentGPS waypoint comment. Sent to GPS as comment. Original GPX 1.1 attribute. 
 $descriptionA text description of the element. Holds additional information about the element intended for the user, not the GPS. Original GPX 1.1 attribute. 
 $sourceSource of data. Included to give user some idea of reliability and accuracy of data. "Garmin eTrex", "USGS quad Boston North", e.g. Original GPX 1.1 attribute. 
 $linksLink to additional information about the waypoint. Original GPX 1.1 attribute. 
 $symbolText of GPS symbol name. For interchange with other programs, use the exact spelling of the symbol as displayed on the GPS. If the GPS abbreviates words, spell them out. Original GPX 1.1 attribute. 
 $typeType (classification) of the waypoint. Original GPX 1.1 attribute. 
 $fixType of GPS fix. none means GPS had no fix. To signify "the fix info is unknown, leave out fixType entirely. pps = military signal used Possible values: {'none'|'2d'|'3d'|'dgps'|'pps'} Original GPX 1.1 attribute. 
 $satellitesNumberNumber of satellites used to calculate the GPX fix. Always positive value. Original GPX 1.1 attribute. 
 $hdopHorizontal dilution of precision. Original GPX 1.1 attribute. 
 $vdopVertical dilution of precision. Original GPX 1.1 attribute. 
 $pdopPosition dilution of precision. Original GPX 1.1 attribute 
 $ageOfGpsDataNumber of seconds since last DGPS update. Original GPX 1.1 attribute. 
 $dgpsidID of DGPS station used in differential correction. Original GPX 1.1 attribute. 
 $differenceDifference in in distance (in meters) between last point. Value is created by phpGPX library. 
 $distanceDistance from collection start in meters. Value is created by phpGPX library. 
 $extensionsObjects stores GPX extensions from another namespaces. 
 $pointTypeType of the point (parent collation type (ROUTE|WAYPOINT|TRACK)) 
 Methods__constructPoint constructor. 
 Arguments
 getPointTypeReturn point type (ROUTE|TRACK|WAYPOINT) 
 toArraySerialize object to array 
 |