mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
Minor formatting changes 3
This commit is contained in:
parent
c99452e9c6
commit
e0a3bf0707
1 changed files with 4 additions and 6 deletions
|
|
@ -133,17 +133,15 @@ public class GPSExtractor {
|
||||||
//Converts format of coords into decimal coords as required by MediaWiki API
|
//Converts format of coords into decimal coords as required by MediaWiki API
|
||||||
private String getDecimalCoords(String latitude, String latitude_ref, String longitude, String longitude_ref) {
|
private String getDecimalCoords(String latitude, String latitude_ref, String longitude, String longitude_ref) {
|
||||||
|
|
||||||
if(latitude_ref.equals("N")){
|
if (latitude_ref.equals("N")) {
|
||||||
decLatitude = convertToDegree(latitude);
|
decLatitude = convertToDegree(latitude);
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
decLatitude = 0 - convertToDegree(latitude);
|
decLatitude = 0 - convertToDegree(latitude);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(longitude_ref.equals("E")){
|
if (longitude_ref.equals("E")) {
|
||||||
decLongitude = convertToDegree(longitude);
|
decLongitude = convertToDegree(longitude);
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
decLongitude = 0 - convertToDegree(longitude);
|
decLongitude = 0 - convertToDegree(longitude);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue