Examples of AsciiGridsImageMetadata


Examples of it.geosolutions.imageio.plugins.arcgrid.AsciiGridsImageMetadata

      // setting
      // //

      // Setting the source for the image write operation
      mWriter.write(null, new IIOImage(source, null,
          new AsciiGridsImageMetadata(cols, rows, cellsizeX,cellsizeY, xl, yl,  true,grass, inNoData)), null);

      // writing crs info
      writeCRSInfo(crs);

      // /////////////////////////////////////////////////////////////////
View Full Code Here

Examples of it.geosolutions.imageio.plugins.arcgrid.AsciiGridsImageMetadata

                        throw new DataSourceException(
                                        "Unexpected error! Metadata are not of the expected class.");
                }
           
                // casting the metadata
                final AsciiGridsImageMetadata gridMetadata = (AsciiGridsImageMetadata) metadata;
               
    // getting metadata
    final Node root = gridMetadata
        .getAsTree("it.geosolutions.imageio.plugins.arcgrid.AsciiGridsImageMetadata_1.0");

    // getting Grid Properties
    Node child = root.getFirstChild();
    NamedNodeMap attributes = child.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.