Package org.geotools.renderer.lite

Source Code of org.geotools.renderer.lite.LabelObstacleTest

/*
*    GeoTools - The Open Source Java GIS Toolkit
*    http://geotools.org
*
*    (C) 2003-2011, 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.renderer.lite;

import static java.awt.RenderingHints.*;
import static org.junit.Assert.*;

import java.awt.RenderingHints;
import java.awt.image.BufferedImage;
import java.awt.image.RenderedImage;
import java.io.BufferedReader;
import java.io.File;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;

import javax.media.jai.operator.BandCombineDescriptor;
import javax.media.jai.operator.BinarizeDescriptor;
import javax.media.jai.operator.ExtremaDescriptor;
import javax.media.jai.operator.OrDescriptor;

import org.geotools.data.FeatureSource;
import org.geotools.data.FeatureWriter;
import org.geotools.data.Transaction;
import org.geotools.data.memory.MemoryDataStore;
import org.geotools.factory.CommonFactoryFinder;
import org.geotools.feature.simple.SimpleFeatureTypeBuilder;
import org.geotools.geometry.jts.ReferencedEnvelope;
import org.geotools.image.test.ImageAssert;
import org.geotools.map.DefaultMapContext;
import org.geotools.referencing.CRS;
import org.geotools.styling.SLDParser;
import org.geotools.styling.Style;
import org.junit.BeforeClass;
import org.junit.Test;
import org.opengis.feature.simple.SimpleFeature;
import org.opengis.feature.type.AttributeDescriptor;
import org.opengis.feature.type.GeometryDescriptor;

import com.vividsolutions.jts.geom.LineString;
import com.vividsolutions.jts.geom.MultiLineString;
import com.vividsolutions.jts.geom.Point;
import com.vividsolutions.jts.geom.Polygon;
import com.vividsolutions.jts.io.WKTReader;

/**
*
*
* @source $URL$
*/
public class LabelObstacleTest {

    static MemoryDataStore mem;

    @BeforeClass
    public static void setUpData() throws Exception {
        mem = new MemoryDataStore();

        SimpleFeatureTypeBuilder tb = new SimpleFeatureTypeBuilder();

        tb.setName("roads");
        tb.setCRS(CRS.decode("EPSG:4326", true));
        tb.add("geom", LineString.class);
        tb.add("name", String.class);
        mem.createSchema(tb.buildFeatureType());

        tb.setName("points");
        tb.add("geom", Point.class);
        mem.createSchema(tb.buildFeatureType());

        tb.setName("lines");
        tb.add("geom", LineString.class);
        mem.createSchema(tb.buildFeatureType());

        tb.setName("polys");
        tb.add("geom", Polygon.class);
        mem.createSchema(tb.buildFeatureType());

        tb.setName("lines2");
        tb.add("geom", MultiLineString.class);
        tb.add("name", String.class);
        mem.createSchema(tb.buildFeatureType());
       
        loadData(mem, "roads");
        loadData(mem, "points");
        loadData(mem, "lines");
        loadData(mem, "polys");
        loadData(mem, "lines2");
    }
   
    static void loadData(MemoryDataStore mem, String name) throws Exception {
        WKTReader wkt = new WKTReader();

        FeatureWriter w = mem.getFeatureWriter(name, Transaction.AUTO_COMMIT);
        BufferedReader r = new BufferedReader(
                new InputStreamReader(
                        LabelObstacleTest.class.getResourceAsStream("test-data/obstacles/" + name
                                + ".txt")));
        String line = null;
        while ((line = r.readLine()) != null) {
            String[] values = line.split(";");
            SimpleFeature f = (SimpleFeature) w.next();
            for (int i = 0; i < f.getAttributeCount(); i++) {
                AttributeDescriptor ad = f.getType().getDescriptor(i);
                if (ad instanceof GeometryDescriptor) {
                    f.setAttribute(i, wkt.read(values[i]));
                } else {
                    f.setAttribute(i, values[i]);
                }
            }

            w.write();
        }

        r.close();
    }

    Style style(String name) throws Exception {
        // return RendererBaseTest.loadStyle(this, "test-data/obstacles/" + name + ".sld");
        SLDParser p = new SLDParser(CommonFactoryFinder.getStyleFactory(null), getClass()
                .getResourceAsStream("test-data/obstacles/" + name + ".sld"));
        return p.readXML()[0];
    }

    Style[] styles(String... names) throws Exception {
        List<Style> styles = new ArrayList();
        for (String name : names) {
            styles.add(name != null ? style(name) : null);
        }
        return styles.toArray(new Style[styles.size()]);
    }

    FeatureSource[] sources(String... names) throws Exception {
        List<FeatureSource> sources = new ArrayList();
        for (String name : names) {
            sources.add(mem.getFeatureSource(name));
        }
        return sources.toArray(new FeatureSource[sources.size()]);
    }

    BufferedImage render(FeatureSource[] sources, Style[] styles) throws Exception {
        DefaultMapContext map = new DefaultMapContext();

        ReferencedEnvelope env = sources[0].getBounds();
        for (int i = 1; i < sources.length; i++) {
            env.expandToInclude(sources[i].getBounds());
        }
        map.setAreaOfInterest(env);
        map.setCoordinateReferenceSystem(env.getCoordinateReferenceSystem());
        for (int i = 0; i < sources.length; i++) {
            if(styles[i] != null) {
                map.addLayer(sources[i], styles[i]);
            }
        }

        try {
            StreamingRenderer r = new StreamingRenderer();
            r.setJava2DHints(new RenderingHints(KEY_ANTIALIASING, VALUE_ANTIALIAS_ON));
            r.setContext(map);
   
            return RendererBaseTest.showRender("testPointLabeling", r, 5000, env);
        } finally {
            map.dispose();
        }
    }

    File file(String name) {
        return new File("src/test/resources/org/geotools/renderer/lite/test-data/obstacles/" + name
                + ".png");
    }
   
    @Test
    public void testExternalGraphicNoObstacle() throws Exception {
        BufferedImage labels = render(sources("roads", "points"), styles("label", "grinNoObstacle"));
        BufferedImage points = render(sources("roads", "points"), styles(null, "grinNoObstacle"));
       
        RenderedImage extrema = intersectionExtrema(labels, points);
       
        // we should have intersections, thus min should be 1
        double[] minimum = (double[]) extrema.getProperty("minimum");
        assertEquals(0.0, minimum[0], 1.0);
    }

    @Test
    public void testExternalGraphic() throws Exception {
        BufferedImage labels = render(sources("roads", "points"), styles("label", "grin"));
        BufferedImage points = render(sources("roads", "points"), styles(null, "grin"));
       
        checkNoIntersection(labels, points);
    }

    @Test
    public void testMark() throws Exception {
        BufferedImage labels = render(sources("roads", "points"), styles("label", "mark"));
        BufferedImage marks = render(sources("roads", "points"), styles(null, "mark"));
       
        checkNoIntersection(labels, marks);
    }

    @Test
    public void testPolygon() throws Exception {
        BufferedImage labels = render(sources("roads", "polys"), styles("label", "poly"));
        BufferedImage polys = render(sources("roads", "polys"), styles(null, "poly"));
               
        checkNoIntersection(labels, polys);
    }

    @Test
    public void testLine() throws Exception {
        BufferedImage labels = render(sources("roads", "lines"), styles("label", "line"));
        BufferedImage roads = render(sources("roads", "lines"), styles(null, "line"));
       
        checkNoIntersection(labels, roads);
    }
   
    @Test
    public void testLineWithGraphicStroke() throws Exception {
        BufferedImage img = render(sources("lines2"), styles("hatch"));
        // differences between JDKs account to up to 1300 pixels being different...
        ImageAssert.assertEquals(file("hatch"), img, 10);
    }
   
    /**
     * Checks the label and the obstacle image do not overlap
     * @param labels
     * @param obstacle
     */
    private void checkNoIntersection(BufferedImage labels, BufferedImage obstacle) {
        RenderedImage extrema = intersectionExtrema(labels, obstacle);
        // if we have any intersection the result will be 0
        double[] minimum = (double[]) extrema.getProperty("minimum");
        assertEquals(1.0, minimum[0], 0.0);
    }
   
    /**
     * Computes the overlap between labels and obstacles, returning the extrema of
     * the binary overlap
     * @param labels
     * @param obstacles
     * @return
     */
    RenderedImage intersectionExtrema(BufferedImage labels, BufferedImage obstacles) {
        // from 4 bands to 1 band averaging the pixel values
        RenderedImage labelsCombine = BandCombineDescriptor.create(labels, new double[][] { {
                1 / 3.0, 1 / 3.0, 1 / 3.0, 0, 0 } }, null);
        RenderedImage pointsCombine = BandCombineDescriptor.create(obstacles, new double[][] { {
                1 / 3.0, 1 / 3.0, 1 / 3.0, 0, 0 } }, null);
        // get only pitch black
        RenderedImage binaryLabel = BinarizeDescriptor.create(labelsCombine, 1.0, null);
        // get anything that is not fully white
        RenderedImage binaryObstacles = BinarizeDescriptor.create(pointsCombine, 250.0, null);
        // combine the two, only pixels that are both black in both images will be black (0)
        RenderedImage and = OrDescriptor.create(binaryObstacles, binaryLabel, null);
        // get the extrema
        RenderedImage extrema = ExtremaDescriptor.create(and, null, 1, 1, false, 1, null);
        return extrema;
    }
}
TOP

Related Classes of org.geotools.renderer.lite.LabelObstacleTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.