source: josm/trunk/src/org/openstreetmap/josm/data/projection/proj/IPolar.java@ 9545

Last change on this file since 9545 was 9419, checked in by bastiK, 8 years ago

add Albers Equal Area Projection and Polar Stereographic Projection (see #12186)
(imports pieces of code from the Geotools project)

  • Property svn:eol-style set to native
File size: 551 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.projection.proj;
3
4/**
5 * If a Proj class implements this interface, it indicates that the projection
6 * can be used to view one or both of the poles.
7 */
8public interface IPolar {
9 /**
10 * Return true if north / south pole can be mapped by this projection.
11 * @param south if true, asks for the south pole, otherwise for the north pole
12 * @return true if north / south pole can be mapped by this projection
13 */
14 boolean hasPole(boolean south);
15}
Note: See TracBrowser for help on using the repository browser.