001// License: GPL. For details, see Readme.txt file. 002package org.openstreetmap.gui.jmapviewer.interfaces; 003 004/** 005 * Projected coordinates (east / north space). 006 * 007 * For most projections, one unit in projected space is roughly one meter, but 008 * can also be degrees or feet. 009 */ 010public interface IProjected { 011 /** 012 * Returns easting. 013 * @return easting 014 */ 015 double getEast(); 016 017 /** 018 * Returns northing. 019 * @return northing 020 */ 021 double getNorth(); 022}