com.conveyal.gtfs.util.json.Rectangle2DMixIn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gtfs-lib Show documentation
Show all versions of gtfs-lib Show documentation
A library to load and index GTFS feeds of arbitrary size using disk-backed storage
package com.conveyal.gtfs.util.json;
import com.fasterxml.jackson.annotation.JsonFilter;
import com.fasterxml.jackson.annotation.JsonProperty;
// ignore all by default
@JsonFilter("bbox")
public abstract class Rectangle2DMixIn {
// stored as lon, lat
@JsonProperty("west") public abstract double getMinX();
@JsonProperty("east") public abstract double getMaxX();
@JsonProperty("north") public abstract double getMaxY();
@JsonProperty("south") public abstract double getMinY();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy