Examples of ErrImageTile


Examples of com.bbn.openmap.dataAccess.image.ErrImageTile

            if (logger.isLoggable(Level.FINE)) {
                logger.info(errorMessage);
            }

            ret = new ErrImageTile("Image can't be positioned: "
                    + errorMessage);
            break;
        case 2:
        case 3:
            modelID = gtfFile.getGeographicType();
            if (logger.isLoggable(Level.FINE)) {
                logger.info("GeoModel type (" + modelID + "): "
                        + KeyRegistry.getKey(KeyRegistry.EPSG_GCS, modelID));
            }

            switch (modelID) {
            case 4326:
                ret = get4326(gtid, cache);
                break;
            default:
                errorMessage = "GeoModel type (" + modelID + ", "
                        + KeyRegistry.getKey(KeyRegistry.EPSG_GCS, modelID)
                        + ") not handled yet";
                logger.info(errorMessage);
                ret = new ErrImageTile("Image can't be positioned: "
                        + errorMessage);
            }
        }

        return ret;
View Full Code Here
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.