Examples of UnidataImageMetadata


Examples of org.geotools.imageio.unidata.UnidataImageMetadata

        // Setting band element metadata
        //
        // //
        final IIOMetadata metadata = hdf4Reader.getImageMetadata(imageIndex,imageMetadataFormat);
            if (metadata instanceof UnidataImageMetadata) {
                final UnidataImageMetadata commonMetadata = (UnidataImageMetadata) metadata;
                setBandFromCommonMetadata(band, commonMetadata);
                Node node = commonMetadata.getAsTree(imageMetadataFormat);
                node = node.getFirstChild();
                if (node != null) {
                 
                  //Handling units
                    final NamedNodeMap attributesMap = node.getAttributes();
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.