Package mil.nga.giat.geowave.raster

Examples of mil.nga.giat.geowave.raster.Resolution


    final DataStatistics<?> stats = geowaveStatisticsStore.getDataStatistics(
        new ByteArrayId(
            coverageName),
        HistogramStatistics.STATS_ID);
    if ((stats != null) && (stats instanceof HistogramStatistics)) {
      return ((HistogramStatistics) stats).getHistogram(new Resolution(
          new double[] {
            resX,
            resY
          }));
    }
View Full Code Here


        configBinary,
        HistogramConfig.class);
    final int numEntries = buf.getInt();
    for (int i = 0; i < numEntries; i++) {
      final int keyLength = buf.getInt();
      Resolution key = null;
      if (keyLength > 0) {
        final byte[] keyBytes = new byte[keyLength];
        buf.get(keyBytes);
        key = PersistenceUtils.fromBinary(
            keyBytes,
View Full Code Here

    if (footprint == null) {
      return;
    }

    final GridCoverage originalCoverage;
    Resolution resolution = null;
    if (entry instanceof FitToIndexGridCoverage) {
      originalCoverage = ((FitToIndexGridCoverage) entry).getOriginalCoverage();
      resolution = ((FitToIndexGridCoverage) entry).getResolution();
    }
    else {
View Full Code Here

                    GeoWaveGTRasterFormat.DEFAULT_CRS,
                    insertionIdGeometry,
                    Interpolation.getInstance(Interpolation.INTERP_BICUBIC),
                    backgroundValuesPerBand),
                insertionId,
                new Resolution(
                    pixelRes),
                originalEnvelope,
                footprintWithinTileWorldGeom,
                footprintWithinTileScreenGeom);
          }
View Full Code Here

TOP

Related Classes of mil.nga.giat.geowave.raster.Resolution

Copyright © 2018 www.massapicom. 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.