station_crowd_forecast
Predict MRT/LRT station crowdedness levels in 30-minute intervals for specific train lines in Singapore, enabling better trip planning and crowd management.
Instructions
Get forecasted MRT/LRT station crowdedness levels in 30-minute intervals.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
trainLine | Yes | Code of train network line (CCL, CEL, CGL, DTL, EWL, NEL, NSL, BPL, SLRT, PLRT, TEL) |
Input Schema (JSON Schema)
{
"properties": {
"trainLine": {
"description": "Code of train network line (CCL, CEL, CGL, DTL, EWL, NEL, NSL, BPL, SLRT, PLRT, TEL)",
"enum": [
"CCL",
"CEL",
"CGL",
"DTL",
"EWL",
"NEL",
"NSL",
"BPL",
"SLRT",
"PLRT",
"TEL"
],
"type": "string"
}
},
"required": [
"trainLine"
],
"type": "object"
}