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

org.opengis.geometry.Precision Maven / Gradle / Ivy

/*
 *    GeoTools - The Open Source Java GIS Toolkit
 *    http://geotools.org
 *
 *    (C) 2011, Open Source Geospatial Foundation (OSGeo)
 *    (C) 2003-2005, Open Geospatial Consortium Inc.
 *
 *    All Rights Reserved. http://www.opengis.org/legal/
 */
package org.opengis.geometry;

/**
 * Specifies the precision model of the {@linkplain DirectPosition direct positions} in a
 * {@linkplain Geometry geometry}.
 *
 * 

A precision model defines a grid of allowable points. The {@link #round} method allows to * round a direct position to the nearest allowed point. The {@link #getType} method describes the * collapsing behavior of a direct position. * *

{@code Precision} instances can be sorted by their {@linkplain #getScale scale}. * * @author Jody Garnett * @since GeoAPI 2.1 */ public interface Precision extends Comparable { /** * Compares this precision model with the specified one. Returns -1 is this model is less * accurate than the other one, +1 if it is more accurate, or 0 if they have the same accuracy. * * @param other Other precision model to compare against. * @return a negative integer, zero, or a positive integer as this object is less than, equal * to, or greater than the other. */ int compareTo(Precision other); /** * Multiplying factor used to obtain a precise ordinate. * *

Multiply by this value and then divide by this value to round correctly: * *

* *
     * double scale = pm.getScale();
     * return Math.round(value * scale) / scale;
     * 
* *
* * So to round to {@code 3} significant digits we would have a scale of {@code 1000}. Tip: the * number of significant digits can be computed as below: * *
* *
     * int significantDigits = (int) Math.ceil(Math.log10(pm.getScale()));
     * 
* *
* * @return Multiplying factor used before rounding. */ double getScale(); /** Returns the type of this precision model. */ PrecisionType getType(); /** * Rounds a direct position to this precision model in place. * *

It is likely that a {@code Precision} instance will keep different rounding rules for * different axis (example x & y ordinates may be handled differently then * height), by always rounding a direct position as a whole we will enable this functionality. */ void round(DirectPosition position); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy