Skip to content

philkingston/geo-parser

 
 

Repository files navigation

creof/geo-parser

Code Climate Test Coverage Build Status

Lexer and parser library for geometric and geographic string values.

Usage

Pass value to be parsed in the constructor, then call parse() on the created object.

$input  = '79°56′55″W, 40°26′46″N';
$parser = new Parser($input);
$value  = $parser->parse();

Supported Formats

Both single values and pairs are supported. Some samples of supported formats are below, though not every possible iteration may be explicitly specified:

  1. Simple single signed values
  • 40
  • -40
  • -8.543
  • +132
  • +77.2
  1. Simple single signed values with degree symbol
  • 40°
  • -40°
  • -5.234°
  • +43°
  • +38.43°
  1. Single unsigned values with or without degree symbol, and cardinal direction
  • 40° N
  • 40 S
  • 56.242 E
  1. Single values of signed integer degrees with degree symbol, and decimal minutes with apostrophe
  • 40° 26.222'
  • -65° 32.22'
  • +165° 52.22'
  1. Single values of unsigned integer degrees with degree symbol, decimal minutes with apostrophe, and cardinal direction
  • 40° 26.222' E
  • 65° 32.22' S
  1. Single values of signed integer degrees with degree symbol, integer minutes with apostrophe, and optional integer or decimal seconds with quote
  • 40° 26' 46"
  • -79° 58' 56"
  • 93° 19' 25.8"
  • +120° 19' 25.8"
  1. Single values of signed integer degrees with colon symbol, integer minutes, and optional colon and integer or decimal seconds
  • +40:26:46
  • -79:58:56
  • 93:19:25.8
  1. Single values of unsigned integer degrees with degree symbol, integer minutes with apostrophe, optional integer or decimal seconds with quote, and cardinal direction
  • 40° 26' 46" S
  • 99° 58' 56" W
  • 44° 58' 53.9" N
  1. Single values of unsigned integer degrees with colon symbol, integer minutes with, optional colon and integer or decimal seconds, and cardinal direction
  • 40:26:46 S
  • 99:58:56 W
  • 44:58:53.9 N
  1. Two of any one format separated by space(s)

  2. Two of any one format separated by a comma

Return

The parser will return a integer/float or an array containing a pair of these values.

About

Parser for geography coordinate strings

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%