You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// DMS / D M S H
{
regexp: /^\s*(\d+)\s+(\d+)\s+(\d+\.?\d*)\s*([NEWS])\s*(\d+)\s+(\d+)\s+(\d+\.?\d*)\s*([NEWS])\s*$/,
fields: [4, 1, 2, 3, 6, 5, 6, 7],
},
fix: change 5th field from 6to 8:
// DMS / D M S H
{
regexp: /^\s*(\d+)\s+(\d+)\s+(\d+\.?\d*)\s*([NEWS])\s*(\d+)\s+(\d+)\s+(\d+\.?\d*)\s*([NEWS])\s*$/,
fields: [4, 1, 2, 3, 8, 5, 6, 7],
},
The text was updated successfully, but these errors were encountered:
Create a waypoint with coordinates in DMS format with postfix hemisphere doesn't work.
Example:
50 11 30.0N 8 30 30.0E
=> bad valuesDMS semi-postfix hemisphere
50N 11 30.0 8E 30 30.0
=> okayDMS prefix hemisphere
N 50 11 30.0 E8 30 30.0
=> okayDMM prefix hemisphere
N 50 11.500 E 008 30.500
=> okayDMM postfix hemisphere
50 11.500N 08 30.500E
=> okaycoordinates.ts
fix: change 5th field from
6
to8
:The text was updated successfully, but these errors were encountered: