org.opentripplanner.analyst.request.TileRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.analyst.request;
import org.geotools.geometry.Envelope2D;
public class TileRequest {
public final Envelope2D bbox; // includes CRS
public final int width;
public final int height;
public TileRequest(Envelope2D bbox, Integer width, Integer height) {
this.bbox = bbox;
this.width = width;
this.height = height;
}
public int hashCode() {
return bbox.hashCode() * 42677 + width + height * 1307;
}
public boolean equals(Object other) {
if (other instanceof TileRequest) {
TileRequest that = (TileRequest) other;
return this.bbox.equals(that.bbox) &&
this.width == that.width &&
this.height == that.height;
}
return false;
}
public String toString() {
return String.format("", bbox, width, height);
}
// implement iterable to iterate over pixels?
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy