001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.data.projection.proj;
003
004/**
005 * A {@link Proj} implements this interface, if it derives the central meridian
006 * value from it's other input parameters.
007 *
008 * (Normally the central meridian is projection input parameter and the Proj
009 * class does not deal with it.)
010 *
011 * @see Proj
012 */
013public interface ICentralMeridianProvider {
014    /**
015     * Get the central meridian value as computed during initialization.
016     * @return the central meridian in degrees
017     */
018    double getCentralMeridian();
019}