Uses of Class
org.openstreetmap.josm.data.coor.LatLon
-
Packages that use LatLon Package Description org.openstreetmap.josm.actions Provides the classes for JOSM user actions.org.openstreetmap.josm.command Provides the classes for JOSM commands allowing to modify an OSM data set.org.openstreetmap.josm.data Provides the classes for JOSM managed data.org.openstreetmap.josm.data.coor Provides the classes for geographiccoordinates
(east/north and lat/lon systems).org.openstreetmap.josm.data.coor.conversion Provides the classes for geographiccoordinates
conversion.org.openstreetmap.josm.data.gpx Provides the classes for JOSMGPX data
(points, tracks, routes).org.openstreetmap.josm.data.imagery Provides the classes for JOSM imagery sources, coupled withJMapViewer
classes.org.openstreetmap.josm.data.notes Provides the classes for OSMnotes
.org.openstreetmap.josm.data.osm Provides the classes for OSM data:Primitives
:Node
,Way
,Relation
Users
Tags
Changesets
Utilities classesorg.openstreetmap.josm.data.osm.history Provides the classes for OSM primitiveshistory
(edition revisions).org.openstreetmap.josm.data.osm.visitor Provides the classes for performing actions on OSM primitives using Visitor design pattern.org.openstreetmap.josm.data.projection Provides the classes for JOSM map projection.org.openstreetmap.josm.data.projection.datum Provides the classes for datum used in map projections.org.openstreetmap.josm.data.projection.proj Provides the classes for JOSM map projections implementations.org.openstreetmap.josm.data.validation.tests Provides the classes for JOSM data validation tests.org.openstreetmap.josm.data.vector Provides classes for vector data like Mapbox Vector Tiles.org.openstreetmap.josm.gui Provides the classes for JOSM graphical user interface.org.openstreetmap.josm.gui.bbox Provides GUI classes for displaying a customizable and interactive bounding box.org.openstreetmap.josm.gui.conflict.pair.properties Provides the classes for displaying conflicts in OSM primitive properties.org.openstreetmap.josm.gui.datatransfer.importers Provides the classes for the transfer support controllers allowing cut/copy/paste operations.org.openstreetmap.josm.gui.dialogs Provides three kinds of dialogs: Toggle dialogs on the right side of the GUI, that can be turned on, off, attached or detached from the GUI Changeset dialog based on a standalone implementation, dedicated to OSM changesets management Extended dialogs for everything elseorg.openstreetmap.josm.gui.history Provides GUI classes for handling history of OSM objects.org.openstreetmap.josm.gui.layer Provides classes for handling the different kinds of map layers.org.openstreetmap.josm.gui.layer.geoimage Provides classes for handling layers displaying geotagged pictures.org.openstreetmap.josm.gui.layer.gpx Provides classes for handling GPX layers.org.openstreetmap.josm.gui.layer.markerlayer Provides classes for handling marker layers.org.openstreetmap.josm.gui.layer.validation Provides classes for handling validation layer.org.openstreetmap.josm.gui.mappaint Drawing system allowing to display and render OSM map data in a user-friendly and customizable way, through map styles.
Two implementations are provided: XML: this was the system used by default JOSM map style for a long time.org.openstreetmap.josm.gui.mappaint.mapcss Drawing system based on MapCSS map styles.org.openstreetmap.josm.gui.preferences.imagery Provides classes for handling imagery preferences.org.openstreetmap.josm.io Provides the classes for JOSM input/output support.org.openstreetmap.josm.io.nmea Provides the classes for reading NMEA-0183 files.org.openstreetmap.josm.io.remotecontrol.handler Provides the classes for remote control handlers (features exposed to the browser).org.openstreetmap.josm.io.session Provides the classes for user sessions import/export.org.openstreetmap.josm.tools Provides the classes for various utilities and tools called from all other packages. -
-
Uses of LatLon in org.openstreetmap.josm.actions
Methods in org.openstreetmap.josm.actions that return types with arguments of type LatLon Modifier and Type Method Description protected static java.util.Collection<LatLon>
DownloadAlongAction. calcBetweenPoints(LatLon p1, LatLon p2, double bufferDist)
Calculate list of points between two given points so that the distance between two consecutive points is below a limit.Methods in org.openstreetmap.josm.actions with parameters of type LatLon Modifier and Type Method Description protected static java.util.Collection<LatLon>
DownloadAlongAction. calcBetweenPoints(LatLon p1, LatLon p2, double bufferDist)
Calculate list of points between two given points so that the distance between two consecutive points is below a limit. -
Uses of LatLon in org.openstreetmap.josm.command
Fields in org.openstreetmap.josm.command declared as LatLon Modifier and Type Field Description private LatLon
Command.OldNodeState. latLon
Methods in org.openstreetmap.josm.command that return LatLon Modifier and Type Method Description LatLon
Command.OldNodeState. getLatLon()
Returns old lat/lon.Constructors in org.openstreetmap.josm.command with parameters of type LatLon Constructor Description MoveCommand(Node node, LatLon position)
Constructs a newMoveCommand
to move a node. -
Uses of LatLon in org.openstreetmap.josm.data
Methods in org.openstreetmap.josm.data that return LatLon Modifier and Type Method Description LatLon
Bounds. getCenter()
Returns center of the bounding box.LatLon
Bounds. getMax()
Gets the point that has both the maximum lat and lon coordinateLatLon
Bounds. getMin()
Gets the point that has both the minimal lat and lon coordinateMethods in org.openstreetmap.josm.data with parameters of type LatLon Modifier and Type Method Description boolean
Bounds. contains(LatLon ll)
Determines if the given pointll
is within these bounds.void
Bounds. extend(LatLon ll)
Extend the bounds if necessary to include the given point.void
ImageData. updateImagePosition(ImageEntry img, LatLon newPos)
Update the position of the image and trigger updateConstructors in org.openstreetmap.josm.data with parameters of type LatLon Constructor Description Bounds(LatLon b)
Constructs bounds out a single point.Bounds(LatLon b, boolean roundToOsmPrecision)
Single point Bounds defined by lat/lonb
.Bounds(LatLon center, double latExtent, double lonExtent)
Creates new bounds around a coordinate paircenter
.Bounds(LatLon min, LatLon max)
Construct bounds out of two points.Bounds(LatLon min, LatLon max, boolean roundToOsmPrecision)
Constructs bounds out of two points. -
Uses of LatLon in org.openstreetmap.josm.data.coor
Subclasses of LatLon in org.openstreetmap.josm.data.coor Modifier and Type Class Description class
CachedLatLon
LatLon class that maintains a cache of projected EastNorth coordinates.Fields in org.openstreetmap.josm.data.coor declared as LatLon Modifier and Type Field Description static LatLon
LatLon. NORTH_POLE
North pole.static LatLon
LatLon. SOUTH_POLE
South pole.static LatLon
LatLon. ZERO
The (0,0) coordinates.Methods in org.openstreetmap.josm.data.coor that return LatLon Modifier and Type Method Description LatLon
LatLon. getCenter(LatLon ll2)
Get the center between two lat/lon pointsLatLon
LatLon. getRoundedToOsmPrecision()
Replies a clone of this lat LatLon, rounded to OSM precisions, i.e.LatLon
LatLon. interpolate(LatLon ll2, double proportion)
Interpolate between this and a other latlon.static LatLon
QuadTiling. tile2LatLon(long quad)
Converts a tile index to a lat/lon positionMethods in org.openstreetmap.josm.data.coor with parameters of type LatLon Modifier and Type Method Description double
LatLon. distance(LatLon ll)
Returns the euclidean distance from thisLatLon
to a specifiedLatLon
.double
LatLon. distanceSq(LatLon ll)
Returns the square of the euclidean distance from thisLatLon
to a specifiedLatLon
.LatLon
LatLon. getCenter(LatLon ll2)
Get the center between two lat/lon pointsLatLon
LatLon. interpolate(LatLon ll2, double proportion)
Interpolate between this and a other latlon.Constructors in org.openstreetmap.josm.data.coor with parameters of type LatLon Constructor Description CachedLatLon(LatLon coor)
Constructs a newCachedLatLon
. -
Uses of LatLon in org.openstreetmap.josm.data.coor.conversion
Methods in org.openstreetmap.josm.data.coor.conversion that return LatLon Modifier and Type Method Description static LatLon
LatLonParser. parse(java.lang.String coord)
Parses the given string as lat/lon. -
Uses of LatLon in org.openstreetmap.josm.data.gpx
Fields in org.openstreetmap.josm.data.gpx declared as LatLon Modifier and Type Field Description private LatLon
GpxImageEntry. exifCoor
Methods in org.openstreetmap.josm.data.gpx that return LatLon Modifier and Type Method Description LatLon
WayPoint. getCoor()
Returns the waypoint coordinates.LatLon
GpxImageEntry. getExifCoor()
Methods in org.openstreetmap.josm.data.gpx with parameters of type LatLon Modifier and Type Method Description void
GpxImageEntry. setExifCoor(LatLon exifCoor)
Sets the EXIF coordinate.void
GpxImageEntry. setPos(LatLon pos)
Sets the position.Constructors in org.openstreetmap.josm.data.gpx with parameters of type LatLon Constructor Description WayPoint(LatLon ll)
Constructs a newWayPoint
from lat/lon coordinates. -
Uses of LatLon in org.openstreetmap.josm.data.imagery
Methods in org.openstreetmap.josm.data.imagery that return LatLon Modifier and Type Method Description static LatLon
CoordinateConversion. coorToLL(org.openstreetmap.gui.jmapviewer.interfaces.ICoordinate c)
Converts anICoordinate
to aLatLon
instance.LatLon
OffsetBookmark. getCenter()
Get center/reference point of the bookmark.private static LatLon
WMTSTileSource. parseLatLon(java.lang.String coor, boolean switchXY)
Methods in org.openstreetmap.josm.data.imagery with parameters of type LatLon Modifier and Type Method Description boolean
Shape. contains(LatLon latlon)
Check if the coordinates are inside this shape.static org.openstreetmap.gui.jmapviewer.interfaces.ICoordinate
CoordinateConversion. llToCoor(LatLon ll)
Converts aLatLon
to anICoordinate
instance. -
Uses of LatLon in org.openstreetmap.josm.data.notes
Fields in org.openstreetmap.josm.data.notes declared as LatLon Modifier and Type Field Description private LatLon
Note. latLon
Methods in org.openstreetmap.josm.data.notes that return LatLon Modifier and Type Method Description LatLon
Note. getLatLon()
Returns the geographic location of the note.Constructors in org.openstreetmap.josm.data.notes with parameters of type LatLon Constructor Description Note(LatLon latLon)
Create a note with a given location -
Uses of LatLon in org.openstreetmap.josm.data.osm
Fields in org.openstreetmap.josm.data.osm declared as LatLon Modifier and Type Field Description private LatLon
UserInfo. home
the home locationprivate LatLon
Changeset. max
the max.private LatLon
Changeset. min
the min.Methods in org.openstreetmap.josm.data.osm that return LatLon Modifier and Type Method Description LatLon
BBox. getBottomRight()
Returns the bottom-right point.LatLon
BBox. getCenter()
Gets the center of this BBox.LatLon
INode. getCoor()
Returns lat/lon coordinates of this node.LatLon
Node. getCoor()
Returns lat/lon coordinates of this node, ornull
unlessILatLon.isLatLonKnown()
LatLon
NodeData. getCoor()
LatLon
UserInfo. getHome()
Returns the user home coordinates, if set.LatLon
Changeset. getMax()
Returns the max lat/lon of the changeset bounding box.LatLon
Changeset. getMin()
Returns the min lat/lon of the changeset bounding box.LatLon
BBox. getTopLeft()
Returns the top-left point.Methods in org.openstreetmap.josm.data.osm with parameters of type LatLon Modifier and Type Method Description void
BBox. add(LatLon c)
Add a point to an existing BBox.void
BBox. addLatLon(LatLon latLon, double extraSpace)
Extends this bbox to include the bbox of the primitive extended by extraSpace.boolean
BBox. bounds(LatLon c)
Tests, whether the Pointc
lies within the bbox.void
NoteData. createNote(LatLon location, java.lang.String text)
Create a new notestatic OsmPrimitive
OsmUtils. createPrimitive(java.lang.String assertion, LatLon around, boolean enforceLocation)
Creates a new OSM primitive according to the given assertion.(package private) void
DataSet. fireNodeMoved(Node node, LatLon newCoor, EastNorth eastNorth)
private static Node
OsmUtils. newNode(LatLon around)
private static Relation
OsmUtils. newRelation(LatLon around, boolean enforceLocation)
private static Way
OsmUtils. newWay(LatLon around, boolean enforceLocation)
void
INode. setCoor(LatLon coor)
Sets lat/lon coordinates of this node.void
Node. setCoor(LatLon coor)
void
NodeData. setCoor(LatLon coor)
(package private) void
Node. setCoorInternal(LatLon coor, EastNorth eastNorth)
To be used only by Dataset.reindexNodevoid
UserInfo. setHome(LatLon home)
Sets the user home coordinates.void
Changeset. setMax(LatLon max)
Sets the max lat/lon of the changeset bounding box.void
Changeset. setMin(LatLon min)
Sets the min lat/lon of the changeset bounding box.private void
Node. updateCoor(LatLon coor, EastNorth eastNorth)
Constructors in org.openstreetmap.josm.data.osm with parameters of type LatLon Constructor Description BBox(LatLon a, LatLon b)
Constructs a newBBox
defined by pointsa
andb
.Node(LatLon latlon)
Constructs a newNode
with the given lat/lon with id 0. -
Uses of LatLon in org.openstreetmap.josm.data.osm.history
Fields in org.openstreetmap.josm.data.osm.history declared as LatLon Modifier and Type Field Description private LatLon
HistoryNode. coords
the coordinates.Methods in org.openstreetmap.josm.data.osm.history that return LatLon Modifier and Type Method Description LatLon
HistoryNode. getCoords()
Replies the coordinates.Methods in org.openstreetmap.josm.data.osm.history with parameters of type LatLon Modifier and Type Method Description void
HistoryNode. setCoords(LatLon coords)
Sets the coordinates.Constructors in org.openstreetmap.josm.data.osm.history with parameters of type LatLon Constructor Description HistoryNode(long id, long version, boolean visible, User user, long changesetId, java.time.Instant timestamp, LatLon coords)
Constructs a newHistoryNode
.HistoryNode(long id, long version, boolean visible, User user, long changesetId, java.time.Instant timestamp, LatLon coords, boolean checkHistoricParams)
Constructs a newHistoryNode
with a configurable checking of historic parameters. -
Uses of LatLon in org.openstreetmap.josm.data.osm.visitor
Methods in org.openstreetmap.josm.data.osm.visitor with parameters of type LatLon Modifier and Type Method Description void
BoundingXYVisitor. visit(LatLon latlon)
Visiting call for lat/lon. -
Uses of LatLon in org.openstreetmap.josm.data.projection
Fields in org.openstreetmap.josm.data.projection declared as LatLon Modifier and Type Field Description private LatLon
CustomProjection.Polarity. latlon
Methods in org.openstreetmap.josm.data.projection that return LatLon Modifier and Type Method Description LatLon
Ellipsoid. cart2LatLon(double... xyz)
convert cartesian coordinates to ellipsoidal coordinatesLatLon
Ellipsoid. cart2LatLon(double[] xyz, double epsilon)
LatLon
AbstractProjection. eastNorth2latlon(EastNorth en)
private LatLon
AbstractProjection. eastNorth2latlon(EastNorth en, java.util.function.DoubleUnaryOperator normalizeLon)
LatLon
Projection. eastNorth2latlon(EastNorth en)
Convert from easting/norting to lat/lon.LatLon
AbstractProjection. eastNorth2latlonClamped(EastNorth en)
LatLon
Projecting. eastNorth2latlonClamped(EastNorth en)
Convert a east/north coordinate to theLatLon
coordinate.LatLon
ShiftedProjecting. eastNorth2latlonClamped(EastNorth en)
(package private) LatLon
CustomProjection.Polarity. getLatLon()
Methods in org.openstreetmap.josm.data.projection with parameters of type LatLon Modifier and Type Method Description double[]
Ellipsoid. latLon2Cart(LatLon coord)
convert ellipsoidal coordinates to cartesian coordinatesdefault EastNorth
Projecting. latlon2eastNorth(LatLon ll)
Convert from lat/lon to easting/northing.Constructors in org.openstreetmap.josm.data.projection with parameters of type LatLon Constructor Description Polarity(LatLon latlon)
-
Uses of LatLon in org.openstreetmap.josm.data.projection.datum
Methods in org.openstreetmap.josm.data.projection.datum that return LatLon Modifier and Type Method Description LatLon
CentricDatum. fromWGS84(LatLon ll)
LatLon
Datum. fromWGS84(LatLon ll)
Convert lat/lon fromEllipsoid.WGS84
to this datum.LatLon
NTV2Datum. fromWGS84(LatLon ll)
LatLon
NullDatum. fromWGS84(LatLon ll)
LatLon
SevenParameterDatum. fromWGS84(LatLon ll)
LatLon
ThreeParameterDatum. fromWGS84(LatLon ll)
LatLon
CentricDatum. toWGS84(LatLon ll)
LatLon
Datum. toWGS84(LatLon ll)
Convert lat/lon from this datum toEllipsoid.WGS84
datum.LatLon
NTV2Datum. toWGS84(LatLon ll)
LatLon
NullDatum. toWGS84(LatLon ll)
LatLon
SevenParameterDatum. toWGS84(LatLon ll)
LatLon
ThreeParameterDatum. toWGS84(LatLon ll)
Methods in org.openstreetmap.josm.data.projection.datum with parameters of type LatLon Modifier and Type Method Description LatLon
CentricDatum. fromWGS84(LatLon ll)
LatLon
Datum. fromWGS84(LatLon ll)
Convert lat/lon fromEllipsoid.WGS84
to this datum.LatLon
NTV2Datum. fromWGS84(LatLon ll)
LatLon
NullDatum. fromWGS84(LatLon ll)
LatLon
SevenParameterDatum. fromWGS84(LatLon ll)
LatLon
ThreeParameterDatum. fromWGS84(LatLon ll)
LatLon
CentricDatum. toWGS84(LatLon ll)
LatLon
Datum. toWGS84(LatLon ll)
Convert lat/lon from this datum toEllipsoid.WGS84
datum.LatLon
NTV2Datum. toWGS84(LatLon ll)
LatLon
NullDatum. toWGS84(LatLon ll)
LatLon
SevenParameterDatum. toWGS84(LatLon ll)
LatLon
ThreeParameterDatum. toWGS84(LatLon ll)
Constructors in org.openstreetmap.josm.data.projection.datum with parameters of type LatLon Constructor Description NTV2GridShift(LatLon p)
Constructs a newNTV2GridShift
from aLatLon
. -
Uses of LatLon in org.openstreetmap.josm.data.projection.proj
Fields in org.openstreetmap.josm.data.projection.proj declared as LatLon Modifier and Type Field Description private LatLon
ObliqueMercator. referencePoint
A reference point, which is known to be on the central line.Methods in org.openstreetmap.josm.data.projection.proj with parameters of type LatLon Modifier and Type Method Description static Pair<java.lang.Integer,TransverseMercator.Hemisphere>
TransverseMercator. locateUtmZone(LatLon ll)
Determines the UTM zone of a given lat/lon. -
Uses of LatLon in org.openstreetmap.josm.data.validation.tests
Fields in org.openstreetmap.josm.data.validation.tests with type parameters of type LatLon Modifier and Type Field Description private java.util.List<LatLon>
DuplicateRelation.RelMember. coor
Coordinates of the relation memberprivate java.util.List<LatLon>
DuplicateWay.WayPair. coor
private java.util.List<LatLon>
DuplicateWay.WayPairNoTags. coor
Methods in org.openstreetmap.josm.data.validation.tests that return LatLon Modifier and Type Method Description protected LatLon
DuplicateNode.NodeHash. getLatLon(java.lang.Object o)
private static LatLon
MapCSSTagCheckerAsserts. getLocation(MapCSSTagCheckerRule check)
private LatLon
DuplicateNode.NodeHash. roundCoord(LatLon coor)
Returns the rounded coordinated according toDuplicateNode.NodeHash.precision
Methods in org.openstreetmap.josm.data.validation.tests that return types with arguments of type LatLon Modifier and Type Method Description static java.util.List<LatLon>
DuplicateWay. getOrderedNodes(Way w)
Replies the ordered list of nodes of way w such as it is easier to find duplicated ways.Methods in org.openstreetmap.josm.data.validation.tests with parameters of type LatLon Modifier and Type Method Description private LatLon
DuplicateNode.NodeHash. roundCoord(LatLon coor)
Returns the rounded coordinated according toDuplicateNode.NodeHash.precision
private void
TagChecker. tagCheck(TaggingPreset preset, OsmPrimitive p, LatLon center, java.util.List<? extends TaggingPresetItem> tagInformation)
Perform the checks against a given preset valueprivate void
TagChecker. tagCheckReal(TaggingPreset preset, OsmPrimitive p, LatLon center, java.util.List<? extends RegionSpecific> data)
Perform the checks against a given preset valueprivate void
TagChecker. tagCheckReal(TaggingPreset preset, OsmPrimitive p, LatLon center, RegionSpecific data)
Perform the checks against a given preset valueConstructor parameters in org.openstreetmap.josm.data.validation.tests with type arguments of type LatLon Constructor Description WayPair(java.util.List<LatLon> coor, java.util.Map<java.lang.String,java.lang.String> keys)
WayPairNoTags(java.util.List<LatLon> coor)
-
Uses of LatLon in org.openstreetmap.josm.data.vector
Methods in org.openstreetmap.josm.data.vector that return LatLon Modifier and Type Method Description LatLon
VectorNode. getCoor()
Methods in org.openstreetmap.josm.data.vector with parameters of type LatLon Modifier and Type Method Description void
VectorNode. setCoor(LatLon coordinates)
-
Uses of LatLon in org.openstreetmap.josm.gui
Methods in org.openstreetmap.josm.gui that return LatLon Modifier and Type Method Description LatLon
MapViewState.MapViewPoint. getLatLon()
Gets the current position in LatLon coordinates according to the current projection.LatLon
NavigatableComponent. getLatLon(double x, double y)
Returns unprojected geographic coordinates for a specific pixel position on the screen.LatLon
NavigatableComponent. getLatLon(int x, int y)
Returns unprojected geographic coordinates for a specific pixel position on the screen.LatLon
MapViewState.MapViewPoint. getLatLonClamped()
Gets the latlon coordinate clamped to the current world area.Methods in org.openstreetmap.josm.gui with parameters of type LatLon Modifier and Type Method Description java.awt.Point
NavigatableComponent. getPoint(LatLon latlon)
looses precision, may overflow (depends on p and current scale)java.awt.geom.Point2D
NavigatableComponent. getPoint2D(LatLon latlon)
Return the point on the screen where this Coordinate would be.MapViewState.MapViewPoint
MapViewState. getPointFor(LatLon latlon)
Gets theMapViewState.MapViewPoint
for the givenLatLon
coordinate.private static boolean
ImageryMenu. isPosInOneShapeIfAny(ImageryInfo info, LatLon pos)
For layers containing complex shapes, check that center is in one of its shapes (fix #7910)void
NavigatableComponent. zoomTo(LatLon newCenter)
Zoom to given lat/lon. -
Uses of LatLon in org.openstreetmap.josm.gui.bbox
Methods in org.openstreetmap.josm.gui.bbox that return LatLon Modifier and Type Method Description protected LatLon
TileSelectionBBoxChooser. getNorthWestLatLonOfTile(java.awt.Point tile, int zoom)
Replies lat/lon of the north/west-corner of a tile at a specific zoom level -
Uses of LatLon in org.openstreetmap.josm.gui.conflict.pair.properties
Fields in org.openstreetmap.josm.gui.conflict.pair.properties declared as LatLon Modifier and Type Field Description private LatLon
PropertiesMergeModel. myCoords
private LatLon
PropertiesMergeModel. theirCoords
Methods in org.openstreetmap.josm.gui.conflict.pair.properties that return LatLon Modifier and Type Method Description LatLon
PropertiesMergeModel. getMergedCoords()
replies the coordinates of the mergedOsmPrimitive
.LatLon
PropertiesMergeModel. getMyCoords()
replies the coordinates of myOsmPrimitive
.LatLon
PropertiesMergeModel. getTheirCoords()
replies the coordinates of theirOsmPrimitive
.Methods in org.openstreetmap.josm.gui.conflict.pair.properties with parameters of type LatLon Modifier and Type Method Description protected static java.lang.String
PropertiesMerger. coordToString(LatLon coord)
-
Uses of LatLon in org.openstreetmap.josm.gui.datatransfer.importers
Methods in org.openstreetmap.josm.gui.datatransfer.importers that return LatLon Modifier and Type Method Description (package private) static LatLon
OsmLinkPaster. parseLatLon(java.lang.String transferData)
-
Uses of LatLon in org.openstreetmap.josm.gui.dialogs
Fields in org.openstreetmap.josm.gui.dialogs declared as LatLon Modifier and Type Field Description private LatLon
LatLonDialog. latLonCoordinates
Methods in org.openstreetmap.josm.gui.dialogs that return LatLon Modifier and Type Method Description LatLon
LatLonDialog. getCoordinates()
Gets the coordinates that are entered by the user.LatLon
LatLonDialog. getLatLonCoordinates()
Gets the coordinates that are entered in the lat/lon fieldMethods in org.openstreetmap.josm.gui.dialogs with parameters of type LatLon Modifier and Type Method Description void
LatLonDialog. setCoordinates(LatLon ll)
Sets the coordinate fields to the given coordinates -
Uses of LatLon in org.openstreetmap.josm.gui.history
Methods in org.openstreetmap.josm.gui.history that return types with arguments of type LatLon Modifier and Type Method Description protected Pair<LatLon,LatLon>
CoordinateInfoViewer.Updater. getCoordinates()
protected Pair<LatLon,LatLon>
CoordinateInfoViewer.Updater. getCoordinates()
-
Uses of LatLon in org.openstreetmap.josm.gui.layer
Methods in org.openstreetmap.josm.gui.layer that return LatLon Modifier and Type Method Description private LatLon
AbstractTileSourceLayer. getShiftedLatLon(EastNorth en)
Methods in org.openstreetmap.josm.gui.layer with parameters of type LatLon Modifier and Type Method Description boolean
OsmDataLayer. containsPoint(LatLon coor)
Determines if this layer contains data at the given coordinate.Method parameters in org.openstreetmap.josm.gui.layer with type arguments of type LatLon Modifier and Type Method Description AbstractTileSourceLayer.PrecacheTask
AbstractTileSourceLayer. getDownloadAreaToCacheTask(ProgressMonitor progressMonitor, java.util.List<LatLon> points, double bufferX, double bufferY)
Calculates tiles, that needs to be downloaded to cache, gets a current tile loader and creates a task to download all of the tiles.Constructor parameters in org.openstreetmap.josm.gui.layer with type arguments of type LatLon Constructor Description PrecacheTask(ProgressMonitor progressMonitor, java.util.List<LatLon> points, double bufferX, double bufferY)
Constructs a newPrecacheTask
. -
Uses of LatLon in org.openstreetmap.josm.gui.layer.geoimage
Constructors in org.openstreetmap.josm.gui.layer.geoimage with parameters of type LatLon Constructor Description WikimediaCommonsEntry(java.lang.String title, LatLon latLon)
-
Uses of LatLon in org.openstreetmap.josm.gui.layer.gpx
Fields in org.openstreetmap.josm.gui.layer.gpx with type parameters of type LatLon Modifier and Type Field Description private java.util.List<LatLon>
DownloadWmsAlongTrackAction.PrecacheWmsTask. points
Constructor parameters in org.openstreetmap.josm.gui.layer.gpx with type arguments of type LatLon Constructor Description PrecacheWmsTask(AbstractTileSourceLayer<? extends org.openstreetmap.gui.jmapviewer.tilesources.AbstractTMSTileSource> layer, java.util.List<LatLon> points)
-
Uses of LatLon in org.openstreetmap.josm.gui.layer.markerlayer
Fields in org.openstreetmap.josm.gui.layer.markerlayer declared as LatLon Modifier and Type Field Description private LatLon
PlayHeadMarker. oldCoor
Methods in org.openstreetmap.josm.gui.layer.markerlayer that return LatLon Modifier and Type Method Description LatLon
Marker. getCoor()
Returns the marker's coordinates.Methods in org.openstreetmap.josm.gui.layer.markerlayer with parameters of type LatLon Modifier and Type Method Description AudioMarker
MarkerLayer. addAudioMarker(double time, LatLon coor)
void
Marker. setCoor(LatLon coor)
Sets the marker's coordinates.Constructors in org.openstreetmap.josm.gui.layer.markerlayer with parameters of type LatLon Constructor Description AudioMarker(LatLon ll, TemplateEngineDataProvider dataProvider, java.net.URL audioUrl, MarkerLayer parentLayer, double time, double offset)
ButtonMarker(LatLon ll, java.lang.String buttonImage, MarkerLayer parentLayer, double time, double offset)
ButtonMarker(LatLon ll, TemplateEngineDataProvider dataProvider, java.lang.String buttonImage, MarkerLayer parentLayer, double time, double offset)
ImageMarker(LatLon ll, java.net.URL imageUrl, MarkerLayer parentLayer, double time, double offset)
Marker(LatLon ll, java.lang.String text, java.lang.String iconName, MarkerLayer parentLayer, double time, double offset)
Marker(LatLon ll, TemplateEngineDataProvider dataProvider, java.lang.String text, java.lang.String iconName, MarkerLayer parentLayer, double time, double offset)
Marker(LatLon ll, TemplateEngineDataProvider dataProvider, java.lang.String iconName, MarkerLayer parentLayer, double time, double offset)
WebMarker(LatLon ll, java.net.URL webUrl, MarkerLayer parentLayer, double time, double offset)
-
Uses of LatLon in org.openstreetmap.josm.gui.layer.validation
Fields in org.openstreetmap.josm.gui.layer.validation declared as LatLon Modifier and Type Field Description protected LatLon
PaintVisitor.PaintedPoint. p1
private LatLon
PaintVisitor.PaintedSegment. p2
Constructors in org.openstreetmap.josm.gui.layer.validation with parameters of type LatLon Constructor Description PaintedPoint(LatLon p1, java.awt.Color color)
PaintedSegment(LatLon p1, LatLon p2, java.awt.Color color)
-
Uses of LatLon in org.openstreetmap.josm.gui.mappaint
Fields in org.openstreetmap.josm.gui.mappaint declared as LatLon Modifier and Type Field Description private LatLon
RenderingCLI. argAnchor
-
Uses of LatLon in org.openstreetmap.josm.gui.mappaint.mapcss
Methods in org.openstreetmap.josm.gui.mappaint.mapcss that return LatLon Modifier and Type Method Description static LatLon
Functions. center(Environment env)
Returns the center of the environment OSM primitive. -
Uses of LatLon in org.openstreetmap.josm.gui.preferences.imagery
Fields in org.openstreetmap.josm.gui.preferences.imagery declared as LatLon Modifier and Type Field Description private LatLon
WMSLayerTree. checkBounds
Methods in org.openstreetmap.josm.gui.preferences.imagery with parameters of type LatLon Modifier and Type Method Description void
WMSLayerTree. setCheckBounds(LatLon checkBounds)
Set coordinate to check layer bounds when updating the tree. -
Uses of LatLon in org.openstreetmap.josm.io
Methods in org.openstreetmap.josm.io that return LatLon Modifier and Type Method Description private static LatLon
OsmPbfReader. calculateLatLon(OsmPbfReader.PrimitiveBlockRecord primitiveBlockRecord, long lat, long lon)
Calculate the actual lat lonprivate LatLon
GeoJSONReader. getLatLon(jakarta.json.JsonArray coordinates)
private static LatLon
GpxParser. parseLatLon(org.xml.sax.Attributes attributes)
Convert coordinates in attributes to aLatLon
object(package private) static LatLon
NoteReader. parseLatLon(java.util.function.UnaryOperator<java.lang.String> attrs)
Methods in org.openstreetmap.josm.io with parameters of type LatLon Modifier and Type Method Description private Node
GeoJSONReader. createNode(LatLon latlon)
Note
OsmApi. createNote(LatLon latlon, java.lang.String text, ProgressMonitor monitor)
Create a new note on the server.ChangesetQuery
ChangesetQuery. inBbox(LatLon min, LatLon max)
Replies a query which is restricted to a bounding box.(package private) void
OsmWriter. writeLatLon(LatLon ll)
-
Uses of LatLon in org.openstreetmap.josm.io.nmea
Methods in org.openstreetmap.josm.io.nmea that return LatLon Modifier and Type Method Description private static LatLon
NmeaParser. parseLatLon(java.lang.String ns, java.lang.String ew, java.lang.String dlat, java.lang.String dlon)
-
Uses of LatLon in org.openstreetmap.josm.io.remotecontrol.handler
Fields in org.openstreetmap.josm.io.remotecontrol.handler with type parameters of type LatLon Modifier and Type Field Description private java.util.Map<LatLon,Node>
AddWayHandler. addedNodes
The place to remember already added nodes (they are reused if needed @since 5845private java.util.List<LatLon>
AddWayHandler. allCoordinates
Methods in org.openstreetmap.josm.io.remotecontrol.handler with parameters of type LatLon Modifier and Type Method Description (package private) Node
AddWayHandler. findOrCreateNode(LatLon ll, java.util.List<Command> commands)
Find the node with almost the same coords in dataset or in already added nodes -
Uses of LatLon in org.openstreetmap.josm.io.session
Fields in org.openstreetmap.josm.io.session declared as LatLon Modifier and Type Field Description private LatLon
SessionReader.SessionViewportData. center
Methods in org.openstreetmap.josm.io.session that return LatLon Modifier and Type Method Description LatLon
SessionReader.SessionViewportData. getCenter()
Get the lat/lon coordinates of the screen center.Constructors in org.openstreetmap.josm.io.session with parameters of type LatLon Constructor Description SessionViewportData(LatLon center, double meterPerPixel)
Construct a new SessionViewportData. -
Uses of LatLon in org.openstreetmap.josm.tools
Fields in org.openstreetmap.josm.tools declared as LatLon Modifier and Type Field Description private LatLon
DefaultGeoProperty. random
Methods in org.openstreetmap.josm.tools that return LatLon Modifier and Type Method Description LatLon
DefaultGeoProperty. getRandomLatLon()
Returns a random lat/lon in the area.static LatLon
ExifReader. readLatLon(com.drew.metadata.exif.GpsDirectory dirGps)
Returns the geolocation of the given EXIF GPS directory.static LatLon
ExifReader. readLatLon(java.io.File filename)
Returns the geolocation of the given JPEG file.Methods in org.openstreetmap.josm.tools with parameters of type LatLon Modifier and Type Method Description java.lang.Boolean
DefaultGeoProperty. get(LatLon ll)
T
GeoProperty. get(LatLon ll)
Look up the property for a point.T
GeoPropertyIndex. get(LatLon ll)
Look up the property for a certain point.T
GeoPropertyIndex.GPLevel. get(LatLon ll)
private T
GeoPropertyIndex.GPLevel. getBounded(LatLon ll)
static java.util.List<TaginfoRegionalInstance>
Territories. getRegionalTaginfoUrls(LatLon ll)
Returns regional taginfo instances for the given location.static java.lang.String
OsmUrlToBounds. getURL(LatLon pos, int zoom)
Return OSM URL for given position and zoom.static boolean
Territories. isIso3166Code(java.lang.String code, LatLon ll)
Determine, if a point is inside a territory with the given ISO3166-1 or ISO3166-2 code.static boolean
RightAndLefthandTraffic. isRightHandTraffic(LatLon ll)
Check if there is right-hand traffic at a certain location.Method parameters in org.openstreetmap.josm.tools with type arguments of type LatLon Modifier and Type Method Description void
Mediawiki. searchGeoImages(Bounds bounds, java.util.function.BiConsumer<java.lang.String,LatLon> imageConsumer)
Searches geocoded images from Wikimedia Commons for the given bounding box.
-