Skip to content

Commit f55ada5

Browse files
committed
inverted lat/lon in geoJson representation
1 parent 65496db commit f55ada5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1334,14 +1334,14 @@ public class GeospatialRunner implements CommandLineRunner {
13341334
System.out.println("# Geospatial");
13351335

13361336
repository.saveAll(Arrays.asList(
1337-
new Location("Dragonstone", new Point(55.167801, -6.815096)),
1338-
new Location("King's Landing", new Point(42.639752, 18.110189)),
1339-
new Location("The Red Keep", new Point(35.896447, 14.446442)),
1340-
new Location("Yunkai", new Point(31.046642, -7.129532)),
1341-
new Location("Astapor", new Point(31.50974, -9.774249)),
1342-
new Location("Winterfell", new Point(54.368321, -5.581312)),
1343-
new Location("Vaes Dothrak", new Point(54.16776, -6.096125)),
1344-
new Location("Beyond the wall", new Point(64.265473, -21.094093))
1337+
new Location("Dragonstone", new Point(-6.815096, 55.167801)),
1338+
new Location("King's Landing", new Point(18.110189, 42.639752)),
1339+
new Location("The Red Keep", new Point(14.446442, 35.896447)),
1340+
new Location("Yunkai", new Point(-7.129532, 31.046642)),
1341+
new Location("Astapor", new Point(-9.774249, 31.50974)),
1342+
new Location("Winterfell", new Point(-5.581312, 54.368321)),
1343+
new Location("Vaes Dothrak", new Point(-6.096125, 54.16776)),
1344+
new Location("Beyond the wall", new Point(-21.094093, 64.265473))
13451345
));
13461346
}
13471347
}

0 commit comments

Comments
 (0)