Skip to content

Commit

Permalink
latitude/longitude fix for bug 1393111
Browse files Browse the repository at this point in the history
  • Loading branch information
sweiland-openrails committed Nov 19, 2022
1 parent 8196a3f commit 4f0e878
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Orts.Simulation/Common/WorldLatLon.cs
Expand Up @@ -45,8 +45,8 @@ public class WorldLatLon

// The upper left corner of the Goode projection is ul_x,ul_y
// The bottom right corner of the Goode projection is -ul_x,-ul_y
int ul_x = -20015000; // -180 deg in Goode projection
int ul_y = 8673000; // +90 deg lat in Goode projection
int ul_x = -20013965; // -180 deg in Goode projection
int ul_y = 8674008; // +90 deg lat in Goode projection

// Offsets to convert Goode raster coordinates to MSTS world tile coordinates
int wt_ew_offset = -16385;
Expand Down

0 comments on commit 4f0e878

Please sign in to comment.