org.osgeo.proj4j.parser.ParameterUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proj4j Show documentation
Show all versions of proj4j Show documentation
Java port of Proj4 coordinate transformation library.
The newest version!
package org.osgeo.proj4j.parser;
import org.osgeo.proj4j.units.Angle;
import org.osgeo.proj4j.units.AngleFormat;
public class ParameterUtil {
public static final AngleFormat format = new AngleFormat( AngleFormat.ddmmssPattern, true );
/**
*
* @param s
* @return
* @deprecated
* @see Angle#parse(String)
*/
public static double parseAngle( String s ) {
return format.parse( s, null ).doubleValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy