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

src.gov.nasa.worldwindx.examples.lineofsight.PolygonIntersection Maven / Gradle / Ivy

Go to download

World Wind is a collection of components that interactively display 3D geographic information within Java applications or applets.

There is a newer version: 2.0.0-986
Show newest version
/*
 * Copyright (C) 2012 United States Government as represented by the Administrator of the
 * National Aeronautics and Space Administration.
 * All Rights Reserved.
 */

package gov.nasa.worldwindx.examples.lineofsight;

import gov.nasa.worldwind.*;
import gov.nasa.worldwind.avlist.AVKey;
import gov.nasa.worldwindx.examples.ApplicationTemplate;
import gov.nasa.worldwind.geom.*;
import gov.nasa.worldwind.layers.RenderableLayer;
import gov.nasa.worldwind.render.*;
import gov.nasa.worldwind.terrain.*;

import javax.swing.Timer;
import java.awt.event.*;
import java.util.*;

/**
 * Shows how to determine and display the intersection of a line with an {@link Polygon}.
 * @author tag
 * @version $Id: PolygonIntersection.java 1171 2013-02-11 21:45:02Z dcollins $
 */
public class PolygonIntersection extends ApplicationTemplate
{
    public static class AppFrame extends ApplicationTemplate.AppFrame
    {
        protected HighResolutionTerrain terrain; // Use this class to test against high-resolution terrain
        protected Polygon polygon; // the polygon to intersect
        protected RenderableLayer layer; // layer to display the polygon and the intersection

        public AppFrame()
        {
            super(true, true, false);

            // Create the polygon boundary and then the polygon.
            List positions = new ArrayList();
            positions.add(Position.fromDegrees(40.4, -120.6, 10e3));
            positions.add(Position.fromDegrees(40.4, -120.4, 10e3));
            positions.add(Position.fromDegrees(40.6, -120.4, 10e3));
            positions.add(Position.fromDegrees(40.6, -120.6, 10e3));

            this.polygon = new Polygon(positions);
            this.polygon.setAltitudeMode(WorldWind.RELATIVE_TO_GROUND);
            this.polygon.setReferencePosition(Position.fromDegrees(40.4, -120.6, 0));

            // Set some of the shape's attributes
            ShapeAttributes attrs = new BasicShapeAttributes();
            attrs.setInteriorMaterial(Material.LIGHT_GRAY);
            this.polygon.setAttributes(attrs);

            // Add the shape to the display layer.
            this.layer = new RenderableLayer();
            this.layer.addRenderable(this.polygon);
            insertBeforeCompass(getWwd(), this.layer);

            // Create high-resolution terrain for the intersection calculations
            this.terrain = new HighResolutionTerrain(this.getWwd().getModel().getGlobe(), 20d);

            // Perform the intersection test within a timer callback. Intersection calculations would normally be done
            // on a separate, non-EDT thread, however.
            Timer timer = new Timer(3000, new ActionListener()
            {
                public void actionPerformed(ActionEvent actionEvent)
                {
                    Position pA = Position.fromDegrees(40.5, -120.5, 0);
                    Position pB = new Position(pA, 20e3);
                    drawLine(pA,  pB);
                    performIntersection();
                }
            });
            timer.start();
        }

        protected void performIntersection()
        {
            try
            {
                // Create the line to intersect with the shape.
                Position referencePosition = Position.fromDegrees(40.5, -120.5, 0);
                Vec4 referencePoint = terrain.getSurfacePoint(referencePosition);

                Position targetPosition = new Position(referencePosition, 20e3);
                Vec4 targetPoint = terrain.getSurfacePoint(targetPosition);
                Line line = new Line(targetPoint, referencePoint.subtract3(targetPoint));

                // Perform the intersection.
                List intersections = this.polygon.intersect(line, this.terrain);

                // Get and display the intersections.
                if (intersections != null)
                {
                    for (Intersection intersection : intersections)
                    {
                        drawIntersection(intersection);
                    }
                }
            }
            catch (InterruptedException e)
            {
                e.printStackTrace();
            }
        }

        protected void drawLine(Position pA, Position pB)
        {
            // Create and display the intersection line.
            Path path = new Path(pA, pB);
            ShapeAttributes pathAttributes = new BasicShapeAttributes();
            path.setAltitudeMode(WorldWind.RELATIVE_TO_GROUND);
            pathAttributes.setOutlineMaterial(Material.GREEN);
            pathAttributes.setOutlineOpacity(0.6);
            pathAttributes.setDrawOutline(true);
            pathAttributes.setDrawInterior(false);
            path.setAttributes(pathAttributes);
            this.layer.addRenderable(path);

            this.layerPanel.update(this.getWwd());

            this.getWwd().redraw();
        }

        protected void drawIntersection(Intersection intersection)
        {
            // Display a point at the intersection.
            PointPlacemark iPoint = new PointPlacemark(intersection.getIntersectionPosition());
            iPoint.setAltitudeMode(WorldWind.RELATIVE_TO_GROUND);
            PointPlacemarkAttributes pointAttributes = new PointPlacemarkAttributes();
            pointAttributes.setLineMaterial(Material.CYAN);
            pointAttributes.setScale(8d);
            pointAttributes.setUsePointAsDefaultImage(true);
            iPoint.setAttributes(pointAttributes);
            this.layer.addRenderable(iPoint);

            this.getWwd().redraw();
        }
    }

    public static void main(String[] args)
    {
        // Configure the initial view parameters so that the balloons are immediately visible.
        Configuration.setValue(AVKey.INITIAL_LATITUDE, 40.5);
        Configuration.setValue(AVKey.INITIAL_LONGITUDE, -120.4);
        Configuration.setValue(AVKey.INITIAL_ALTITUDE, 125e3);
        Configuration.setValue(AVKey.INITIAL_HEADING, 27);
        Configuration.setValue(AVKey.INITIAL_PITCH, 30);

        ApplicationTemplate.start("World Wind Polygon Intersection", AppFrame.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy