Java Long Number Create convertLongitudeFromMercator( double mercatorLongitude)

Here you can find the source of convertLongitudeFromMercator( double mercatorLongitude)

Description

convert Longitude From Mercator

License

Open Source License

Declaration

public static double convertLongitudeFromMercator(
            double mercatorLongitude) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    private static double R_MAJOR = 6378137.0;

    public static double convertLongitudeFromMercator(
            double mercatorLongitude) {
        return Math.toDegrees(mercatorLongitude) / R_MAJOR;
    }/*  ww  w . j  av a  2s .  c om*/
}

Related

  1. convertLongAddressToBuf(long ipAddress)
  2. convertLongArray(long[] arr)
  3. convertLongArrayFromHex(char[] hex)
  4. convertLongArrayToDoubleArray(long[] values)
  5. convertLongFromBytes(byte[] bytes)
  6. convertLongPriceToString(long price)
  7. convertLongtoMultiByte(long val)
  8. fromLong(byte[] buffer, int pos, long l)
  9. fromLong(long value, byte[] arr, int offset)