Java Distance Calculate dist2Radians(double dist, double radius)

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

Description

Converts a distance in the units of radius (e.g.

License

Apache License

Declaration

public static double dist2Radians(double dist, double radius) 

Method Source Code

//package com.java2s;
/*//from   w w w  . jav  a 2 s. c  o  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 <code>radius</code> (e.g. kilometers)
     * 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(int i, int j, int width)
  2. dist(int p1, int p2)
  3. dist(int x1, int y1, int x2, int y2)
  4. dist14(double d12, double d23, double d34, double theta123, double theta234, double phi)
  5. dist2Degrees(double dist, double radius)
  6. distAlongRaySquared(double px, double py, double qx, double qy, double rx, double ry)
  7. distance(double lat1, double lng1, double lat2, double lng2)
  8. distance(double lat1, double lng1, double lat2, double lng2)
  9. distance(double lat1, double lon1, double lat2, double lon2)