Java Distance Calculate dist2Degrees(double dist, double radius)

Here you can find the source of dist2Degrees(double dist, double radius)

Description

Converts a distance in the units of the radius to degrees (360 degrees are in a circle).

License

Apache License

Declaration

public static double dist2Degrees(double dist, double radius) 

Method Source Code

//package com.java2s;
/*/*  w  w w  . j  a  v  a2s  .co  m*/
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    /**
     * Converts a distance in the units of the radius to degrees (360 degrees are in a circle). A spherical
     * earth model is assumed.
     */
    public static double dist2Degrees(double dist, double radius) {
        return Math.toDegrees(dist2Radians(dist, radius));
    }

    /**
     * Converts a distance in the units of the radius to radians (multiples of the radius). A spherical
     * earth model is assumed.
     */
    public static double dist2Radians(double dist, double radius) {
        return dist / radius;
    }
}

Related

  1. dist(float x1, float y1, float z1, float x2, float y2, float z2)
  2. dist(int i, int j, int width)
  3. dist(int p1, int p2)
  4. dist(int x1, int y1, int x2, int y2)
  5. dist14(double d12, double d23, double d34, double theta123, double theta234, double phi)
  6. dist2Radians(double dist, double radius)
  7. distAlongRaySquared(double px, double py, double qx, double qy, double rx, double ry)
  8. distance(double lat1, double lng1, double lat2, double lng2)
  9. distance(double lat1, double lng1, double lat2, double lng2)