Uses of Class
org.optaweb.vehiclerouting.domain.Coordinates
-
Packages that use Coordinates Package Description org.optaweb.vehiclerouting.domain Domain model.org.optaweb.vehiclerouting.plugin.persistence Persistence infrastructure.org.optaweb.vehiclerouting.plugin.routing Provides information based on geographical data, for example fastest and shortest distances between locations.org.optaweb.vehiclerouting.plugin.websocket Network communication over WebSocket.org.optaweb.vehiclerouting.service.distance Distance matrix calculation.org.optaweb.vehiclerouting.service.location Use cases that involvelocations.org.optaweb.vehiclerouting.service.region Provides information about the application's working region.org.optaweb.vehiclerouting.service.route Handlesrouteupdates. -
-
Uses of Coordinates in org.optaweb.vehiclerouting.domain
Methods in org.optaweb.vehiclerouting.domain that return Coordinates Modifier and Type Method Description CoordinatesLocationData. coordinates()Location coordinates.static CoordinatesCoordinates. valueOf(double latitude, double longitude)Create coordinates from the given latitude in longitude.Methods in org.optaweb.vehiclerouting.domain that return types with arguments of type Coordinates Modifier and Type Method Description List<List<Coordinates>>RouteWithTrack. track()Vehicle's track that goes from vehicle's depot through all visits and returns to the depot.Constructors in org.optaweb.vehiclerouting.domain with parameters of type Coordinates Constructor Description Location(long id, Coordinates coordinates)Location(long id, Coordinates coordinates, String description)LocationData(Coordinates coordinates, String description)Create location data.Constructor parameters in org.optaweb.vehiclerouting.domain with type arguments of type Coordinates Constructor Description RouteWithTrack(Route route, List<List<Coordinates>> track)Create a route with track. -
Uses of Coordinates in org.optaweb.vehiclerouting.plugin.persistence
Methods in org.optaweb.vehiclerouting.plugin.persistence with parameters of type Coordinates Modifier and Type Method Description LocationLocationRepositoryImpl. createLocation(Coordinates coordinates, String description) -
Uses of Coordinates in org.optaweb.vehiclerouting.plugin.routing
Methods in org.optaweb.vehiclerouting.plugin.routing that return types with arguments of type Coordinates Modifier and Type Method Description List<Coordinates>AirDistanceRouter. getPath(Coordinates from, Coordinates to)List<Coordinates>GraphHopperRouter. getPath(Coordinates from, Coordinates to)Methods in org.optaweb.vehiclerouting.plugin.routing with parameters of type Coordinates Modifier and Type Method Description List<Coordinates>AirDistanceRouter. getPath(Coordinates from, Coordinates to)List<Coordinates>GraphHopperRouter. getPath(Coordinates from, Coordinates to)longAirDistanceRouter. travelTimeMillis(Coordinates from, Coordinates to)longGraphHopperRouter. travelTimeMillis(Coordinates from, Coordinates to) -
Uses of Coordinates in org.optaweb.vehiclerouting.plugin.websocket
Methods in org.optaweb.vehiclerouting.plugin.websocket with parameters of type Coordinates Modifier and Type Method Description (package private) static PortableCoordinatesPortableCoordinates. fromCoordinates(Coordinates coordinates) -
Uses of Coordinates in org.optaweb.vehiclerouting.service.distance
Methods in org.optaweb.vehiclerouting.service.distance with parameters of type Coordinates Modifier and Type Method Description longDistanceCalculator. travelTimeMillis(Coordinates from, Coordinates to)Calculate travel time in milliseconds. -
Uses of Coordinates in org.optaweb.vehiclerouting.service.location
Methods in org.optaweb.vehiclerouting.service.location with parameters of type Coordinates Modifier and Type Method Description LocationLocationRepository. createLocation(Coordinates coordinates, String description)Create a location with a unique ID.booleanLocationService. createLocation(Coordinates coordinates, String description) -
Uses of Coordinates in org.optaweb.vehiclerouting.service.region
Methods in org.optaweb.vehiclerouting.service.region that return Coordinates Modifier and Type Method Description CoordinatesBoundingBox. getNorthEast()North-east corner of the bounding box.CoordinatesBoundingBox. getSouthWest()South-west corner of the bounding box.Constructors in org.optaweb.vehiclerouting.service.region with parameters of type Coordinates Constructor Description BoundingBox(Coordinates southWest, Coordinates northEast)Create bounding box. -
Uses of Coordinates in org.optaweb.vehiclerouting.service.route
Methods in org.optaweb.vehiclerouting.service.route that return types with arguments of type Coordinates Modifier and Type Method Description List<Coordinates>Router. getPath(Coordinates from, Coordinates to)Get path between two locations.Methods in org.optaweb.vehiclerouting.service.route with parameters of type Coordinates Modifier and Type Method Description List<Coordinates>Router. getPath(Coordinates from, Coordinates to)Get path between two locations.
-