Examples of TiePoint


Examples of org.geotools.coverage.grid.io.imageio.geotiff.TiePoint

          + GeoTiffConstants.ARRAY_ELEM_INCREMENT];
      System.arraycopy(modelTiePoints, 0, tiePoints, 0, numTiePoints);
      modelTiePoints = tiePoints;
    }

    modelTiePoints[numTiePoints] = new TiePoint(i, j, k, x, y, z);
    numModelTiePoints++;
  }
View Full Code Here

Examples of org.geotools.coverage.grid.io.imageio.geotiff.TiePoint

        final double tiePoints[] = getTiffDoubles(node);
        if (tiePoints == null || tiePoints.length <= 0) {
            return null;
        }
        final int numTiePoints = tiePoints.length / 6;
        final TiePoint retVal[] = new TiePoint[numTiePoints];
        int initialIndex = 0;
        for (int i = 0; i < numTiePoints; i++) {
            initialIndex = i * 6;
            retVal[i] = new TiePoint(tiePoints[initialIndex], tiePoints[initialIndex + 1],
                    tiePoints[initialIndex + 2], tiePoints[initialIndex + 3],
                    tiePoints[initialIndex + 4], tiePoints[initialIndex + 5]);
        }
        return retVal;
   
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.