All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.tudelft.simulation.dsol.animation.gis.MapUnits Maven / Gradle / Ivy

package nl.tudelft.simulation.dsol.animation.gis;

/**
 * MapUnits indicates the units for a map. If two coordinates are "1" apart, what does that "1" stand for? 
 * 

* Copyright (c) 2020-2024 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, /** DEGREES constant, e.g., for WGS84. */ DEGREES, /** DECIMAL DEGREES constant. A decimal degree is 1/100 of the earth circumference. */ DECIMAL_DEGREES; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy