source: josm/trunk/src/org/openstreetmap/josm/gui/layer/imagery/TileCoordinateConverter.java@ 12669

Last change on this file since 12669 was 12669, checked in by Don-vip, 7 years ago

see #15182 - remove dependence on JMapViewer for package data.coor (only useful for imagery)

  • Property svn:eol-style set to native
File size: 8.9 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.layer.imagery;
3
4import java.awt.Polygon;
5import java.awt.Rectangle;
6import java.awt.Shape;
7import java.awt.geom.Point2D;
8import java.awt.geom.Rectangle2D;
9import java.util.Objects;
10
11import org.openstreetmap.gui.jmapviewer.Tile;
12import org.openstreetmap.gui.jmapviewer.TileXY;
13import org.openstreetmap.gui.jmapviewer.interfaces.ICoordinate;
14import org.openstreetmap.gui.jmapviewer.interfaces.IProjected;
15import org.openstreetmap.gui.jmapviewer.interfaces.TileSource;
16import org.openstreetmap.josm.Main;
17import org.openstreetmap.josm.data.coor.EastNorth;
18import org.openstreetmap.josm.data.coor.LatLon;
19import org.openstreetmap.josm.data.imagery.CoordinateConversion;
20import org.openstreetmap.josm.data.projection.Projecting;
21import org.openstreetmap.josm.data.projection.ShiftedProjecting;
22import org.openstreetmap.josm.gui.MapView;
23import org.openstreetmap.josm.gui.MapViewState.MapViewPoint;
24
25/**
26 * This class handles tile coordinate management and computes their position in the map view.
27 * @author Michael Zangl
28 * @since 10651
29 */
30public class TileCoordinateConverter {
31 private final MapView mapView;
32 private final TileSourceDisplaySettings settings;
33 private final TileSource tileSource;
34
35 /**
36 * Create a new coordinate converter for the map view.
37 * @param mapView The map view.
38 * @param tileSource The tile source to use when converting coordinates.
39 * @param settings displacement settings.
40 * @throws NullPointerException if one argument is null
41 */
42 public TileCoordinateConverter(MapView mapView, TileSource tileSource, TileSourceDisplaySettings settings) {
43 this.mapView = Objects.requireNonNull(mapView, "mapView");
44 this.tileSource = Objects.requireNonNull(tileSource, "tileSource");
45 this.settings = Objects.requireNonNull(settings, "settings");
46 }
47
48 private MapViewPoint pos(ICoordinate ll) {
49 return mapView.getState().getPointFor(CoordinateConversion.coorToLL(ll)).add(settings.getDisplacement());
50 }
51
52 private MapViewPoint pos(IProjected p) {
53 return mapView.getState().getPointFor(CoordinateConversion.projToEn(p)).add(settings.getDisplacement());
54 }
55
56 /**
57 * Apply reverse shift to EastNorth coordinate.
58 *
59 * @param en EastNorth coordinate representing a pixel on screen
60 * @return IProjected coordinate as it would e.g. be sent to a WMS server
61 */
62 public IProjected shiftDisplayToServer(EastNorth en) {
63 return CoordinateConversion.enToProj(en.subtract(settings.getDisplacement()));
64 }
65
66 /**
67 * Gets the projecting instance to use to convert between latlon and eastnorth coordinates.
68 * @return The {@link Projecting} instance.
69 */
70 public Projecting getProjecting() {
71 return new ShiftedProjecting(mapView.getProjection(), settings.getDisplacement());
72 }
73
74 /**
75 * Gets the top left position of the tile inside the map view.
76 * @param x x tile index
77 * @param y y tile index
78 * @param zoom zoom level
79 * @return the position
80 */
81 public Point2D getPixelForTile(int x, int y, int zoom) {
82 ICoordinate coord = tileSource.tileXYToLatLon(x, y, zoom);
83 return pos(coord).getInView();
84 }
85
86 /**
87 * Gets the top left position of the tile inside the map view.
88 * @param tile The tile
89 * @return The position.
90 */
91 public Point2D getPixelForTile(Tile tile) {
92 return getPixelForTile(tile.getXtile(), tile.getYtile(), tile.getZoom());
93 }
94
95 /**
96 * Convert screen pixel coordinate to tile position at certain zoom level.
97 * @param sx x coordinate (screen pixel)
98 * @param sy y coordinate (screen pixel)
99 * @param zoom zoom level
100 * @return the tile
101 */
102 public TileXY getTileforPixel(int sx, int sy, int zoom) {
103 if (requiresReprojection()) {
104 LatLon ll = getProjecting().eastNorth2latlonClamped(mapView.getEastNorth(sx, sy));
105 return tileSource.latLonToTileXY(CoordinateConversion.llToCoor(ll), zoom);
106 } else {
107 IProjected p = shiftDisplayToServer(mapView.getEastNorth(sx, sy));
108 return tileSource.projectedToTileXY(p, zoom);
109 }
110 }
111
112 /**
113 * Gets the position of the tile inside the map view.
114 * @param tile The tile
115 * @return The positon as a rectangle in screen coordinates
116 */
117 public Rectangle2D getRectangleForTile(Tile tile) {
118 ICoordinate c1 = tile.getTileSource().tileXYToLatLon(tile);
119 ICoordinate c2 = tile.getTileSource().tileXYToLatLon(tile.getXtile() + 1, tile.getYtile() + 1, tile.getZoom());
120
121 return pos(c1).rectTo(pos(c2)).getInView();
122 }
123
124 /**
125 * Returns a shape that approximates the outline of the tile in screen coordinates.
126 *
127 * If the tile is rectangular, this will be the exact border of the tile.
128 * The tile may be more oddly shaped due to reprojection, then it is an approximation
129 * of the tile outline.
130 * @param tile the tile
131 * @return tile outline in screen coordinates
132 */
133 public Shape getTileShapeScreen(Tile tile) {
134 if (requiresReprojection()) {
135 Point2D p00 = this.getPixelForTile(tile.getXtile(), tile.getYtile(), tile.getZoom());
136 Point2D p10 = this.getPixelForTile(tile.getXtile() + 1, tile.getYtile(), tile.getZoom());
137 Point2D p11 = this.getPixelForTile(tile.getXtile() + 1, tile.getYtile() + 1, tile.getZoom());
138 Point2D p01 = this.getPixelForTile(tile.getXtile(), tile.getYtile() + 1, tile.getZoom());
139 return new Polygon(new int[] {
140 (int) Math.round(p00.getX()),
141 (int) Math.round(p01.getX()),
142 (int) Math.round(p11.getX()),
143 (int) Math.round(p10.getX())},
144 new int[] {
145 (int) Math.round(p00.getY()),
146 (int) Math.round(p01.getY()),
147 (int) Math.round(p11.getY()),
148 (int) Math.round(p10.getY())}, 4);
149 } else {
150 Point2D p00 = this.getPixelForTile(tile.getXtile(), tile.getYtile(), tile.getZoom());
151 Point2D p11 = this.getPixelForTile(tile.getXtile() + 1, tile.getYtile() + 1, tile.getZoom());
152 return new Rectangle((int) Math.round(p00.getX()), (int) Math.round(p00.getY()),
153 (int) Math.round(p11.getX()) - (int) Math.round(p00.getX()),
154 (int) Math.round(p11.getY()) - (int) Math.round(p00.getY()));
155 }
156 }
157
158 /**
159 * Returns average number of screen pixels per tile pixel for current mapview
160 * @param zoom zoom level
161 * @return average number of screen pixels per tile pixel
162 */
163 public double getScaleFactor(int zoom) {
164 TileXY t1, t2;
165 if (requiresReprojection()) {
166 LatLon topLeft = mapView.getLatLon(0, 0);
167 LatLon botRight = mapView.getLatLon(mapView.getWidth(), mapView.getHeight());
168 t1 = tileSource.latLonToTileXY(CoordinateConversion.llToCoor(topLeft), zoom);
169 t2 = tileSource.latLonToTileXY(CoordinateConversion.llToCoor(botRight), zoom);
170 } else {
171 EastNorth topLeftEN = mapView.getEastNorth(0, 0);
172 EastNorth botRightEN = mapView.getEastNorth(mapView.getWidth(), mapView.getHeight());
173 t1 = tileSource.projectedToTileXY(CoordinateConversion.enToProj(topLeftEN), zoom);
174 t2 = tileSource.projectedToTileXY(CoordinateConversion.enToProj(botRightEN), zoom);
175 }
176 int screenPixels = mapView.getWidth()*mapView.getHeight();
177 double tilePixels = Math.abs((t2.getY()-t1.getY())*(t2.getX()-t1.getX())*tileSource.getTileSize()*tileSource.getTileSize());
178 if (screenPixels == 0 || tilePixels == 0) return 1;
179 return screenPixels/tilePixels;
180 }
181
182 /**
183 * Get {@link TileAnchor} for a tile in screen pixel coordinates.
184 * @param tile the tile
185 * @return position of the tile in screen coordinates
186 */
187 public TileAnchor getScreenAnchorForTile(Tile tile) {
188 if (requiresReprojection()) {
189 ICoordinate c1 = tile.getTileSource().tileXYToLatLon(tile);
190 ICoordinate c2 = tile.getTileSource().tileXYToLatLon(tile.getXtile() + 1, tile.getYtile() + 1, tile.getZoom());
191 return new TileAnchor(pos(c1).getInView(), pos(c2).getInView());
192 } else {
193 IProjected p1 = tileSource.tileXYtoProjected(tile.getXtile(), tile.getYtile(), tile.getZoom());
194 IProjected p2 = tileSource.tileXYtoProjected(tile.getXtile() + 1, tile.getYtile() + 1, tile.getZoom());
195 return new TileAnchor(pos(p1).getInView(), pos(p2).getInView());
196 }
197 }
198
199 /**
200 * Return true if tiles need to be reprojected from server projection to display projection.
201 * @return true if tiles need to be reprojected from server projection to display projection
202 */
203 public boolean requiresReprojection() {
204 return !tileSource.getServerCRS().equals(Main.getProjection().toCode());
205 }
206}
Note: See TracBrowser for help on using the repository browser.