Examples of SkycatTable


Examples of jsky.catalog.skycat.SkycatTable

        SkycatConfigEntry configEntry = new SkycatConfigEntry(properties);
        FieldDesc[] fields = PickObjectStatistics.getFields();

        Vector<Vector<Object>> dataRows = new Vector<Vector<Object>>();
        dataRows.add(stats.getRow());
        SkycatTable table = new SkycatTable(configEntry, dataRows, fields);
        table.setProperties(properties);
        return table;
    }
View Full Code Here

Examples of jsky.catalog.skycat.SkycatTable

        }

        if ("file".equals(protocol)
                && (filename.endsWith(".table") || filename.endsWith(".scat") || filename.endsWith(".cat"))) {
            // skycat local catalog file?
            SkycatTable table = new SkycatTable(filename);
            return makeCatalogComponent(table.getCatalog());
        }

        // XXX some servers return text/html even for FITS images
        if (contentType.startsWith("text/")) {
            return super.makeURLComponent(url, contentType, format);
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.