diff options
| author | Alban Peignier | 2018-04-25 22:13:19 +0200 |
|---|---|---|
| committer | GitHub | 2018-04-25 22:13:19 +0200 |
| commit | 8b5c5f0cabbeefbeaf7a18a362670230658adaf6 (patch) | |
| tree | e4518cf43d8ca9b33f4c7b3f2e2a044de38908bb | |
| parent | cf962fb13fe52394f09a7fad90f848be6ab65d51 (diff) | |
| parent | 52dc11c606a994932c3b01c9fc49538ded84528b (diff) | |
| download | chouette-core-8b5c5f0cabbeefbeaf7a18a362670230658adaf6.tar.bz2 | |
Merge pull request #522 from af83/6638-stop-area-coordinates
Switch stop area coordinates order (long lat) in geo data. Fixes ##6638
| -rw-r--r-- | app/helpers/stop_areas_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/stop_areas_helper.rb b/app/helpers/stop_areas_helper.rb index 032f68494..314154fb7 100644 --- a/app/helpers/stop_areas_helper.rb +++ b/app/helpers/stop_areas_helper.rb @@ -49,7 +49,7 @@ module StopAreasHelper content_tag :span, "#{sa.projection_x}, #{sa.projection_y}" elsif !sa.long_lat_type.nil? - content_tag :span, "#{sa.long_lat_type} : #{sa.longitude}, #{sa.latitude}" + content_tag :span, "#{sa.long_lat_type} : #{sa.latitude}, #{sa.longitude}" end end end |
