Uses of Interface
org.openstreetmap.josm.data.projection.Projection

Packages that use Projection
org.openstreetmap.josm   
org.openstreetmap.josm.data.coor   
org.openstreetmap.josm.data.imagery   
org.openstreetmap.josm.data.osm   
org.openstreetmap.josm.data.osm.visitor.paint.relations   
org.openstreetmap.josm.data.projection   
org.openstreetmap.josm.gui   
org.openstreetmap.josm.gui.layer   
org.openstreetmap.josm.gui.preferences.projection   
 

Uses of Projection in org.openstreetmap.josm
 

Fields in org.openstreetmap.josm declared as Projection
private static Projection Main.proj
          The projection method used.
 

Methods in org.openstreetmap.josm that return Projection
static Projection Main.getProjection()
          Replies the current projection.
 

Methods in org.openstreetmap.josm with parameters of type Projection
private static void Main.fireProjectionChanged(Projection oldValue, Projection newValue, Bounds oldBounds)
           
static void Main.setProjection(Projection p)
          Sets the current projection
 

Uses of Projection in org.openstreetmap.josm.data.coor
 

Fields in org.openstreetmap.josm.data.coor declared as Projection
private  Projection CachedLatLon.proj
           
 

Methods in org.openstreetmap.josm.data.coor that return Projection
 Projection CachedLatLon.getProjection()
           
 

Uses of Projection in org.openstreetmap.josm.data.imagery
 

Methods in org.openstreetmap.josm.data.imagery with parameters of type Projection
private  java.lang.String WmsCache.generateFileName(WmsCache.ProjectionEntries projectionEntries, double pixelPerDegree, Projection projection, double east, double north, java.lang.String mimeType)
           
 java.awt.image.BufferedImage WmsCache.getExactMatch(Projection projection, double pixelPerDegree, double east, double north)
           
 java.awt.image.BufferedImage WmsCache.getPartialMatch(Projection projection, double pixelPerDegree, double east, double north)
           
private  WmsCache.ProjectionEntries WmsCache.getProjectionEntries(Projection projection)
           
 boolean WmsCache.hasExactMatch(Projection projection, double pixelPerDegree, double east, double north)
           
 void WmsCache.saveToCache(java.awt.image.BufferedImage img, java.io.InputStream imageData, Projection projection, double pixelPerDegree, double east, double north)
           
 

Uses of Projection in org.openstreetmap.josm.data.osm
 

Methods in org.openstreetmap.josm.data.osm with parameters of type Projection
 void DataSet.projectionChanged(Projection oldValue, Projection newValue)
           
 

Uses of Projection in org.openstreetmap.josm.data.osm.visitor.paint.relations
 

Methods in org.openstreetmap.josm.data.osm.visitor.paint.relations with parameters of type Projection
 void MultipolygonCache.projectionChanged(Projection oldValue, Projection newValue)
           
 

Uses of Projection in org.openstreetmap.josm.data.projection
 

Classes in org.openstreetmap.josm.data.projection that implement Projection
 class AbstractProjection
          Implementation of the Projection interface that represents a coordinate reference system and delegates the real projection and datum conversion to other classes.
 class CustomProjection
          Custom projection Inspired by PROJ.4 and Proj4J.
 

Fields in org.openstreetmap.josm.data.projection with type parameters of type Projection
private static java.util.Map<java.lang.String,Projection> Projections.allCodes
           
 

Methods in org.openstreetmap.josm.data.projection that return Projection
static Projection Projections.getProjectionByCode(java.lang.String code)
           
 

Methods in org.openstreetmap.josm.data.projection with parameters of type Projection
 void ProjectionChangeListener.projectionChanged(Projection oldValue, Projection newValue)
           
 

Uses of Projection in org.openstreetmap.josm.gui
 

Methods in org.openstreetmap.josm.gui that return Projection
 Projection NavigatableComponent.getProjection()
           
 

Uses of Projection in org.openstreetmap.josm.gui.layer
 

Methods in org.openstreetmap.josm.gui.layer with parameters of type Projection
 boolean Layer.isProjectionSupported(Projection proj)
          allows to check whether a projection is supported or not
 boolean TMSLayer.isProjectionSupported(Projection proj)
           
 boolean WMSLayer.isProjectionSupported(Projection proj)
           
 void GpxLayer.projectionChanged(Projection oldValue, Projection newValue)
           
 void Layer.projectionChanged(Projection oldValue, Projection newValue)
           
 void OsmDataLayer.projectionChanged(Projection oldValue, Projection newValue)
           
 

Uses of Projection in org.openstreetmap.josm.gui.preferences.projection
 

Methods in org.openstreetmap.josm.gui.preferences.projection that return Projection
 Projection AbstractProjectionChoice.getProjection()
           
 Projection CustomProjectionChoice.getProjection()
           
 Projection ProjectionChoice.getProjection()
          Get the projection that matches the internal state.
 



JOSM