
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 geotrellis-proj4_2.11 Show documentation
Show all versions of geotrellis-proj4_2.11 Show documentation
GeoTrellis is an open source geographic data processing engine for high performance applications.
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