org.nkjmlab.gis.datum.jprect.helper.AngleUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nkjmlab-utils-jpdatum Show documentation
Show all versions of nkjmlab-utils-jpdatum Show documentation
Utilities for Tokyo Datum, WGS84 and Japan Plane Rectangular
package org.nkjmlab.gis.datum.jprect.helper;
public class AngleUtil {
/**
* 十進法度表記(ddd.dddd)を経緯度(単位はラジアン)に変換
*
* @return ラジアン値
*/
public static double toRadian(double ddd_dddd) {
return ddd_dddd * Math.PI / 180.0;
}
}