
org.opentripplanner.service.worldenvelope.WorldEnvelopeService 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
The newest version!
package org.opentripplanner.service.worldenvelope;
import java.util.Optional;
import org.opentripplanner.service.worldenvelope.model.WorldEnvelope;
/**
* This service provide information about the geographical bounding-box and center coordinates
* for OTP. The information is computed once, based on static data and in the {@link WorldEnvelope}.
*/
public interface WorldEnvelopeService {
/**
* The envelope hold all information about the OTP street and transit geographical
* bounding-box and center coordinates(two options).
*
* If no envelope is created, this return empty.
*/
Optional envelope();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy