org.geotools.styling.visitor.Measure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gt-main Show documentation
Show all versions of gt-main Show documentation
The main module contains the GeoTools public interfaces that are used by
other GeoTools modules (and GeoTools applications). Where possible we make
use industry standard terms as provided by OGC and ISO standards.
The formal GeoTools public api consists of gt-metadata, jts and the gt-main module.
The main module contains the default implementations that are available provided
to other GeoTools modules using our factory system. Factories are obtained from
an appropriate FactoryFinder, giving applications a chance configure the factory
used using the Factory Hints facilities.
FilterFactory ff = CommonFactoryFinder.getFilterFactory();
Expression expr = ff.add( expression1, expression2 );
If you find yourself using implementation specific classes chances are you doing it wrong:
Expression expr = new AddImpl( expression1, expressiom2 );
The newest version!
/*
* GeoTools - The Open Source Java GIS Toolkit
* http://geotools.org
*
* (C) 2013-2016, Open Source Geospatial Foundation (OSGeo)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
package org.geotools.styling.visitor;
import javax.measure.Unit;
import javax.measure.quantity.Length;
import org.geotools.factory.CommonFactoryFinder;
import org.geotools.filter.visitor.SimplifyingFilterVisitor;
import org.geotools.measure.Units;
import org.geotools.util.Converters;
import org.opengis.filter.Filter;
import org.opengis.filter.FilterFactory;
import org.opengis.filter.PropertyIsNull;
import org.opengis.filter.expression.Expression;
import org.opengis.filter.expression.Literal;
import org.opengis.filter.expression.NilExpression;
import si.uom.SI;
import systems.uom.common.USCustomary;
/**
* Helper class that parses a measure with eventual local unit of measure and helps the {@link
* RescalingMode} enumeration to perfom its scaling job
*
* @author Andrea Aime - GeoSolutions
*/
class Measure {
static final FilterFactory ff = CommonFactoryFinder.getFilterFactory();
Expression expression;
Double value;
Unit uom;
Unit defaultUnit;
public Measure(String value, Unit defaultUnit) {
setDefaultUnit(defaultUnit);
processLiteralExpression(value, defaultUnit);
}
public Measure(Expression unscaled, Unit defaultUnit) {
this.expression = unscaled;
setDefaultUnit(defaultUnit);
this.uom = defaultUnit;
if (unscaled instanceof Literal) {
processLiteralExpression((Literal) unscaled, defaultUnit);
} else {
// see if we can still optimize
PropertyIsNull test = ff.isNull(unscaled);
Filter simplified = (Filter) test.accept(new SimplifyingFilterVisitor(), null);
if (simplified == Filter.INCLUDE) {
// special case, the expression was nil to start with
this.expression = NilExpression.NIL;
this.uom = defaultUnit;
} else if (simplified instanceof PropertyIsNull) {
PropertyIsNull pin = (PropertyIsNull) simplified;
Expression se = pin.getExpression();
if (se instanceof Literal) {
processLiteralExpression((Literal) se, defaultUnit);
} else {
this.expression = se;
this.uom = defaultUnit;
}
}
}
}
private void setDefaultUnit(Unit defaultUnit) {
if (defaultUnit == null) {
this.defaultUnit = Units.PIXEL;
} else {
this.defaultUnit = defaultUnit;
}
}
private void processLiteralExpression(Literal literal, Unit defaultUnit) {
// check if we have a uom attached at the end of the expression
String value = literal.evaluate(null, String.class);
if (value == null) {
// let it go without doing anything, it may be a ConstantExpression.NULL
return;
}
processLiteralExpression(value, defaultUnit);
}
private void processLiteralExpression(String value, Unit defaultUnit) {
Unit uom = defaultUnit;
String unitless = value;
if (value.endsWith("px")) {
unitless = value.substring(0, value.length() - 2);
uom = Units.PIXEL;
} else if (value.endsWith("ft")) {
unitless = value.substring(0, value.length() - 2);
uom = USCustomary.FOOT;
} else if (value.endsWith("m")) {
unitless = value.substring(0, value.length() - 1);
uom = SI.METRE;
}
Double measure = Converters.convert(unitless, Double.class);
if (measure == null) {
throw new IllegalArgumentException(
"Invalid measure '"
+ value
+ "', was expecting a number, eventually followed by px, m or ft");
}
this.expression = ff.literal(value);
this.value = measure;
this.uom = uom;
}
/** Returns true if the uom is set and is not pixel */
boolean isRealWorldUnit() {
return uom != null && uom != Units.PIXEL;
}
/** Returns true if the uom is pixel within a symbolizer whose default unit is also pixel */
boolean isPixelInPixelDefault() {
return (uom == null || uom == defaultUnit)
&& (defaultUnit == null || defaultUnit == Units.PIXEL);
}
/**
* @return true, if the uom is a real world unit within a symbolizer whose default unit is
* pixel.
*/
public boolean isRealWorldUnitInPixelDefault() {
return isRealWorldUnit() && (defaultUnit == null || defaultUnit == Units.PIXEL);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy