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
/* This program is free software: you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation, either version 3 of
the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see . */
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