Changeset 9545 in josm for trunk/src/org/openstreetmap/josm/data
- Timestamp:
- 2016-01-20T00:27:54+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Tag.java
r9536 r9545 141 141 * Unsupported. 142 142 * @param keys ignored 143 * @throws UnsupportedOperationException 143 * @throws UnsupportedOperationException always 144 144 */ 145 145 @Override … … 157 157 * @param key ignored 158 158 * @param value ignored 159 * @throws UnsupportedOperationException 159 * @throws UnsupportedOperationException always 160 160 */ 161 161 @Override … … 172 172 * Unsupported. 173 173 * @param key ignored 174 * @throws UnsupportedOperationException 174 * @throws UnsupportedOperationException always 175 175 */ 176 176 @Override … … 191 191 /** 192 192 * Unsupported. 193 * @throws UnsupportedOperationException 193 * @throws UnsupportedOperationException always 194 194 */ 195 195 @Override -
trunk/src/org/openstreetmap/josm/data/projection/proj/ObliqueMercator.java
r9535 r9545 26 26 * <p> 27 27 * There are two forms of the oblique mercator, differing in the origin of their grid coordinates. 28 * The Hotine Oblique Mercator (EPSG code 9812) has grid coordinates start at the intersection of 28 * The Hotine Oblique Mercator (EPSG code 9812) has grid coordinates start at the intersection of 29 29 * the central line and the equator of the aposphere. 30 30 * The Oblique Mercator (EPSG code 9815) is the same, except the grid coordinates begin at the 31 * central point (where the latitude of center and central line intersect). ESRI separates these 32 * two case by appending {@code "Natural_Origin"} (for the {@code "Hotine_Oblique_Mercator"}) and 31 * central point (where the latitude of center and central line intersect). ESRI separates these 32 * two case by appending {@code "Natural_Origin"} (for the {@code "Hotine_Oblique_Mercator"}) and 33 33 * {@code "Center"} (for the {@code "Oblique_Mercator"}) to the projection names. 34 34 * <p> … … 55 55 * Azimuth values of 0.0 and ±90.0 degrees are allowed (and used in Hungary 56 56 * and Switzerland), though these cases would usually use a Mercator or 57 * Transverse Mercator projection instead. Azimuth values >90 degrees cause57 * Transverse Mercator projection instead. Azimuth values > 90 degrees cause 58 58 * errors in the equations. 59 59 * <p>
Note:
See TracChangeset
for help on using the changeset viewer.