forked from DataValues/Geo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDdCoordinateParser.php
More file actions
224 lines (189 loc) · 5.94 KB
/
DdCoordinateParser.php
File metadata and controls
224 lines (189 loc) · 5.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<?php
declare( strict_types = 1 );
namespace DataValues\Geo\Parsers;
use DataValues\Geo\Values\LatLongValue;
use ValueParsers\ParseException;
use ValueParsers\ParserOptions;
/**
* Parser for geographical coordinates in Decimal Degree notation.
*
* @since 0.1
* @api
*
* @license GPL-2.0-or-later
* @author Jeroen De Dauw < jeroendedauw@gmail.com >
* @author H. Snater < mediawiki@snater.com >
*/
class DdCoordinateParser extends LatLongParserBase {
/**
* The symbol representing degrees.
* @since 0.1
*/
public const OPT_DEGREE_SYMBOL = 'degree';
/**
* Delimiters used to split a coordinate string when unable to split by using the separator.
* @var string[]
*/
protected $defaultDelimiters;
/**
* @param ParserOptions|null $options
*/
public function __construct( ?ParserOptions $options = null ) {
parent::__construct(
( $options ?: new ParserOptions() )->withDefaultOption( self::OPT_DEGREE_SYMBOL, '°' )
);
$this->defaultDelimiters = [ $this->getOption( self::OPT_DEGREE_SYMBOL ) ];
}
/**
* @see LatLongParserBase::getParsedCoordinate
*/
protected function getParsedCoordinate( string $coordinateSegment ): float {
$coordinateSegment = $this->resolveDirection( $coordinateSegment );
return $this->parseCoordinate( $coordinateSegment );
}
/**
* @see LatLongParserBase::areValidCoordinates
*
* @param string[] $normalizedCoordinateSegments
*
* @return bool
*/
protected function areValidCoordinates( array $normalizedCoordinateSegments ): bool {
// TODO: Implement localized decimal separator.
$baseRegExp = '\d{1,3}(\.\d{1,20})?' . $this->getOption( self::OPT_DEGREE_SYMBOL );
// Cache whether the coordinates are specified in directional format (a mixture of
// directional and non-directional is regarded invalid).
$directional = false;
$match = false;
foreach ( $normalizedCoordinateSegments as $i => $segment ) {
if ( $i === 1 ) {
$direction = '('
. $this->getOption( self::OPT_EAST_SYMBOL ) . '|'
. $this->getOption( self::OPT_WEST_SYMBOL ) . ')';
} else {
$direction = '('
. $this->getOption( self::OPT_NORTH_SYMBOL ) . '|'
. $this->getOption( self::OPT_SOUTH_SYMBOL ) . ')';
}
$match = preg_match(
'/^(' . $baseRegExp . $direction . '|' . $direction . $baseRegExp . ')$/i',
$segment
);
if ( $directional ) {
// Directionality is only set after parsing latitude: When the latitude is
// directional, the longitude needs to be as well. Therefore, we break here since
// checking for directionality is the only check needed for longitude.
break;
}
if ( $match ) {
// Latitude is directional, no need to check for non-directionality.
$directional = true;
continue;
}
$match = preg_match( '/^(-)?' . $baseRegExp . '$/i', $segment );
if ( !$match ) {
// Does neither match directional nor non-directional.
break;
}
}
return ( $match === 1 );
}
/**
* @see ValueParser::parse
*
* @param string $value
*
* @throws ParseException
* @return LatLongValue
*/
public function parse( $value ): LatLongValue {
if ( !is_string( $value ) ) {
throw new ParseException( 'Not a string' );
}
return parent::parse( $this->getNormalizedNotation( $value ) );
}
/**
* Returns a normalized version of the coordinate string.
*
* @param string $coordinates
*
* @return string
*/
protected function getNormalizedNotation( string $coordinates ): string {
$coordinates = str_replace(
[ '°', '°' ],
$this->getOption( self::OPT_DEGREE_SYMBOL ), $coordinates
);
return $this->removeInvalidChars( $coordinates );
}
/**
* Returns a string with whitespace, control characters and characters with ASCII values above
* 126 removed.
*
* @see LatLongParserBase::removeInvalidChars
*
* @param string $string
*
* @return string
*/
protected function removeInvalidChars( string $string ): string {
return str_replace( ' ', '', parent::removeInvalidChars( $string ) );
}
/**
* Converts a coordinate segment to float representation.
*/
protected function parseCoordinate( string $coordinateSegment ): float {
return (float)str_replace(
$this->getOption( self::OPT_DEGREE_SYMBOL ),
'',
$coordinateSegment
);
}
/**
* @see LatLongParserBase::splitString
*
* @param string $normalizedCoordinateString
*
* @return string[]
*/
protected function splitString( string $normalizedCoordinateString ): array {
$separator = $this->getOption( self::OPT_SEPARATOR_SYMBOL );
$normalizedCoordinateSegments = explode( $separator, $normalizedCoordinateString );
if ( count( $normalizedCoordinateSegments ) !== 2 ) {
// Separator is not present within the string, trying to figure out the segments by
// splitting after the first direction character or degree symbol:
$delimiters = $this->defaultDelimiters;
$ns = [
$this->getOption( self::OPT_NORTH_SYMBOL ),
$this->getOption( self::OPT_SOUTH_SYMBOL )
];
$ew = [
$this->getOption( self::OPT_EAST_SYMBOL ),
$this->getOption( self::OPT_WEST_SYMBOL )
];
foreach ( $ns as $delimiter ) {
if ( str_starts_with( $normalizedCoordinateString, $delimiter ) ) {
// String starts with "north" or "west" symbol: Separation needs to be done
// before the "east" or "west" symbol.
$delimiters = array_merge( $ew, $delimiters );
break;
}
}
if ( count( $delimiters ) !== count( $this->defaultDelimiters ) + 2 ) {
$delimiters = array_merge( $ns, $delimiters );
}
foreach ( $delimiters as $delimiter ) {
$delimiterPos = mb_strpos( $normalizedCoordinateString, $delimiter );
if ( $delimiterPos !== false ) {
$adjustPos = ( in_array( $delimiter, $ew ) ) ? 0 : mb_strlen( $delimiter );
$normalizedCoordinateSegments = [
mb_substr( $normalizedCoordinateString, 0, $delimiterPos + $adjustPos ),
mb_substr( $normalizedCoordinateString, $delimiterPos + $adjustPos )
];
break;
}
}
}
return $normalizedCoordinateSegments;
}
}