aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/geopoint
Commit message (Collapse)AuthorAgeFilesLines
* rename packageBananeweizen2014-11-027-1198/+0
| | | | The package not only contains the GeoPoint definition, but other location related classes, too.
* Add NonNull annotationsSamuel Tardieu2014-10-092-3/+3
|
* fix #4359: imperial units checkbox not always correctSamuel Tardieu2014-09-151-2/+2
| | | | | | | | This has been fixed by initializing the key to its default value instead of just the checkbox. Also, better names have been used throughout the settings to reflect the fact that "units" meant "use imperial units". It was used in both ways, including the wrong way while migrating the settings.
* Name ignored catch parameter as suchSamuel Tardieu2014-09-091-2/+2
|
* Use incrementation operatorSamuel Tardieu2014-08-041-1/+1
|
* Move functions to count visible points in viewport classSamuel Tardieu2014-08-031-0/+16
|
* switch to Java 1.7Bananeweizen2014-07-171-1/+1
| | | | At least since march both ADT and Android Studio support Java 7 features in Android development. Let's use them.
* multiple lint and compiler warning fixesBananeweizen2014-05-241-3/+4
|
* Fix #3899: Units.getSpeed() returns uncommon stringSammysHP2014-05-231-5/+5
|
* minor code cleanupsBananeweizen2014-05-171-6/+5
|
* refactoring: factor out coordinates validity checksSamuel Tardieu2014-04-152-2/+29
|
* Add more @NonNull annotationsSamuel Tardieu2014-03-221-1/+1
|
* Merge branch 'release' into upstreamSamuel Tardieu2014-02-282-3/+9
|\
| * fix #3594: personal note parsing is too looseSamuel Tardieu2014-02-282-3/+9
| |
* | refactoring: remove unused codeBananeweizen2014-01-122-49/+13
| |
* | refactoring: remove unused codeBananeweizen2014-01-111-24/+2
| |
* | fix failing testBananeweizen2014-01-111-2/+2
| |
* | refactoring: avoid excessive object creation in viewport calculationBananeweizen2014-01-111-16/+28
|/
* fix #3527: bad query stringSamuel Tardieu2014-01-081-6/+6
| | | | | | Let's hope that the bad formatting occurring for, at least, very small negative values in `String.format()` with a `null` Locale will not happen with `StringBuilder.append(double)`.
* refactoring: remove bad default case statementsBananeweizen2014-01-011-2/+1
| | | | | For methods returning directly from the switch case, at least Eclipse still needs a useless return value outside of the switch statement. This has been handled by IllegalStateExceptions after the switch.
* refactoring: some nullness cleanupsMichael Keppler2013-12-261-5/+9
|
* fix failing testBananeweizen2013-10-121-4/+11
|
* fix #3321: No distance calculation and coords if cache is at equatorBananeweizen2013-10-121-3/+3
|
* refactoring: remove unused codeBananeweizen2013-10-051-3/+3
|
* fix #2867: Multiple distanceBananeweizen2013-08-201-11/+41
| | | * workaround distance calculation for all 4.2.x versions
* cleanup: remove unnecessary importsSamuel Tardieu2013-07-141-6/+0
|
* Remove elevation handlingSamuel Tardieu2013-07-142-40/+0
| | | | | | | | | | | | | | | Geocaches do not contain useful elevation information. We used to get it using Google API, but the information was not very useful because our handling of altitude was inconsistent. Also, the Google elevation API usage limits states that "the Elevation API may only be used in conjunction with displaying results on a Google map; using elevation data without displaying a map for which elevation data was requested is prohibited". This removes elevation handling completely, except in the settings to avoid getting in the way of the settings rewrite. The elevation related settings should be removed there instead when both works are merged.
* Implements #750, use preference activitykoem2013-07-092-12/+13
|
* Correct log messages to account for refactoringcampbeb2013-06-051-2/+2
|
* fix #2624: coordinates display is wrong near a confluence pointSamuel Tardieu2013-04-022-15/+40
| | | | | The coordinates need to be rounded differently depending on the precision which will be used for the output.
* code cleanupBananeweizen2013-02-243-24/+13
| | | | | | * rename several lower case classes * more strict visibility modifiers * Lint warnings * style warnings
* fix #2404: Remove spaces when editing coordinatesBananeweizen2013-01-171-17/+17
|
* Merge remote-tracking branch 'origin/release'Bananeweizen2013-01-131-21/+14
|\ | | | | | | | | Conflicts: main/src/cgeo/geocaching/geopoint/Geopoint.java
| * fix #2389: Parse errors in cgeocoordsBananeweizen2013-01-131-19/+12
| |
* | refactoring: use exception object in logggingBananeweizen2013-01-121-1/+1
| |
* | Merge pull request #2311 from rsudev/OCde2Bananeweizen2013-01-051-0/+2
|\ \ | | | | | | Opencaching integration with oc11xml api
| * | Opencaching integration with oc11xml apirsudev2012-12-311-0/+2
| | | | | | | | | | | | Implements load of cache details, coordinate search and viewport search for opencaching.de based on oc11xml api
* | | fix #2328: Have a wrapper around Matcher to avoid String related memoryBananeweizen2013-01-052-4/+6
|/ / | | | | issues
* | code cleanup: remove debug codeBananeweizen2012-12-262-22/+13
| | | | | | * fixed some more issues of Findbugs and CodePro
* | Fix: do not use String#isEmpty()Samuel Tardieu2012-12-191-1/+3
| | | | | | | | | | String#isEmpty() has been introduced on SDK API 9 only. For earlier versions of Android, StringUtils.isEmpty/isNotEmpty can be used instead.
* | Refactoring: remove unnecessary enum qualifiersSamuel Tardieu2012-12-181-1/+1
| |
* | Refactoring: remove pointless null checksSamuel Tardieu2012-12-181-1/+1
| |
* | Refactoring: use isEmpty() where appropriateSamuel Tardieu2012-12-181-1/+1
| |
* | code cleanupBananeweizen2012-12-151-1/+4
| | | | | | * some CodePro Analytix findings
* | code cleanup: fix Lint warnings about LocalesBananeweizen2012-11-222-8/+9
|/
* Add extra documentation for null parameterSamuel Tardieu2012-09-031-1/+1
| | | | See #1957 for discussion.
* Fix for null coordsrunehl2012-08-141-2/+3
|
* fix #1828: Coords conversion to DMS not working correctBananeweizen2012-07-012-2/+2
|
* Revert "Merge branch 'issue-374' into upstream"Samuel Tardieu2012-06-071-6/+0
| | | | | This reverts commit 8f265e5057f255352784643e10b44e69744a4cf2, reversing changes made to 79a0ad18f555acf4deb26f15eea739a64e11669b.
* Merge branch 'issue-374' into upstreamSamuel Tardieu2012-06-071-0/+6
|\