1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 03:35:53 +01:00

Add another alias for WGS84

This commit is contained in:
Martin Tůma 2022-08-08 00:20:30 +02:00
parent c3117bb3ac
commit a01ff33768

View File

@ -53,6 +53,7 @@ const GCS &GCS::WGS84()
QList<GCS::Entry> GCS::defaults()
{
QList<GCS::Entry> list;
list.append(GCS::Entry(4326, 6326, "WGS 1984", WGS84()));
list.append(GCS::Entry(4326, 6326, "WGS 84", WGS84()));
list.append(GCS::Entry(4326, 6326, "WGS84", WGS84()));
return list;