aeromaps.models.air_transport.air_traffic.rtk_market¶
rtk_market¶
Per-market RTK models for freight markets when a MarketManager is loaded.
RTKMarket — CAGR + COVID freight traffic for one freight market.
RTKReferenceMarket — reference (counterfactual) RTK trajectory for one freight market.
RTKAggregator — sums per-market RTK into the legacy rtk / rtk_reference
totals consumed by downstream models.
All classes use model_type="custom" (AeroMAPSCustomModelWrapper).
RTKMarket ¶
RTKMarket(name, market_id, *args, **kwargs)
Bases: AeroMAPSModel
CAGR-based RTK growth with COVID recovery for one freight market.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Discipline name. |
required |
market_id
|
str
|
Market identifier for the freight market (e.g. |
required |
Source code in aeromaps/models/air_transport/air_traffic/rtk_market.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | |
compute ¶
compute(input_data)
Compute per-market RTK with CAGR and COVID recovery.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_data
|
dict
|
Inputs containing market share, CAGR references, and COVID settings. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
Output series for market RTK and growth metrics. |
Source code in aeromaps/models/air_transport/air_traffic/rtk_market.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | |
RTKReferenceMarket ¶
RTKReferenceMarket(name, market_id, *args, **kwargs)
Bases: AeroMAPSModel
Reference RTK trajectory for one freight market.
Reads the actual rtk_{mid} series (output of RTKMarket) and applies an
independent reference CAGR + COVID recovery to produce the counterfactual
rtk_reference_{mid} used by downstream abatement-cost and policy models.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Discipline name. |
required |
market_id
|
str
|
Market identifier for the freight market (e.g. |
required |
Source code in aeromaps/models/air_transport/air_traffic/rtk_market.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | |
compute ¶
compute(input_data)
Compute reference RTK trajectory for one freight market.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_data
|
dict
|
Inputs containing market RTK, CAGR reference, and COVID settings. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
Output series for reference RTK and its growth rate. |
Source code in aeromaps/models/air_transport/air_traffic/rtk_market.py
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | |
RTKAggregator ¶
RTKAggregator(name, freight_market_ids, *args, **kwargs)
Bases: AeroMAPSModel
Sum per-market RTKs into the legacy rtk / rtk_reference totals.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Discipline name. |
required |
freight_market_ids
|
list of str
|
Ordered list of freight market ids. |
required |
Source code in aeromaps/models/air_transport/air_traffic/rtk_market.py
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 | |
compute ¶
compute(input_data)
Aggregate per-market RTK and reference RTK totals.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_data
|
dict
|
Inputs containing per-market RTK and RTK reference series. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
Output totals and growth metrics for freight RTK. |
Source code in aeromaps/models/air_transport/air_traffic/rtk_market.py
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 | |