Uses of Interface
org.openstreetmap.josm.data.projection.Projecting
-
Packages that use Projecting Package Description org.openstreetmap.josm.data.coor Provides the classes for geographiccoordinates
(east/north and lat/lon systems).org.openstreetmap.josm.data.gpx Provides the classes for JOSMGPX data
(points, tracks, routes).org.openstreetmap.josm.data.osm Provides the classes for OSM data:Primitives
:Node
,Way
,Relation
Users
Tags
Changesets
Utilities classesorg.openstreetmap.josm.data.projection Provides the classes for JOSM map projection.org.openstreetmap.josm.gui Provides the classes for JOSM graphical user interface.org.openstreetmap.josm.gui.layer.imagery Provides classes for handling imagery background layers. -
-
Uses of Projecting in org.openstreetmap.josm.data.coor
Methods in org.openstreetmap.josm.data.coor with parameters of type Projecting Modifier and Type Method Description EastNorth
CachedLatLon. getEastNorth(Projecting projecting)
Replies the projected east/north coordinates.default EastNorth
ILatLon. getEastNorth(Projecting projecting)
Replies the projected east/north coordinates. -
Uses of Projecting in org.openstreetmap.josm.data.gpx
Methods in org.openstreetmap.josm.data.gpx with parameters of type Projecting Modifier and Type Method Description EastNorth
WayPoint. getEastNorth(Projecting projecting)
-
Uses of Projecting in org.openstreetmap.josm.data.osm
Methods in org.openstreetmap.josm.data.osm with parameters of type Projecting Modifier and Type Method Description EastNorth
Node. getEastNorth(Projecting projection)
-
Uses of Projecting in org.openstreetmap.josm.data.projection
Subinterfaces of Projecting in org.openstreetmap.josm.data.projection Modifier and Type Interface Description interface
Projection
A projection, i.e. a class that supports conversion from lat/lon to east/north and back.Classes in org.openstreetmap.josm.data.projection that implement Projecting Modifier and Type Class Description 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.class
ShiftedProjecting
This is a projecting instance that shifts the projection by a given eastnorth offset.Fields in org.openstreetmap.josm.data.projection declared as Projecting Modifier and Type Field Description private Projecting
ShiftedProjecting. base
Methods in org.openstreetmap.josm.data.projection that return types with arguments of type Projecting Modifier and Type Method Description Map<ProjectionBounds,Projecting>
AbstractProjection. getProjectingsForArea(ProjectionBounds area)
Map<ProjectionBounds,Projecting>
Projecting. getProjectingsForArea(ProjectionBounds area)
Returns an map or (subarea, projecting) paris that contains projecting instances to convert the coordinates inside the given area.Map<ProjectionBounds,Projecting>
ShiftedProjecting. getProjectingsForArea(ProjectionBounds area)
Constructors in org.openstreetmap.josm.data.projection with parameters of type Projecting Constructor Description ShiftedProjecting(Projecting base, EastNorth offset)
Create a newShiftedProjecting
-
Uses of Projecting in org.openstreetmap.josm.gui
Fields in org.openstreetmap.josm.gui declared as Projecting Modifier and Type Field Description private Projecting
MapViewState. projecting
Methods in org.openstreetmap.josm.gui that return Projecting Modifier and Type Method Description Projecting
MapViewState. getProjecting()
Gets the current projecting instance that is used to convert between east/north and lat/lon space.Constructors in org.openstreetmap.josm.gui with parameters of type Projecting Constructor Description MapViewState(Projecting projection, int viewWidth, int viewHeight, double scale, EastNorth topLeft)
MapViewState(Projecting projection, int viewWidth, int viewHeight, double scale, EastNorth topLeft, Point topLeftInWindow, Point topLeftOnScreen)
Create a newMapViewState
MapViewState(Projecting projecting, MapViewState mvs)
-
Uses of Projecting in org.openstreetmap.josm.gui.layer.imagery
Methods in org.openstreetmap.josm.gui.layer.imagery that return Projecting Modifier and Type Method Description Projecting
TileCoordinateConverter. getProjecting()
Gets the projecting instance to use to convert between latlon and eastnorth coordinates.
-