- Timestamp:
- 2013-12-10T13:47:14+01:00 (11 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/epsg
r5238 r6463 53 53 # Swiss Grid (Switzerland) 54 54 <21781> +proj=somerc +lat_0=46d57'8.66" +lon_0=7d26'22.5" +x_0=600000 +y_0=200000 +ellps=bessel +towgs84=674.374,15.056,405.346 +bounds=5.7,45.7,10.6,47.9 <> 55 # HD72 / EOV (Hungary) 56 <23700> +proj=somerc +lat_0=47.14439372222222 +lon_0=19.04857177777778 +x_0=650000 +y_0=200000 +ellps=GRS67 +towgs84=57.01,-69.97,-9.29 +bounds=16.1200,45.7800,22.9100,48.6000 <> 55 57 # Lambert 4 Zones France (Nord) 56 58 <27561> +proj=lcc +lat_0=49.5 +lat_1=48d35'54.682" +lat_2=50d23'45.282" +lon_0=2d20'14.025" +x_0=600000 +y_0=200000 +a=6378249.2 +b=6356515 +nadgrids=ntf_r93_b.gsb +bounds=-4.416666666666665,46.65,9.18,51.300000000000004 <> -
trunk/src/org/openstreetmap/josm/data/projection/Ellipsoid.java
r6362 r6463 23 23 */ 24 24 public static final Ellipsoid hayford = Ellipsoid.create_a_rf(6378388.0, 297.0); 25 /** 26 * GRS67 ellipsoid 27 */ 28 public static final Ellipsoid GRS67 = Ellipsoid.create_a_rf(6378160.0, 298.247167); 25 29 /** 26 30 * GRS80 ellipsoid -
trunk/src/org/openstreetmap/josm/data/projection/Projections.java
r6380 r6463 73 73 registerBaseProjection("tmerc", TransverseMercator.class, "core"); 74 74 75 ellipsoids.put("clarkeIGN", Ellipsoid.clarkeIGN); 75 76 ellipsoids.put("intl", Ellipsoid.hayford); 77 ellipsoids.put("GRS67", Ellipsoid.GRS67); 76 78 ellipsoids.put("GRS80", Ellipsoid.GRS80); 77 79 ellipsoids.put("WGS84", Ellipsoid.WGS84);
Note:
See TracChangeset
for help on using the changeset viewer.