Package org.locationtech.udig.catalog.rasterings

Examples of org.locationtech.udig.catalog.rasterings.AbstractRasterServiceInfo


    protected synchronized AbstractRasterServiceInfo createInfo(IProgressMonitor monitor) {
         if(monitor == null) monitor = new NullProgressMonitor();
         try {
             monitor.beginTask(Messages.GeoTiffServiceImpl_loading_task_title, 2);
             monitor.worked(1);
             return new AbstractRasterServiceInfo(this, "geotiff", "tiff", "tif");   //$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$
         }
         finally {
             monitor.done();
         }
    }
View Full Code Here


            monitor = new NullProgressMonitor();

        monitor.beginTask("ArcGrid loading", 2);
        try {
            monitor.worked(1);
            return new AbstractRasterServiceInfo(this, ".asc", ".grd"); //$NON-NLS-1$//$NON-NLS-2$
        } finally {
            monitor.done();
        }
    }
View Full Code Here

        if (monitor == null)
            monitor = new NullProgressMonitor();
        try {
            monitor.beginTask("GDAL ImageIO-Ext", 2);
            monitor.worked(1);
            return new AbstractRasterServiceInfo(this, ImageServiceExtension.TYPE, "gdal"); //$NON-NLS-1$ //$NON-NLS-2$
        } finally {
            monitor.done();
        }
    }
View Full Code Here

        if (monitor == null)
            monitor = new NullProgressMonitor();
        monitor.beginTask("world image", 2);
        try {
            monitor.worked(1);
            return new AbstractRasterServiceInfo(this,
                    "WorldImage", "world image", ".gif", ".jpg", ".jpeg", //$NON-NLS-1$ //$NON-NLS-2$//$NON-NLS-3$//$NON-NLS-4$ //$NON-NLS-5$
                    ".tif", ".tiff", ".png"); //$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$);
        } finally {
            monitor.done();
        }
View Full Code Here

TOP

Related Classes of org.locationtech.udig.catalog.rasterings.AbstractRasterServiceInfo

Copyright © 2018 www.massapicom. 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.