source: josm/trunk/src/org/openstreetmap/josm/data/projection/proj/ICentralMeridianProvider.java@ 10250

Last change on this file since 10250 was 9532, checked in by bastiK, 8 years ago

see #12186 - add Oblique Mercator projection
(imports pieces of code from the Geotools project)

  • Property svn:eol-style set to native
File size: 577 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.projection.proj;
3
4/**
5 * A {@link Proj} implements this interface, if it derives the central meridian
6 * value from it's other input parameters.
7 *
8 * (Normally the central meridian is projection input parameter and the Proj
9 * class does not deal with it.)
10 *
11 * @see Proj
12 */
13public interface ICentralMeridianProvider {
14 /**
15 * Get the central meridian value as computed during initialization.
16 * @return the central meridian in degrees
17 */
18 double getCentralMeridian();
19}
Note: See TracBrowser for help on using the repository browser.