Package org.locationtech.udig.bookmarks.internal.command

Source Code of org.locationtech.udig.bookmarks.internal.command.GotoBookmarkCommand

/* uDig - User Friendly Desktop Internet GIS client
* http://udig.refractions.net
* (C) 2006, Refractions Research Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Refractions BSD
* License v1.0 (http://udig.refractions.net/files/bsd3-v10.html).
*/
package org.locationtech.udig.bookmarks.internal.command;

import org.locationtech.udig.project.IMap;
import org.locationtech.udig.project.command.Command;
import org.locationtech.udig.project.internal.ProjectPlugin;
import org.locationtech.udig.project.internal.command.navigation.AbstractNavCommand;
import org.locationtech.udig.project.render.IViewportModel;
import org.locationtech.udig.project.ui.ApplicationGIS;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.emf.common.util.URI;
import org.geotools.geometry.jts.JTS;
import org.geotools.geometry.jts.ReferencedEnvelope;
import org.geotools.referencing.CRS;
import org.opengis.referencing.crs.CoordinateReferenceSystem;
import org.opengis.referencing.operation.MathTransform;
import org.locationtech.udig.bookmarks.Bookmark;

import com.vividsolutions.jts.geom.Envelope;

/**
* @author cole.markham
* @since 1.0.0
*/
public class GotoBookmarkCommand extends AbstractNavCommand {
    private Bookmark target;
    /**
     * @param target
     */
    public GotoBookmarkCommand( Bookmark target ) {
        this.target = target;
    }

     @Override
    protected void runImpl( IProgressMonitor monitor ) throws Exception {
         URI mapID = target.getMap().getMapID();
         IMap map = (IMap) (ProjectPlugin.getPlugin().getProjectRegistry().eResource()
                 .getResourceSet().getResource(mapID, true).getContents().get(0));
         ApplicationGIS.openMap(map);
         IViewportModel v = map.getViewportModel();
        
         final ReferencedEnvelope bookmarkEnvelope = target.getEnvelope();
         final Envelope viewportBounds = v.getBounds();

         final CoordinateReferenceSystem viewportCrs = v.getCRS();
         final CoordinateReferenceSystem bookmarkCrs = bookmarkEnvelope.getCoordinateReferenceSystem();

         final ReferencedEnvelope bookmarkedEnvelopeInVieportCRS;
        
         if(bookmarkCrs.equals(viewportCrs)){
           bookmarkedEnvelopeInVieportCRS = bookmarkEnvelope;
         }else{
           //reproject bookmark to viewport CRS
           boolean lenient = true;
           MathTransform transform = CRS.findMathTransform(bookmarkCrs, viewportCrs, lenient);
           Envelope xformedEnvelope = JTS.transform(bookmarkEnvelope, transform);
           bookmarkedEnvelopeInVieportCRS = new ReferencedEnvelope(xformedEnvelope, viewportCrs);
         }

         if (!bookmarkedEnvelopeInVieportCRS.equals(viewportBounds)) {
             model.zoomToBox(bookmarkedEnvelopeInVieportCRS);
         }
    }

    public Command copy() {
        return null;
    }

    public String getName() {
        return null;
    }

}
TOP

Related Classes of org.locationtech.udig.bookmarks.internal.command.GotoBookmarkCommand

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.