⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 describedb.java

📁 openmap java写的开源数字地图程序. 用applet实现,可以像google map 那样放大缩小地图.
💻 JAVA
字号:
// **********************************************************************// // <copyright>// //  BBN Technologies//  10 Moulton Street//  Cambridge, MA 02138//  (617) 873-8000// //  Copyright (C) BBNT Solutions LLC. All rights reserved.// // </copyright>// **********************************************************************// // $Source: /cvs/distapps/openmap/src/openmap/com/bbn/openmap/layer/vpf/DescribeDB.java,v $// $RCSfile: DescribeDB.java,v $// $Revision: 1.2.2.2 $// $Date: 2004/12/08 01:45:31 $// $Author: dietrick $// // **********************************************************************package com.bbn.openmap.layer.vpf;import java.util.Enumeration;import java.util.Hashtable;import com.bbn.openmap.io.FormatException;/** * This class will print out some basic information about a VPF * database. *  * <pre> *  *  Usage: *  java com.bbn.openmap.layer.vpf.DescribeDB /path/to/vpf/database *   * </pre> *  * It will then print out a description of the coverages for the * database to the command line. (no GUI) */public class DescribeDB {    /**     * Prints a string to System.out with a newline     *      * @param s the string to print     */    public static void println(String s) {        System.out.println(s);    }    /**     * Prints two strings to System.out with a newline     *      * @param s1 the string to print     * @param s2 the string to print     */    public static void println(String s1, String s2) {        println(s1 + s2);    }    /**     * Prints two strings to System.out without a newline     *      * @param s1 the string to print     * @param s2 the string to print     */    public static void print(String s1, String s2) {        print(s1);        print(s2);    }    /**     * Prints a string to System.out without a newline     *      * @param s the string to print     */    public static void print(String s) {        System.out.print(s);    }    /**     * The main program. Takes path arguments, and prints the DB it     * finds     *      * @param args the paths to print     */    public static void main(String[] args) throws FormatException {        for (int argsi = 0; argsi < args.length; argsi++) {            String rootpath = args[argsi];            LibrarySelectionTable lst = new LibrarySelectionTable(rootpath);            println("Path to database: " + rootpath);            println("Database Name: " + lst.getDatabaseName());            println("Database Description: " + lst.getDatabaseDescription());            String[] libraries = lst.getLibraryNames();            print("Database Libraries: ");            for (int i = 0; i < libraries.length; i++) {                print(libraries[i], " ");            }            println("");            println("");            for (int i = 0; i < libraries.length; i++) {                String prefix = libraries[i] + ":";                printLibrary(prefix, lst.getCAT(libraries[i]));                println("");            }        }    }    /**     * Prints a VPF Library     *      * @param prefix lines get printed with this prefix     * @param cat the CoverageAttributeTable (Library) to print     */    public static void printLibrary(String prefix, CoverageAttributeTable cat) {        if (cat == null) {            println(prefix, "Library doesn't exist");            return;        }        println(prefix);        String[] coverages = cat.getCoverageNames();        println(prefix, "uses " + (cat.isTiledData() ? "tiled" : "untiled")                + " data");        print(prefix, "Coverage names:");        for (int i = 0; i < coverages.length; i++) {            print(coverages[i]);            print(" ");        }        println("");        for (int i = 0; i < coverages.length; i++) {            printCoverage(prefix + coverages[i] + ":", cat, coverages[i]);        }    }    /**     * Prints a VPF Coverage     *      * @param prefix lines get printed with this prefix     * @param covname the name of the coverage to print     * @param cat the CoverageAttributeTable to get the Coverage from     */    public static void printCoverage(String prefix, CoverageAttributeTable cat,                                     String covname) {        println(prefix, "Coverage Description: "                + cat.getCoverageDescription(covname));        println(prefix, "Coverage Topology Level: "                + cat.getCoverageTopologyLevel(covname));        CoverageTable ct = cat.getCoverageTable(covname);        print(prefix, "FeatureClassNames: ");        println("");        Hashtable info = ct.getFeatureTypeInfo();        for (Enumeration enumerator = info.elements(); enumerator.hasMoreElements();) {            CoverageTable.FeatureClassRec fcr = (CoverageTable.FeatureClassRec) enumerator.nextElement();            String tstring = "[unknown] ";            if (fcr.type == CoverageTable.TEXT_FEATURETYPE) {                tstring = "[text feature] ";            } else if (fcr.type == CoverageTable.EDGE_FEATURETYPE) {                tstring = "[edge feature] ";            } else if (fcr.type == CoverageTable.AREA_FEATURETYPE) {                tstring = "[area feature] ";            } else if (fcr.type == CoverageTable.UPOINT_FEATURETYPE) {                FeatureClassInfo fci = ct.getFeatureClassInfo(fcr.feature_class);                if (fci == null) {                    tstring = "[point feature] ";                } else if (fci.getFeatureType() == CoverageTable.EPOINT_FEATURETYPE) {                    tstring = "[entity point feature] ";                } else if (fci.getFeatureType() == CoverageTable.CPOINT_FEATURETYPE) {                    tstring = "[connected point feature] ";                } else {                    tstring = "[point feature] ";                }            } else if (fcr.type == CoverageTable.COMPLEX_FEATURETYPE) {                tstring = "[complex feature] ";            }            println(prefix, fcr.feature_class + ": " + tstring                    + fcr.description);        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -