Changeset 24042 in osm for applications/editors


Ignore:
Timestamp:
2010-11-03T16:41:51+01:00 (14 years ago)
Author:
fichtennadel
Message:

'fixed Manifest'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/epsg31287/src/org/openstreetmap/josm/plugins/epsg31287/ProjectionEPSG31287.java

    r23660 r24042  
    2121public class ProjectionEPSG31287 implements org.openstreetmap.josm.data.projection.Projection, org.openstreetmap.josm.data.projection.ProjectionSubPrefs {
    2222
    23     private double dx = 85.0;
    24     private double dy = 45.0;
     23    private double dx = 0.0;
     24    private double dy = 0.0;
    2525    private final static String projCode = "EPSG:31287";
    2626
     
    3232        projection = com.jhlabs.map.proj.ProjectionFactory.fromPROJ4Specification(
    3333                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"
    3738                        ,"+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"
    4342                        ,"+units=m"
    4443                        ,"+no_defs"
Note: See TracChangeset for help on using the changeset viewer.