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

org.osmdroid.util.constants.GeoConstants Maven / Gradle / Ivy

There is a newer version: 6.1.20
Show newest version
// Created by plusminus on 17:41:55 - 16.10.2008
package org.osmdroid.util.constants;

public interface GeoConstants {
	// ===========================================================
	// Final Fields
	// ===========================================================

	public static final int RADIUS_EARTH_METERS = 6378137; // http://en.wikipedia.org/wiki/Earth_radius#Equatorial_radius
	public static final double METERS_PER_STATUTE_MILE = 1609.344; // http://en.wikipedia.org/wiki/Mile
	public static final double METERS_PER_NAUTICAL_MILE = 1852; // http://en.wikipedia.org/wiki/Nautical_mile
	public static final double FEET_PER_METER = 3.2808399; // http://en.wikipedia.org/wiki/Feet_%28unit_of_length%29
	public static final int EQUATORCIRCUMFENCE = (int) (2 * Math.PI * RADIUS_EARTH_METERS);

	// ===========================================================
	// Methods
	// ===========================================================
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy