All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.geolatte.geom.crs.LinearUnit Maven / Gradle / Ivy

Go to download

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;

/**
 * Created by Karel Maesen, Geovise BVBA on 28/11/14.
 */
public class LinearUnit extends Unit {
    /**
     * Creates an instance.
     *
     * @param crsId
     * @param name
     * @param conversionFactor
     */
    public LinearUnit(CrsId crsId, String name, double conversionFactor) {
        super(crsId, name, conversionFactor);
    }

    @Override
    public LinearUnit getFundamentalUnit() {
        return Unit.METER;
    }

    @Override
    public boolean isAngular() {
        return false;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy