Changeset 24042 in osm
- Timestamp:
- 2010-11-03T16:41:51+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/epsg31287/src/org/openstreetmap/josm/plugins/epsg31287/ProjectionEPSG31287.java
r23660 r24042 21 21 public class ProjectionEPSG31287 implements org.openstreetmap.josm.data.projection.Projection, org.openstreetmap.josm.data.projection.ProjectionSubPrefs { 22 22 23 private double dx = 85.0;24 private double dy = 45.0;23 private double dx = 0.0; 24 private double dy = 0.0; 25 25 private final static String projCode = "EPSG:31287"; 26 26 … … 32 32 projection = com.jhlabs.map.proj.ProjectionFactory.fromPROJ4Specification( 33 33 new String[] { 34 "+proj=lcc" 35 ,"+lat_1=49" 36 ,"+lat_2=46" 34 "+datum=WGS84" 35 ,"+proj=lcc" 36 ,"+lat_1=46.0103424" 37 ,"+lat_2=48.988621" 37 38 ,"+lat_0=47.5" 38 ,"+lon_0=13.33333333333333" 39 ,"+x_0=400000" 40 ,"+y_0=400000" 41 ,"+ellps=bessel" 42 ,"+towgs84=577.326,90.129,463.919,5.137,1.474,5.297,2.4232" 39 ,"+lon_0=13.33616275" 40 ,"+x_0=400268.785" 41 ,"+y_0=400057.553" 43 42 ,"+units=m" 44 43 ,"+no_defs"
Note:
See TracChangeset
for help on using the changeset viewer.