Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public static double extractDegreesFromDMSFormat(String dmsFormat) {
throw new UnitSystemArgumentException("Geo parser: Invalid input. Argument cannot be null or blank.");
}

String[] parts = dmsFormat.split("[o'\"nsew]");
String[] parts = dmsFormat.split("[o°'\"nsew]");

if (parts.length == 0) {
throw new UnitSystemArgumentException("Geo DMS parser: Input string could not be parsed: input = "
Expand Down
Loading