package nl.tudelft.simulation.dsol.animation.gis; /** * MapUnits indicates the units for a map. *

* Copyright (c) 2020-2021 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See * for project information DSOL Manual. The DSOL * project is distributed under a three-clause BSD-style license, which can be found at * DSOL License. *

* @author Alexander Verbraeck */ public enum MapUnits { /** FEET constant. */ FEET, /** INCHES constant. */ INCHES, /** KILOMETERS constant. */ KILOMETERS, /** METERS constant. */ METERS, /** MILES constant. */ MILES, /** DECIMAL DEGREES constant. A decimal degree is 1/100 of the earth circumference. */ DECIMAL_DEGREES; }