-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #240 from plantbreeding/issue-164
standardized location documentation
- Loading branch information
Showing
5 changed files
with
39 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
|
||
### Location coordinate encoding | ||
|
||
To encode locations as coordinates, the ISO 6709 standard is used. Importantly, the decimal notation is used. Example | ||
latitude: +40.20361, longitude: -075.00417. Note that plus and minus signs are always required, and latitude has two digits before the decimal separator (with leading zeroes when necessary), and longitude has three digits. | ||
To encode locations as coordinates, the ISO 6709 standard is used, degree notation only. WGS84 is used as the geodetic datum spatial reference system. | ||
|
||
||Unit|Format|Example| | ||
|---|---|---|---| | ||
|latitude|degrees|±DD.D|"+40.20361"| | ||
|longitude|degrees|±DDD.D|"-075.00417"| | ||
|altitude|meters|±M|"+127"| | ||
|
||
Note: | ||
+ Plus and minus signs are always required | ||
+ Latitude has two digits before the decimal separator (with leading zeros when necessary) | ||
+ Longitude has three digits before the decimal separator (with leading zeros when necessary) | ||
+ Altitude is recorded in meters above the WGS84 reference ellipsoid (no leading zeros) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters