このドキュメントでは、共有プールルートを作成し、正しいフィールドを設定して、履行する車両に割り当てる方法について説明します。ここでは、Fleet Engine を設定済み、車両を作成済みで、かつドライバー向けアプリ(必要に応じて一般ユーザー向けアプリ)を用意していることを前提としています。また、オンデマンドの賃走で利用可能なさまざまなシナリオについても十分に理解している必要があります。詳細については、次の関連ガイドをご覧ください。
- Fleet Engine を設定する
- 車両を作成する
- オンデマンド ルートの概要のルート シナリオ
旅行の作成の基本
このセクションでは、Fleet Engine でルートを作成するために必要なリクエストの詳細について説明します。gRPC と REST のいずれかを使用して作成リクエストを発行します。
ルートのフィールド
Fleet Engine でルートを作成するには、次のフィールドを使用します。単一または複数の目的地、連続したルート、共有プール ルートなど、さまざまな種類のルートに異なるフィールドを使用できます。このオプション フィールドは、ルートの作成時に指定できます。また、後でルートを更新する際に設定することもできます。
名前 | 必須 | 説明 |
---|---|---|
parent | はい | プロジェクト ID を含む文字列。この ID は、Fleet Engine の統合全体で使用される ID と同じで、同じサービス アカウントのロールを持ちます。 |
trip_id | はい | このルートを一意に識別するために作成する文字列。参照で示されているように、ルート ID には一定の制約があります。 |
trip_type | はい | 作成するルートタイプに応じて、TripType を次の値に設定します。
|
pickup_point | はい | ルートの出発地。 |
中間デスティネーション | はい | 複数の目的地を含むルートのみ: 運転手が乗車から降車までの間に訪問する中間目的地のリスト。 |
vehicle_waypoints | はい | 共有プールのルートのみ: このフィールドでは、複数のルートのウェイポイントをインターリーブできます。割り当てられた車両の残りのウェイポイントと、このルートの乗車と降車のウェイポイントがすべて含まれています。このフィールドを設定するには、 |
number_of_passengers | いいえ | 乗車する乗客の数。 |
dropoff_point | いいえ | ルートの目的地。 |
vehicle_id | いいえ | ルートに割り当てられた車両の ID。 |
例: 共有プーリング ルートを作成する
次のバックエンド統合サンプルは、ルートを作成して、共有乗合ルートとして車両に割り当てる方法を示しています。
// Vehicle with VEHICLE_ID ID is already created and it is assigned Trip A.
static final String PROJECT_ID = "my-rideshare-co-gcp-project";
static final String TRIP_ID = "shared-trip-A";
static final String VEHICLE_ID = "your-vehicle-id";
static final String TRIP_A_ID = "trip-a-id";
static final String TRIP_B_ID = "trip-b-id";
TripServiceBlockingStub tripService = TripService.newBlockingStub(channel);
String parent = "providers/" + PROJECT_ID;
LatLng tripBPickup =
LatLng.newBuilder().setLatitude(-12.12314).setLongitude(88.142123).build();
LatLng tripBDropoff =
LatLng.newBuilder().setLatitude(-14.12314).setLongitude(90.142123).build();
TerminalLocation tripBPickupTerminalLocation =
TerminalLocation.newBuilder().setPoint(tripBPickup).build();
TerminalLocation tripBDropoffTerminalLocation =
TerminalLocation.newBuilder().setPoint(tripBDropoff).build();
// TripA already exists and it's assigned to a vehicle with VEHICLE_ID ID.
Trip tripB = Trip.newBuilder()
.setTripType(TripType.SHARED)
.setVehicleId(VEHICLE_ID)
.setPickupPoint(tripBPickupTerminalLocation)
.setDropoffPoint(tripBDropoffTerminalLocation)
.addAllVehicleWaypoints(
// This is where you define the arrival order for unvisited waypoints.
// If you don't specify an order, then the Fleet Engine adds Trip B's
// waypoints to the end of Trip A's.
ImmutableList.of(
// Trip B's pickup point.
TripWaypoint.newBuilder()
.setLocation(tripBPickupTerminalLocation)
.setTripId(TRIP_B_ID)
.setWaypointType(WaypointType.PICKUP_WAYPOINT_TYPE)
.build(),
// Trip A's drop-off point.
TripWaypoint.newBuilder()
.setLocation(tripA.getDropoffPoint())
.setTripId(TRIP_A_ID)
.setWaypointType(WaypointType.DROP_OFF_WAYPOINT_TYPE)
.build(),
// Trip B's drop-off point.
TripWaypoint.newBuilder()
.setLocation(tripBDropoffTerminalLocation)
.setTripId(TRIP_B_ID)
.setWaypointType(WaypointType.DROP_OFF_WAYPOINT_TYPE)
.build()))
.build();
// Create Trip request
CreateTripRequest createTripRequest = CreateTripRequest.newBuilder()
.setParent(parent)
.setTripId(TRIP_B_ID)
.setTrip(tripB)
.build();
try {
// createdTrip.remainingWaypoints will contain shared-pool waypoints.
// [tripB.pickup, tripA.dropoff, tripB.dropoff]
Trip createdTrip = tripService.createTrip(createTripRequest);
} catch (StatusRuntimeException e) {
Status s = e.getStatus();
switch (s.getCode()) {
case ALREADY_EXISTS:
break;
case PERMISSION_DENIED:
break;
}
return;
}
共有の乗合便のルートを更新する
Fleet Engine で作成したルートは、車両に割り当てて、Fleet Engine がルートの到着予定時刻を計算して追跡できるようにする必要があります。これは、ルートの作成時または後でルートの更新時に行うことができます。
共有されているプールのルートの場合、ルートの車両用地点(Trip.vehicle_waypoints
)のコレクション(Trip.vehicle_waypoints
)にある未訪問の地点への順序を指定する必要があります。Fleet Engine はこのリストを使用して、共有プール内のすべてのルートの旅程を自動的に更新します。
たとえば、共有プールの 2 つのルート(Trip A と Trip B)について考えてみましょう。
- ルート A は降車場所に向かっています。
- そして、同じ車両に「ルート B」が追加されます。
ルート B の 1 つの UpdateTripRequest
で、vehicleId
を設定するとともに、Trip.vehicle_waypoints
を最適な地点の順序に設定します(B 乗車 → A 降車 → B B 降車)。
getVehicle()
を呼び出すと、remainingWaypoints
が返されます。
B 集荷 → A 配達 → B 配達 が含まれます。- ルート A の
getTrip()
またはonTripRemainingWaypointsUpdated
コールバックは、次の内容を含むremainingWaypoints
を返します。
B 乗車 → A 降車。 getTrip()
または ルート B のonTripRemainingWaypointsUpdated
コールバックは、次の要素を含むremainingWaypoints
を返します。
B 乗車 → A 降車 → B 降車。
例
次のバックエンド統合サンプルは、2 つの共有プール ルートの車両 ID とウェイポイントを使用してルートを更新する方法を示しています。
static final String PROJECT_ID = "my-rideshare-co-gcp-project";
static final String TRIP_A_ID = "share-trip-A";
static final String TRIP_B_ID = "share-trip-B";
static final String VEHICLE_ID = "Vehicle";
String tripName = "providers/" + PROJECT_ID + "/trips/" + TRIP_B_ID;
// Get Trip A and Trip B objects from either the Fleet Engine or storage.
Trip tripA = …;
Trip tripB = …;
TripServiceBlockingStub tripService = TripService.newBlockingStub(channel);
// The trip settings to update.
Trip trip = Trip.newBuilder()
.setVehicleId(VEHICLE_ID)
.addAllVehicleWaypoints(
// This is where you define the arrival order for unvisited waypoints.
// If you don't specify an order, then the Fleet Engine adds Trip B's
// waypoints to the end of Trip A's.
ImmutableList.of(
// Trip B's pickup point.
TripWaypoint.newBuilder()
.setLocation(tripB.getPickupPoint())
.setTripId(TRIP_B_ID)
.setWaypointType(WaypointType.PICKUP_WAYPOINT_TYPE)
.build(),
// Trip A's drop-off point.
TripWaypoint.newBuilder()
.setLocation(tripA.getDropoffPoint())
.setTripId(TRIP_A_ID)
.setWaypointType(WaypointType.DROP_OFF_WAYPOINT_TYPE)
.build(),
// Trip B's drop-off point.
TripWaypoint.newBuilder()
.setLocation(tripB.getDropoffPoint())
.setTripId(TRIP_B_ID)
.setWaypointType(WaypointType.DROP_OFF_WAYPOINT_TYPE)
.build()))
.build();
// The trip update request.
UpdateTripRequest updateTripRequest = UpdateTripRequest.newBuilder()
.setName(tripName)
.setTrip(trip)
.setUpdateMask(FieldMask.newBuilder()
.addPaths("vehicle_id")
.addPaths("vehicle_waypoints"))
.build();
// Error handling. If Fleet Engine has both a trip and vehicle with the IDs,
// and if the credentials validate, and if the given vehicle_waypoints list
// is valid, then the service updates the trip.
try {
Trip updatedTrip = tripService.updateTrip(updateTripRequest);
} catch (StatusRuntimeException e) {
Status s = e.getStatus();
switch (s.getCode()) {
case NOT_FOUND: // Either the trip or vehicle does not exist.
break;
case PERMISSION_DENIED:
break;
case INVALID_REQUEST: // vehicle_waypoints is invalid.
break;
}
return;
}