Ignore:
Timestamp:
2011-07-28T07:35:06+02:00 (13 years ago)
Author:
bastik
Message:

make it work with latest josm

Location:
applications/editors/josm/plugins/proj4j
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/proj4j/build.xml

    r26174 r26407  
    115115                <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
    116116                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
     117                <attribute name="Plugin-Early" value="true"/>
    117118            </manifest>
    118119        </jar>
  • applications/editors/josm/plugins/proj4j/src/org/openstreetmap/josm/plugins/proj4j/ProjectionProj4J.java

    r25450 r26407  
    168168                filterText = array[1];
    169169            }
     170            setupTransformations();
    170171        }
    171172    }
     
    199200        org.osgeo.proj4j.ProjCoordinate pc1 = new org.osgeo.proj4j.ProjCoordinate(p.east(), p.north());
    200201        org.osgeo.proj4j.ProjCoordinate pc2 = new org.osgeo.proj4j.ProjCoordinate();
    201         //System.out.println("InvFrom " + pc1.x + " " + pc2.y);
     202        //System.out.println("InvFrom " + pc1.x + " " + pc1.y);
    202203        transformToWGS84.transform(pc1, pc2);
    203204        //System.out.println("InvTo " + pc2.x + " " + pc2.y);
Note: See TracChangeset for help on using the changeset viewer.