convertgeocode - Convert Geocode
Converts provided geocode.
decimal
object
Your geocode in decimal format. Either decimal, dms or exif needs to be provided.
Example:
{
"latitude": 50.11046833333334,
"longitude": 8.68165861111111,
"full": "50.11046833333334,8.68165861111111"
}
latitude
number
Latitude value to look up.
Minimum: -90
Maximum: 90
Example:
50.11046833333334
longitude
number
Longitude value to look up.
Minimum: -180
Maximum: 180
Example:
8.68165861111111
full
string
String of combined values seperated by comma
Example:
50.11046833333334,8.68165861111111
dms
object
Your geocode in DMS format. Either decimal, dms or exif needs to be provided.
Example:
{
"vertical": {
"deg": 50,
"min": 6,
"sec": 37.686000000012996,
"direction": "N"
},
"horizontal": {
"deg": 8,
"min": 40,
"sec": 53.970999999998526,
"direction": "E"
},
"full": "50°6'37.686000000012996\"N 8°40'53.970999999998526\"E"
}
vertical
array<object>
Vertical values for your coordinate.
Example:
{
"deg": 50,
"min": 6,
"sec": 37.686000000012996,
"direction": "N"
}
horizontal
array<object>
Horizontal values for your coordinate.
Example:
{
"deg": 8,
"min": 40,
"sec": 53.970999999998526,
"direction": "E"
}
full
string
String of combined values
Example:
50°6'37.686000000012996"N 8°40'53.970999999998526"E
exif
object
Your geocode in Exif format. Either decimal, dms or exif needs to be provided.
Example:
{
"android": {
"latitudeRef": "N",
"latitude": "50/1,6/1,3768.6000000012996/100",
"longitudeRef": "E",
"longitude": "8/1,40/1,5397.099999999853/100"
},
"ios": {
"latitudeRef": "N",
"latitude": [
[
50,
1
],
[
6,
1
],
[
3768.6000000012996,
100
]
],
"longitudeRef": "E",
"longitude": [
[
8,
1
],
[
40,
1
],
[
5397.099999999853,
100
]
]
}
}
android
array<object>
Exif data
Example:
{
"latitudeRef": "N",
"latitude": "50/1,6/1,3768.6000000012996/100",
"longitudeRef": "E",
"longitude": "8/1,40/1,5397.099999999853/100"
}
ios
array<object>
Exif data
Example:
{
"latitudeRef": "N",
"latitude": [
[
50,
1
],
[
6,
1
],
[
3768.6000000012996,
100
]
],
"longitudeRef": "E",
"longitude": [
[
8,
1
],
[
40,
1
],
[
5397.099999999853,
100
]
]
}