All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.davidmoten.grumpy.wms.reduction.RectangleSamplerGrid Maven / Gradle / Ivy

package com.github.davidmoten.grumpy.wms.reduction;

import java.awt.Point;
import java.awt.Rectangle;
import java.util.List;

import com.github.davidmoten.grumpy.projection.Projector;

/**
 * Samples bounds by creating a grid starting at top left corner of
 * min(maxSizeKm,widthKm) by min(maxSizeKm, heightKm). Always includes bottom
 * and right edge points as well.
 */
public class RectangleSamplerGrid implements RectangleSampler {

    private final double maxCellSizeKm;

    public RectangleSamplerGrid(double maxCellSizeKm) {
        this.maxCellSizeKm = maxCellSizeKm;
    }

    @Override
    public List sample(Rectangle region, Projector projector) {

        return RectangleUtil.corners(region);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy