DataValues Geo
Library containing value objects to represent geographical information, parsers to turn user input into such value objects, and formatters to turn them back into user consumable representations.
It is part of the DataValues set of libraries.
On Packagist:

Installation
The recommended way to use this library is via Composer.
Composer
To add this package as a local, per-project dependency to your project, simply add a
dependency on data-values/geo to your project's composer.json file.
Here is a minimal example of a composer.json file that just defines a dependency on
version 1.1 of this package:
{
"require": {
"data-values/geo": "1.1.*"
}
}
Manual
Get the code of this package, either via git, or some other means. Also get all dependencies. You can find a list of the dependencies in the "require" section of the composer.json file. Then take care of autoloading the classes defined in the src directory.
Library functionality
Value objects
These are simple value objects. They all implement the DataValues\DataValue interface.
LatLongValue- Object representing a geographic point specified by latitude and longitude.GlobeCoordinateValue- Geographical coordinate with precision and globe.
Formatters
These turn value objects into string representations.
They all implement the ValueFormatters\ValueFormatter interface.
LatLongFormatter- Formats a LatLongValue into float, decimal minute, decimal degree or degree minute second notation. Both directional and non-directional notation are supported. Directional labels, latitude-longitude separator and precision can be specified.GlobeCoordinateFormatter- Formats a GlobeCoordinateValue.
Parsers
These turn string representations into value objects.
They all implement the ValueParsers\ValueParser interface.
Simple parsers:
DdCoordinateParser- Parses decimal degree coordinates into LatLongValue objects.DmCoordinateParser- Parses decimal minute coordinates into LatLongValue objects.DmsCoordinateParser- Parses degree minute second coordinates into LatLongValue objects.FloatCoordinateParser- Parses float coordinates into LatLongValue objects.
Composite parsers:
LatLongParser- Facade for DdCoordinateParser, DmCoordinateParser, DmsCoordinateParser and FloatCoordinateParser. Parses a coordinate in any of the notations supported by these parsers into a LatLongValue object. Both directional and non-directional notation are supported. Directional labels and the latitude-longitude separator can be specified.GlobeCoordinateParser- Parses coordinates into GlobeCoordinateValue objects.
Tests
This library comes with a set up PHPUnit tests that cover all non-trivial code. You can run these tests using the PHPUnit configuration file found in the root directory. The tests can also be run via TravisCI, as a TravisCI configuration file is also provided in the root directory.
Authors
DataValues Geo has been written by the Wikidata team, as [Wikimedia Germany] (https://wikimedia.de) employees for the Wikidata project.
It is based upon and contains a lot of code written by [Jeroen De Dauw] (https://github.com/JeroenDeDauw) for the Maps and Semantic MediaWiki projects.
Release notes
2.0.0 (2017-05-09)
GlobeCoordinateValuedoes not accept empty strings as globes any more.GlobeCoordinateValuedoes not accept precisions outside the [-360..+360] interval any more.- Changed hash calculation of
GlobeCoordinateValuein an incompatible way. - Renamed
GeoCoordinateFormattertoLatLongFormatter, leaving a deprecated alias. - Renamed
GeoCoordinateParsertoLatLongParser, leaving a deprecated alias. - Renamed
GeoCoordinateParserBasetoLatLongParserBase. - Deprecated
LatLongParser::areCoordinates.
1.2.2 (2017-03-14)
- Fixed multiple rounding issues in
GeoCoordinateFormatter.
1.2.1 (2016-12-16)
- Fixed another IEEE issue in
GeoCoordinateFormatter.
1.2.0 (2016-11-11)
- Added missing inline documentation to public methods and constants.
- Added a basic PHPCS rule set, can be run with
composer phpcs.
1.1.8 (2016-10-12)
- Fixed an IEEE issue in
GeoCoordinateFormatter - Fixed a PHP 7.1 compatibility issue in a test
1.1.7 (2016-05-25)
- Made minor documentation improvements
1.1.6 (2016-04-02)
- Added compatibility with DataValues Common 0.3.x
1.1.5 (2015-12-28)
- The component can now be installed together with DataValues Interfaces 0.2.x
1.1.4 (2014-11-25)
- Add fall back to default on invalid precision to more places.
1.1.3 (2014-11-19)
- Fall back to default on invalid precision instead of dividing by zero.
1.1.2 (2014-11-18)
- Precision detection in
GlobeCoordinateParsernow has a lower bound of 0.00000001°
1.1.1 (2014-10-21)
- Removed remaining uses of class aliases from messages and comments
- Fixed some types in documentation
1.1 (2014-10-09)
- Made the component installable with DataValues 1.x
GeoCoordinateFormatternow supports precision in degreesGlobeCoordinateFormatternow passes the globe precision to theGeoCoordinateFormatterit uses- Introduced
FORMAT_NAMEclass constants on ValueParsers in order to use them as expectedFormat - Changed ValueParsers to pass rawValue and expectedFormat arguments when constructing a
ParseException
1.0 (2014-07-31)
- All classes and interfaces have been moved into the
DataValues\GeonamespaceDataValues\LatLongValuehas been left as deprecated aliasDataValues\GlobeCoordinateValuehas been left as deprecated alias
- Globe in
GlobeCoordinateValuenow defaults tohttp://www.wikidata.org/entity/Q2
0.2 (2014-07-07)
- Removed deprecated
GeoCoordinateValue - Added
GlobeMath
0.1.2 (2014-01-22)
- Added support for different levels of spacing in GeoCoordinateFormatter
0.1.1 (2013-11-30)
- Added support for direction notation to GeoCoordinateFormatter
- Decreased complexity of GeoCoordinateFormatter
- Decreased complexity and coupling of GeoCoordinateFormatterTest
0.1 (2013-11-17)
Initial release with these features:
- LatLongValue
- GlobeCoordinateValue
- GeoCoordinateFormatter
- GlobeCoordinateFormatter
- DdCoordinateParser
- DmCoordinateParser
- DmsCoordinateParser
- FloatCoordinateParser
- GeoCoordinateParser
- GlobeCoordinateParser




