org.geolatte.geom.crs.AngularUnit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geolatte-geom Show documentation
Show all versions of geolatte-geom Show documentation
This geoLatte-geom library offers a geometry model that conforms to the OGC Simple Features for SQL
specification.
The newest version!
package org.geolatte.geom.crs;
/**
* Angular units
*
* Created by Karel Maesen, Geovise BVBA on 28/11/14.
*/
public class AngularUnit extends Unit {
/**
* Creates an instance.
*
* @param crsId
* @param name
* @param conversionFactor
*/
public AngularUnit(CrsId crsId, String name, double conversionFactor) {
super(crsId, name, conversionFactor);
}
@Override
public AngularUnit getFundamentalUnit() {
return Unit.RADIAN;
}
@Override
public boolean isAngular() {
return true;
}
}