ISR Offload SiteOffload Site
Overview
An offload site in the context of the ISR model is a location where the collections accrued on a trip are delivered. It’s common that an offload site corresponds to a dump site or similar location.
Applicable models
- ISR
isr-z4foi53qznrv
Offload Site
Schema definition
message OffloadSite {
required string id = 1;
required Geocode location = 2;
required float fixedOffloadTime = 3 [default = 0.0];
required float offloadTimePerQuantity = 4 [default = 0.0];
}Fields
- id
- The unique identifier for this offload site, should be unique across the entire model.
- location
- The longitude / latitude location of the offload site, specified as a geocode.
- fixedOffloadTime
- The fixed time to perform the offload. This is often the gate time or fixed handling time at the offload site between reloads.
- offloadTimePerQuantity
- The offload time per quantity collected on the last trip. This is multiplied by the total number of collections on the vehicle to produce the variable time contribution at the offload site.
Examples
The following example shows an offload site called “Landfill” which has a fixed time of 30 minutes and variable time of 1 second per collection offloaded.
id: "Landfill"
location {
longitude: -6.28681087
latitude: 53.3416138
}
fixedOffloadTime: 1800
offloadTimePerQuantity: 1