- Timestamp:
- 2017-05-14T23:12:18+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/imagery/ReprojectionTile.java
r11972 r12148 65 65 * @return true if the tile should be reprojected again from the source image. 66 66 */ 67 public boolean needsUpdate(double currentScale) {67 public synchronized boolean needsUpdate(double currentScale) { 68 68 if (Utils.equalsEpsilon(nativeScale, currentScale)) 69 69 return false; -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/AbstractProjectionChoice.java
r11553 r12148 8 8 import org.openstreetmap.josm.data.projection.Projections; 9 9 10 /** 11 * Super class for ProjectionChoice implementations. 12 * <p> 13 * Handles common parameters <code>name</code>, <code>id</code> and <code>cacheDir</code>. 14 */ 10 15 public abstract class AbstractProjectionChoice implements ProjectionChoice { 11 16 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/CustomProjectionChoice.java
r10627 r12148 34 34 import org.openstreetmap.josm.tools.ImageProvider; 35 35 36 /** 37 * ProjectionChoice where a CRS can be defined using various parameters. 38 * <p> 39 * The configuration string mimics the syntax of the PROJ.4 project and should 40 * be mostly compatible. 41 * @see CustomProjection 42 */ 36 43 public class CustomProjectionChoice extends AbstractProjectionChoice implements SubPrefsOptions { 37 44 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/GaussKruegerProjectionChoice.java
r8510 r12148 9 9 import org.openstreetmap.josm.Main; 10 10 11 /** 12 * ProjectionChoice for Gauß-Krüger coordinate system (zones 2-5, EPSG:31466-31469). 13 * <p> 14 * @see <a link="https://de.wikipedia.org/wiki/Gauß-Krüger-Koordinatensystem">Gauß-Krüger</a> 15 */ 11 16 public class GaussKruegerProjectionChoice extends ListProjectionChoice { 12 17 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/LambertCC9ZonesProjectionChoice.java
r9992 r12148 15 15 import org.openstreetmap.josm.tools.ImageProvider; 16 16 17 /** 18 * ProjectionChoice for Lambert CC (9 zones, EPSG:3942-3950). 19 * <p> 20 * @see <a link="https://fr.wikipedia.org/wiki/Projection_conique_conforme_de_Lambert#Lambert_zone_CC">Lambert CC</a> 21 */ 17 22 public class LambertCC9ZonesProjectionChoice extends ListProjectionChoice { 18 23 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/LambertProjectionChoice.java
r9992 r12148 15 15 import org.openstreetmap.josm.tools.ImageProvider; 16 16 17 /** 18 * ProjectionChoice for 4 zone Lambert (1920, EPSG:27561-27564). 19 * <p> 20 * @see <a link="https://fr.wikipedia.org/wiki/Projection_conique_conforme_de_Lambert#Lambert_zone">Lambert zone</a> 21 */ 17 22 public class LambertProjectionChoice extends ListProjectionChoice { 18 23 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/PuwgProjectionChoice.java
r8510 r12148 9 9 import org.openstreetmap.josm.tools.Utils; 10 10 11 /** 12 * ProjectionChoice for PUWG 1992 (EPSG:2180) and PUWG 2000 for Poland (Zone 5-8, EPSG:2176-2179). 13 * <p> 14 * @see <a link="https://pl.wikipedia.org/wiki/Układ_współrzędnych_1992">PUWG 1992</a> 15 * @see <a link="https://pl.wikipedia.org/wiki/Układ_współrzędnych_2000">PUWG 2000</a> 16 */ 11 17 public class PuwgProjectionChoice extends ListProjectionChoice { 12 18 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/SwissGridProjectionChoice.java
r7937 r12148 13 13 import org.openstreetmap.josm.tools.GBC; 14 14 15 /** 16 * ProjectionChoice for Swiss grid, CH1903 / LV03 military coordinates (EPSG:21781). 17 * <p> 18 * This is the old system and <b>not</b> CH1903+ from 1995. 19 * @see <a link="https://en.wikipedia.org/wiki/Swiss_coordinate_system">swiss grid</a> 20 */ 15 21 public class SwissGridProjectionChoice extends SingleProjectionChoice { 16 22 … … 25 31 public JPanel getPreferencePanel(ActionListener listener) { 26 32 JPanel p = new JPanel(new GridBagLayout()); 27 p.add(new HtmlPanel(tr("<i>CH1903 / LV03 (without local corrections)</i>")), GBC.eol().fill(GBC.HORIZONTAL));33 p.add(new HtmlPanel(tr("<i>CH1903 / LV03</i>")), GBC.eol().fill(GBC.HORIZONTAL)); 28 34 p.add(Box.createVerticalGlue(), GBC.eol().fill(GBC.BOTH)); 29 35 return p; -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/UTMFranceDOMProjectionChoice.java
r8513 r12148 9 9 import org.openstreetmap.josm.Main; 10 10 11 /** 12 * ProjectionChoice for various French overseas territories (EPSG:2969,2970,2972,2973,2975). 13 * <p> 14 * @see <a link="https://fr.wikipedia.org/wiki/Système_de_coordonnées_(cartographie)#Dans_les_d.C3.A9partements_d.27Outre-mer">DOM</a> 15 */ 11 16 public class UTMFranceDOMProjectionChoice extends ListProjectionChoice { 12 17 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/UTMProjectionChoice.java
r11017 r12148 19 19 import org.openstreetmap.josm.tools.GBC; 20 20 21 /** 22 * ProjectionChoice for UTM. 23 * <p> 24 * @see <a link="https://en.wikipedia.org/wiki/Universal_Transverse_Mercator_coordinate_system">UTM</a> 25 */ 21 26 public class UTMProjectionChoice extends ListProjectionChoice { 22 27
Note:
See TracChangeset
for help on using the changeset viewer.