Malloy can compute moving averages on resultsets.
The queries below use the following model
## renderer_next source: order_items is duckdb.table('../data/order_items.parquet') extend { measure: user_count is count(user_id) order_count is count() }
Simple Moving Average
run: order_items -> { group_by: order_month is created_at.month aggregate: order_count calculate: moving_avg_order_count is avg_moving(order_count, 3) order_by: order_month }
[ { "order_month": "2019-01-01T00:00:00.000Z", "order_count": 1262, "moving_avg_order_count": 1262 }, { "order_month": "2019-02-01T00:00:00.000Z", "order_count": 1230, "moving_avg_order_count": 1246 }, { "order_month": "2019-03-01T00:00:00.000Z", "order_count": 1507, "moving_avg_order_count": 1333 }, { "order_month": "2019-04-01T00:00:00.000Z", "order_count": 1826, "moving_avg_order_count": 1456.25 }, { "order_month": "2019-05-01T00:00:00.000Z", "order_count": 2044, "moving_avg_order_count": 1651.75 }, { "order_month": "2019-06-01T00:00:00.000Z", "order_count": 2150, "moving_avg_order_count": 1881.75 }, { "order_month": "2019-07-01T00:00:00.000Z", "order_count": 2382, "moving_avg_order_count": 2100.5 }, { "order_month": "2019-08-01T00:00:00.000Z", "order_count": 2632, "moving_avg_order_count": 2302 }, { "order_month": "2019-09-01T00:00:00.000Z", "order_count": 2902, "moving_avg_order_count": 2516.5 }, { "order_month": "2019-10-01T00:00:00.000Z", "order_count": 3214, "moving_avg_order_count": 2782.5 }, { "order_month": "2019-11-01T00:00:00.000Z", "order_count": 3387, "moving_avg_order_count": 3033.75 }, { "order_month": "2019-12-01T00:00:00.000Z", "order_count": 4038, "moving_avg_order_count": 3385.25 }, { "order_month": "2020-01-01T00:00:00.000Z", "order_count": 3743, "moving_avg_order_count": 3595.5 }, { "order_month": "2020-02-01T00:00:00.000Z", "order_count": 3570, "moving_avg_order_count": 3684.5 }, { "order_month": "2020-03-01T00:00:00.000Z", "order_count": 4263, "moving_avg_order_count": 3903.5 }, { "order_month": "2020-04-01T00:00:00.000Z", "order_count": 4183, "moving_avg_order_count": 3939.75 }, { "order_month": "2020-05-01T00:00:00.000Z", "order_count": 4019, "moving_avg_order_count": 4008.75 }, { "order_month": "2020-06-01T00:00:00.000Z", "order_count": 4292, "moving_avg_order_count": 4189.25 }, { "order_month": "2020-07-01T00:00:00.000Z", "order_count": 4549, "moving_avg_order_count": 4260.75 }, { "order_month": "2020-08-01T00:00:00.000Z", "order_count": 4874, "moving_avg_order_count": 4433.5 }, { "order_month": "2020-09-01T00:00:00.000Z", "order_count": 5032, "moving_avg_order_count": 4686.75 }, { "order_month": "2020-10-01T00:00:00.000Z", "order_count": 5422, "moving_avg_order_count": 4969.25 }, { "order_month": "2020-11-01T00:00:00.000Z", "order_count": 5782, "moving_avg_order_count": 5277.5 }, { "order_month": "2020-12-01T00:00:00.000Z", "order_count": 6293, "moving_avg_order_count": 5632.25 }, { "order_month": "2021-01-01T00:00:00.000Z", "order_count": 5897, "moving_avg_order_count": 5848.5 }, { "order_month": "2021-02-01T00:00:00.000Z", "order_count": 5821, "moving_avg_order_count": 5948.25 }, { "order_month": "2021-03-01T00:00:00.000Z", "order_count": 6547, "moving_avg_order_count": 6139.5 }, { "order_month": "2021-04-01T00:00:00.000Z", "order_count": 6380, "moving_avg_order_count": 6161.25 }, { "order_month": "2021-05-01T00:00:00.000Z", "order_count": 6378, "moving_avg_order_count": 6281.5 }, { "order_month": "2021-06-01T00:00:00.000Z", "order_count": 6305, "moving_avg_order_count": 6402.5 }, { "order_month": "2021-07-01T00:00:00.000Z", "order_count": 6813, "moving_avg_order_count": 6469 }, { "order_month": "2021-08-01T00:00:00.000Z", "order_count": 7142, "moving_avg_order_count": 6659.5 }, { "order_month": "2021-09-01T00:00:00.000Z", "order_count": 7886, "moving_avg_order_count": 7036.5 }, { "order_month": "2021-10-01T00:00:00.000Z", "order_count": 7814, "moving_avg_order_count": 7413.75 }, { "order_month": "2021-11-01T00:00:00.000Z", "order_count": 8063, "moving_avg_order_count": 7726.25 }, { "order_month": "2021-12-01T00:00:00.000Z", "order_count": 9103, "moving_avg_order_count": 8216.5 }, { "order_month": "2022-01-01T00:00:00.000Z", "order_count": 8609, "moving_avg_order_count": 8397.25 }, { "order_month": "2022-02-01T00:00:00.000Z", "order_count": 8174, "moving_avg_order_count": 8487.25 }, { "order_month": "2022-03-01T00:00:00.000Z", "order_count": 9441, "moving_avg_order_count": 8831.75 }, { "order_month": "2022-04-01T00:00:00.000Z", "order_count": 9100, "moving_avg_order_count": 8831 }, { "order_month": "2022-05-01T00:00:00.000Z", "order_count": 9730, "moving_avg_order_count": 9111.25 }, { "order_month": "2022-06-01T00:00:00.000Z", "order_count": 9297, "moving_avg_order_count": 9392 }, { "order_month": "2022-07-01T00:00:00.000Z", "order_count": 9668, "moving_avg_order_count": 9448.75 }, { "order_month": "2022-08-01T00:00:00.000Z", "order_count": 10481, "moving_avg_order_count": 9794 }, { "order_month": "2022-09-01T00:00:00.000Z", "order_count": 11213, "moving_avg_order_count": 10164.75 }, { "order_month": "2022-10-01T00:00:00.000Z", "order_count": 11398, "moving_avg_order_count": 10690 }, { "order_month": "2022-11-01T00:00:00.000Z", "order_count": 5163, "moving_avg_order_count": 9563.75 } ]
SELECT DATE_TRUNC('month', base."created_at") as "order_month", COUNT(1) as "order_count", AVG((COUNT(1))) OVER( ORDER BY DATE_TRUNC('month', base."created_at") ASC NULLS LAST ROWS BETWEEN 3 PRECEDING AND 0 FOLLOWING) as "moving_avg_order_count" FROM '../data/order_items.parquet' as base GROUP BY 1 ORDER BY 1 ASC NULLS LAST
Visualizing the Results
# line_chart run: order_items -> { group_by: # x order_month is created_at.month aggregate: # y order_count calculate: # y moving_avg_order_count is avg_moving(order_count, 3) order_by: order_month }
[ { "order_month": "2019-01-01T00:00:00.000Z", "order_count": 1262, "moving_avg_order_count": 1262 }, { "order_month": "2019-02-01T00:00:00.000Z", "order_count": 1230, "moving_avg_order_count": 1246 }, { "order_month": "2019-03-01T00:00:00.000Z", "order_count": 1507, "moving_avg_order_count": 1333 }, { "order_month": "2019-04-01T00:00:00.000Z", "order_count": 1826, "moving_avg_order_count": 1456.25 }, { "order_month": "2019-05-01T00:00:00.000Z", "order_count": 2044, "moving_avg_order_count": 1651.75 }, { "order_month": "2019-06-01T00:00:00.000Z", "order_count": 2150, "moving_avg_order_count": 1881.75 }, { "order_month": "2019-07-01T00:00:00.000Z", "order_count": 2382, "moving_avg_order_count": 2100.5 }, { "order_month": "2019-08-01T00:00:00.000Z", "order_count": 2632, "moving_avg_order_count": 2302 }, { "order_month": "2019-09-01T00:00:00.000Z", "order_count": 2902, "moving_avg_order_count": 2516.5 }, { "order_month": "2019-10-01T00:00:00.000Z", "order_count": 3214, "moving_avg_order_count": 2782.5 }, { "order_month": "2019-11-01T00:00:00.000Z", "order_count": 3387, "moving_avg_order_count": 3033.75 }, { "order_month": "2019-12-01T00:00:00.000Z", "order_count": 4038, "moving_avg_order_count": 3385.25 }, { "order_month": "2020-01-01T00:00:00.000Z", "order_count": 3743, "moving_avg_order_count": 3595.5 }, { "order_month": "2020-02-01T00:00:00.000Z", "order_count": 3570, "moving_avg_order_count": 3684.5 }, { "order_month": "2020-03-01T00:00:00.000Z", "order_count": 4263, "moving_avg_order_count": 3903.5 }, { "order_month": "2020-04-01T00:00:00.000Z", "order_count": 4183, "moving_avg_order_count": 3939.75 }, { "order_month": "2020-05-01T00:00:00.000Z", "order_count": 4019, "moving_avg_order_count": 4008.75 }, { "order_month": "2020-06-01T00:00:00.000Z", "order_count": 4292, "moving_avg_order_count": 4189.25 }, { "order_month": "2020-07-01T00:00:00.000Z", "order_count": 4549, "moving_avg_order_count": 4260.75 }, { "order_month": "2020-08-01T00:00:00.000Z", "order_count": 4874, "moving_avg_order_count": 4433.5 }, { "order_month": "2020-09-01T00:00:00.000Z", "order_count": 5032, "moving_avg_order_count": 4686.75 }, { "order_month": "2020-10-01T00:00:00.000Z", "order_count": 5422, "moving_avg_order_count": 4969.25 }, { "order_month": "2020-11-01T00:00:00.000Z", "order_count": 5782, "moving_avg_order_count": 5277.5 }, { "order_month": "2020-12-01T00:00:00.000Z", "order_count": 6293, "moving_avg_order_count": 5632.25 }, { "order_month": "2021-01-01T00:00:00.000Z", "order_count": 5897, "moving_avg_order_count": 5848.5 }, { "order_month": "2021-02-01T00:00:00.000Z", "order_count": 5821, "moving_avg_order_count": 5948.25 }, { "order_month": "2021-03-01T00:00:00.000Z", "order_count": 6547, "moving_avg_order_count": 6139.5 }, { "order_month": "2021-04-01T00:00:00.000Z", "order_count": 6380, "moving_avg_order_count": 6161.25 }, { "order_month": "2021-05-01T00:00:00.000Z", "order_count": 6378, "moving_avg_order_count": 6281.5 }, { "order_month": "2021-06-01T00:00:00.000Z", "order_count": 6305, "moving_avg_order_count": 6402.5 }, { "order_month": "2021-07-01T00:00:00.000Z", "order_count": 6813, "moving_avg_order_count": 6469 }, { "order_month": "2021-08-01T00:00:00.000Z", "order_count": 7142, "moving_avg_order_count": 6659.5 }, { "order_month": "2021-09-01T00:00:00.000Z", "order_count": 7886, "moving_avg_order_count": 7036.5 }, { "order_month": "2021-10-01T00:00:00.000Z", "order_count": 7814, "moving_avg_order_count": 7413.75 }, { "order_month": "2021-11-01T00:00:00.000Z", "order_count": 8063, "moving_avg_order_count": 7726.25 }, { "order_month": "2021-12-01T00:00:00.000Z", "order_count": 9103, "moving_avg_order_count": 8216.5 }, { "order_month": "2022-01-01T00:00:00.000Z", "order_count": 8609, "moving_avg_order_count": 8397.25 }, { "order_month": "2022-02-01T00:00:00.000Z", "order_count": 8174, "moving_avg_order_count": 8487.25 }, { "order_month": "2022-03-01T00:00:00.000Z", "order_count": 9441, "moving_avg_order_count": 8831.75 }, { "order_month": "2022-04-01T00:00:00.000Z", "order_count": 9100, "moving_avg_order_count": 8831 }, { "order_month": "2022-05-01T00:00:00.000Z", "order_count": 9730, "moving_avg_order_count": 9111.25 }, { "order_month": "2022-06-01T00:00:00.000Z", "order_count": 9297, "moving_avg_order_count": 9392 }, { "order_month": "2022-07-01T00:00:00.000Z", "order_count": 9668, "moving_avg_order_count": 9448.75 }, { "order_month": "2022-08-01T00:00:00.000Z", "order_count": 10481, "moving_avg_order_count": 9794 }, { "order_month": "2022-09-01T00:00:00.000Z", "order_count": 11213, "moving_avg_order_count": 10164.75 }, { "order_month": "2022-10-01T00:00:00.000Z", "order_count": 11398, "moving_avg_order_count": 10690 }, { "order_month": "2022-11-01T00:00:00.000Z", "order_count": 5163, "moving_avg_order_count": 9563.75 } ]
SELECT DATE_TRUNC('month', base."created_at") as "order_month", COUNT(1) as "order_count", AVG((COUNT(1))) OVER( ORDER BY DATE_TRUNC('month', base."created_at") ASC NULLS LAST ROWS BETWEEN 3 PRECEDING AND 0 FOLLOWING) as "moving_avg_order_count" FROM '../data/order_items.parquet' as base GROUP BY 1 ORDER BY 1 ASC NULLS LAST
Displaying Charts in Nested Queries
In this example, we've added two queries to the flights
source, one showing flights by month without the moving average applied, and one with the moving average applied. We then use these queries to show charts of flight count for each airport over time.
source: flights is duckdb.table('../data/flights.parquet') extend { measure: flight_count is count() dimension: dep_month is dep_time.month # line_chart view: non_averaged is { group_by: # x dep_month aggregate: # y flight_count calculate: # y moving_avg_flight_count is avg_moving(flight_count, 3) order_by: dep_month } }
run: flights -> { group_by: destination aggregate: flight_count nest: non_averaged }
[ { "destination": "ATL", "flight_count": 17832, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 186, "moving_avg_flight_count": 186 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 197, "moving_avg_flight_count": 191.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 231, "moving_avg_flight_count": 204.66666666666666 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 163, "moving_avg_flight_count": 194.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 195, "moving_avg_flight_count": 196.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 190, "moving_avg_flight_count": 194.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 177, "moving_avg_flight_count": 181.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 175, "moving_avg_flight_count": 184.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 148, "moving_avg_flight_count": 172.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 196, "moving_avg_flight_count": 174 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 171, "moving_avg_flight_count": 172.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 193, "moving_avg_flight_count": 177 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 187, "moving_avg_flight_count": 186.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 169.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 201, "moving_avg_flight_count": 177.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 197, "moving_avg_flight_count": 178.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 201, "moving_avg_flight_count": 181.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 180, "moving_avg_flight_count": 194.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 153, "moving_avg_flight_count": 182.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 197, "moving_avg_flight_count": 182.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 150, "moving_avg_flight_count": 170 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 133, "moving_avg_flight_count": 158.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 163, "moving_avg_flight_count": 160.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 168, "moving_avg_flight_count": 153.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 154, "moving_avg_flight_count": 154.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 152 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 139, "moving_avg_flight_count": 146 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 166, "moving_avg_flight_count": 145.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 155, "moving_avg_flight_count": 145.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 154, "moving_avg_flight_count": 153.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 181, "moving_avg_flight_count": 164 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 146.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 126.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 113.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 91 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 90.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 279, "moving_avg_flight_count": 141.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 295, "moving_avg_flight_count": 190 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 331, "moving_avg_flight_count": 249.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 330, "moving_avg_flight_count": 308.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 347, "moving_avg_flight_count": 325.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 323, "moving_avg_flight_count": 332.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 340, "moving_avg_flight_count": 335 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 338, "moving_avg_flight_count": 337 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 291, "moving_avg_flight_count": 323 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 347, "moving_avg_flight_count": 329 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 349, "moving_avg_flight_count": 331.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 336, "moving_avg_flight_count": 330.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 333, "moving_avg_flight_count": 341.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 360, "moving_avg_flight_count": 344.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 363, "moving_avg_flight_count": 348 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 392, "moving_avg_flight_count": 362 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 380, "moving_avg_flight_count": 373.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 333, "moving_avg_flight_count": 367 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 368, "moving_avg_flight_count": 368.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 385, "moving_avg_flight_count": 366.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 366, "moving_avg_flight_count": 363 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 372, "moving_avg_flight_count": 372.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 335, "moving_avg_flight_count": 364.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 361, "moving_avg_flight_count": 358.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 318, "moving_avg_flight_count": 346.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 351, "moving_avg_flight_count": 341.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 288, "moving_avg_flight_count": 329.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 321, "moving_avg_flight_count": 319.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 364, "moving_avg_flight_count": 331 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 349, "moving_avg_flight_count": 330.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 343, "moving_avg_flight_count": 344.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 325, "moving_avg_flight_count": 345.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 292, "moving_avg_flight_count": 327.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 298, "moving_avg_flight_count": 314.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 232, "moving_avg_flight_count": 286.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 287, "moving_avg_flight_count": 277.25 } ] }, { "destination": "DFW", "flight_count": 17776, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 189, "moving_avg_flight_count": 189 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 181, "moving_avg_flight_count": 185 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 190, "moving_avg_flight_count": 186.66666666666666 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 149, "moving_avg_flight_count": 177.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 134, "moving_avg_flight_count": 163.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 152, "moving_avg_flight_count": 156.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 177, "moving_avg_flight_count": 153 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 155, "moving_avg_flight_count": 154.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 180, "moving_avg_flight_count": 166 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 170, "moving_avg_flight_count": 170.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 156, "moving_avg_flight_count": 165.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 140, "moving_avg_flight_count": 161.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 159, "moving_avg_flight_count": 156.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 145 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 219, "moving_avg_flight_count": 160.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 258, "moving_avg_flight_count": 190.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 234, "moving_avg_flight_count": 209 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 257, "moving_avg_flight_count": 242 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 287, "moving_avg_flight_count": 259 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 252, "moving_avg_flight_count": 257.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 187, "moving_avg_flight_count": 245.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 222, "moving_avg_flight_count": 237 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 195, "moving_avg_flight_count": 214 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 209, "moving_avg_flight_count": 203.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 213, "moving_avg_flight_count": 209.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 219, "moving_avg_flight_count": 209 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 279, "moving_avg_flight_count": 230 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 303, "moving_avg_flight_count": 253.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 319, "moving_avg_flight_count": 280 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 303, "moving_avg_flight_count": 301 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 331, "moving_avg_flight_count": 314 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 258, "moving_avg_flight_count": 302.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 320, "moving_avg_flight_count": 303 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 306, "moving_avg_flight_count": 303.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 272, "moving_avg_flight_count": 289 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 248, "moving_avg_flight_count": 286.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 232, "moving_avg_flight_count": 264.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 239, "moving_avg_flight_count": 247.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 219, "moving_avg_flight_count": 234.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 272, "moving_avg_flight_count": 240.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 347, "moving_avg_flight_count": 269.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 309, "moving_avg_flight_count": 286.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 221, "moving_avg_flight_count": 287.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 138, "moving_avg_flight_count": 253.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 124, "moving_avg_flight_count": 198 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 173, "moving_avg_flight_count": 164 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 188, "moving_avg_flight_count": 155.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 296, "moving_avg_flight_count": 195.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 316, "moving_avg_flight_count": 243.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 282, "moving_avg_flight_count": 270.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 215, "moving_avg_flight_count": 277.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 303, "moving_avg_flight_count": 279 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 279, "moving_avg_flight_count": 269.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 276, "moving_avg_flight_count": 268.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 303, "moving_avg_flight_count": 290.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 306, "moving_avg_flight_count": 291 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 189, "moving_avg_flight_count": 268.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 311, "moving_avg_flight_count": 277.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 318, "moving_avg_flight_count": 281 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 381, "moving_avg_flight_count": 299.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 269, "moving_avg_flight_count": 319.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 322, "moving_avg_flight_count": 322.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 261, "moving_avg_flight_count": 308.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 272, "moving_avg_flight_count": 281 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 315, "moving_avg_flight_count": 292.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 268, "moving_avg_flight_count": 279 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 315, "moving_avg_flight_count": 292.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 328, "moving_avg_flight_count": 306.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 346, "moving_avg_flight_count": 314.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 260, "moving_avg_flight_count": 312.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 299, "moving_avg_flight_count": 308.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 336, "moving_avg_flight_count": 310.25 } ] }, { "destination": "ORD", "flight_count": 14213, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 135, "moving_avg_flight_count": 135 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 137, "moving_avg_flight_count": 136 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 167, "moving_avg_flight_count": 146.33333333333334 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 126, "moving_avg_flight_count": 141.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 152, "moving_avg_flight_count": 145.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 170, "moving_avg_flight_count": 153.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 157, "moving_avg_flight_count": 151.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 189, "moving_avg_flight_count": 167 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 168, "moving_avg_flight_count": 171 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 147, "moving_avg_flight_count": 165.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 162, "moving_avg_flight_count": 166.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 147.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 147, "moving_avg_flight_count": 142.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 138, "moving_avg_flight_count": 140 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 183, "moving_avg_flight_count": 145.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 134, "moving_avg_flight_count": 150.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 141, "moving_avg_flight_count": 149 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 176, "moving_avg_flight_count": 158.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 143, "moving_avg_flight_count": 148.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 194, "moving_avg_flight_count": 163.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 158 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 137, "moving_avg_flight_count": 148.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 181, "moving_avg_flight_count": 157.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 227, "moving_avg_flight_count": 166 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 200, "moving_avg_flight_count": 186.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 177, "moving_avg_flight_count": 196.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 203, "moving_avg_flight_count": 201.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 166, "moving_avg_flight_count": 186.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 227, "moving_avg_flight_count": 193.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 224, "moving_avg_flight_count": 205 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 204, "moving_avg_flight_count": 205.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 244, "moving_avg_flight_count": 224.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 258, "moving_avg_flight_count": 232.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 230, "moving_avg_flight_count": 234 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 213, "moving_avg_flight_count": 236.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 215, "moving_avg_flight_count": 229 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 224, "moving_avg_flight_count": 220.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 203, "moving_avg_flight_count": 213.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 187, "moving_avg_flight_count": 207.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 182, "moving_avg_flight_count": 199 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 198, "moving_avg_flight_count": 192.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 199, "moving_avg_flight_count": 191.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 198, "moving_avg_flight_count": 194.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 183, "moving_avg_flight_count": 194.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 188, "moving_avg_flight_count": 192 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 153, "moving_avg_flight_count": 180.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 193, "moving_avg_flight_count": 179.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 232, "moving_avg_flight_count": 191.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 164, "moving_avg_flight_count": 185.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 176, "moving_avg_flight_count": 191.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 271, "moving_avg_flight_count": 210.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 256, "moving_avg_flight_count": 216.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 230, "moving_avg_flight_count": 233.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 262, "moving_avg_flight_count": 254.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 246, "moving_avg_flight_count": 248.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 227, "moving_avg_flight_count": 241.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 239, "moving_avg_flight_count": 243.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 255, "moving_avg_flight_count": 241.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 194, "moving_avg_flight_count": 228.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 162, "moving_avg_flight_count": 212.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 230, "moving_avg_flight_count": 210.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 215, "moving_avg_flight_count": 200.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 248, "moving_avg_flight_count": 213.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 233, "moving_avg_flight_count": 231.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 278, "moving_avg_flight_count": 243.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 289, "moving_avg_flight_count": 262 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 218, "moving_avg_flight_count": 254.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 271, "moving_avg_flight_count": 264 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 256, "moving_avg_flight_count": 258.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 267, "moving_avg_flight_count": 253 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 195, "moving_avg_flight_count": 247.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 187, "moving_avg_flight_count": 226.25 } ] }, { "destination": "PHX", "flight_count": 12477, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 188, "moving_avg_flight_count": 188 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 211, "moving_avg_flight_count": 199.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 181, "moving_avg_flight_count": 193.33333333333334 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 178, "moving_avg_flight_count": 189.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 205, "moving_avg_flight_count": 193.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 172, "moving_avg_flight_count": 184 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 196, "moving_avg_flight_count": 187.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 185, "moving_avg_flight_count": 189.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 160, "moving_avg_flight_count": 178.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 184, "moving_avg_flight_count": 181.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 162 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 166, "moving_avg_flight_count": 157.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 167, "moving_avg_flight_count": 159 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 189, "moving_avg_flight_count": 160.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 153, "moving_avg_flight_count": 168.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 146, "moving_avg_flight_count": 163.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 182, "moving_avg_flight_count": 167.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 200, "moving_avg_flight_count": 170.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 177, "moving_avg_flight_count": 176.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 194, "moving_avg_flight_count": 188.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 180, "moving_avg_flight_count": 187.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 156, "moving_avg_flight_count": 176.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 135, "moving_avg_flight_count": 166.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 175, "moving_avg_flight_count": 161.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 141, "moving_avg_flight_count": 151.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 160, "moving_avg_flight_count": 152.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 194, "moving_avg_flight_count": 167.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 169, "moving_avg_flight_count": 166 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 151, "moving_avg_flight_count": 168.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 156, "moving_avg_flight_count": 167.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 163, "moving_avg_flight_count": 159.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 179, "moving_avg_flight_count": 162.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 198, "moving_avg_flight_count": 174 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 173, "moving_avg_flight_count": 178.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 159, "moving_avg_flight_count": 177.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 167, "moving_avg_flight_count": 174.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 174, "moving_avg_flight_count": 168.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 152, "moving_avg_flight_count": 163 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 162, "moving_avg_flight_count": 163.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 184, "moving_avg_flight_count": 168 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 181, "moving_avg_flight_count": 169.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 176, "moving_avg_flight_count": 175.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 142, "moving_avg_flight_count": 170.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 165, "moving_avg_flight_count": 166 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 177, "moving_avg_flight_count": 165 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 169, "moving_avg_flight_count": 163.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 155, "moving_avg_flight_count": 166.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 149, "moving_avg_flight_count": 162.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 140, "moving_avg_flight_count": 153.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 152, "moving_avg_flight_count": 149 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 167, "moving_avg_flight_count": 152 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 132, "moving_avg_flight_count": 147.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 191, "moving_avg_flight_count": 160.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 162, "moving_avg_flight_count": 163 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 147, "moving_avg_flight_count": 158 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 190, "moving_avg_flight_count": 172.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 180, "moving_avg_flight_count": 169.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 187, "moving_avg_flight_count": 176 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 173, "moving_avg_flight_count": 182.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 209, "moving_avg_flight_count": 187.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 188, "moving_avg_flight_count": 189.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 186, "moving_avg_flight_count": 189 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 187, "moving_avg_flight_count": 192.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 203, "moving_avg_flight_count": 191 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 171, "moving_avg_flight_count": 186.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 181, "moving_avg_flight_count": 185.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 157, "moving_avg_flight_count": 178 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 188, "moving_avg_flight_count": 174.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 196, "moving_avg_flight_count": 180.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 209, "moving_avg_flight_count": 187.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 187, "moving_avg_flight_count": 195 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 199, "moving_avg_flight_count": 197.75 } ] }, { "destination": "LAS", "flight_count": 11092, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 120, "moving_avg_flight_count": 120 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 105, "moving_avg_flight_count": 112.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 117.33333333333333 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 132, "moving_avg_flight_count": 121 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 154, "moving_avg_flight_count": 129.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 135, "moving_avg_flight_count": 137 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 124, "moving_avg_flight_count": 136.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 135 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 133, "moving_avg_flight_count": 129.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 120.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 120.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 156, "moving_avg_flight_count": 127.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 154, "moving_avg_flight_count": 133 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 140.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 87, "moving_avg_flight_count": 131 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 122.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 114 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 114.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 123.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 136, "moving_avg_flight_count": 127 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 136, "moving_avg_flight_count": 131.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 136, "moving_avg_flight_count": 133.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 132.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 137, "moving_avg_flight_count": 132.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 142, "moving_avg_flight_count": 134 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 125.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 158, "moving_avg_flight_count": 135 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 125.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 155, "moving_avg_flight_count": 129 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 142, "moving_avg_flight_count": 138.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 141, "moving_avg_flight_count": 134.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 138, "moving_avg_flight_count": 144 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 135, "moving_avg_flight_count": 139 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 135.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 127.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 136, "moving_avg_flight_count": 127.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 145, "moving_avg_flight_count": 129.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 144, "moving_avg_flight_count": 134 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 155, "moving_avg_flight_count": 145 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 145, "moving_avg_flight_count": 147.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 158, "moving_avg_flight_count": 150.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 132, "moving_avg_flight_count": 147.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 159, "moving_avg_flight_count": 148.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 161, "moving_avg_flight_count": 152.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 151, "moving_avg_flight_count": 150.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 139, "moving_avg_flight_count": 152.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 153, "moving_avg_flight_count": 151 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 130, "moving_avg_flight_count": 143.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 150, "moving_avg_flight_count": 143 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 212, "moving_avg_flight_count": 161.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 183, "moving_avg_flight_count": 168.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 184, "moving_avg_flight_count": 182.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 238, "moving_avg_flight_count": 204.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 195, "moving_avg_flight_count": 200 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 175, "moving_avg_flight_count": 198 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 172, "moving_avg_flight_count": 195 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 186, "moving_avg_flight_count": 182 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 208, "moving_avg_flight_count": 185.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 167, "moving_avg_flight_count": 183.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 206, "moving_avg_flight_count": 191.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 198, "moving_avg_flight_count": 194.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 176, "moving_avg_flight_count": 186.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 201, "moving_avg_flight_count": 195.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 194, "moving_avg_flight_count": 192.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 218, "moving_avg_flight_count": 197.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 186, "moving_avg_flight_count": 199.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 190, "moving_avg_flight_count": 197 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 220, "moving_avg_flight_count": 203.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 193, "moving_avg_flight_count": 197.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 226, "moving_avg_flight_count": 207.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 189, "moving_avg_flight_count": 207 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 201, "moving_avg_flight_count": 202.25 } ] }, { "destination": "LAX", "flight_count": 11074, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 185, "moving_avg_flight_count": 185 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 189, "moving_avg_flight_count": 187 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 191, "moving_avg_flight_count": 188.33333333333334 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 173, "moving_avg_flight_count": 184.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 181, "moving_avg_flight_count": 183.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 156, "moving_avg_flight_count": 175.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 180, "moving_avg_flight_count": 172.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 227, "moving_avg_flight_count": 186 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 154, "moving_avg_flight_count": 179.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 170, "moving_avg_flight_count": 182.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 162, "moving_avg_flight_count": 178.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 158, "moving_avg_flight_count": 161 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 169, "moving_avg_flight_count": 164.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 162, "moving_avg_flight_count": 162.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 144, "moving_avg_flight_count": 158.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 171, "moving_avg_flight_count": 161.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 163, "moving_avg_flight_count": 160 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 160, "moving_avg_flight_count": 159.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 131, "moving_avg_flight_count": 156.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 167, "moving_avg_flight_count": 155.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 134, "moving_avg_flight_count": 148 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 140, "moving_avg_flight_count": 143 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 142 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 144, "moving_avg_flight_count": 136.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 133.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 130, "moving_avg_flight_count": 131 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 131.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 104, "moving_avg_flight_count": 121.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 142, "moving_avg_flight_count": 126 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 163, "moving_avg_flight_count": 134.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 129, "moving_avg_flight_count": 134.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 169, "moving_avg_flight_count": 150.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 165, "moving_avg_flight_count": 156.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 160, "moving_avg_flight_count": 155.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 155, "moving_avg_flight_count": 162.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 164, "moving_avg_flight_count": 161 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 179, "moving_avg_flight_count": 164.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 174, "moving_avg_flight_count": 168 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 153, "moving_avg_flight_count": 167.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 163, "moving_avg_flight_count": 167.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 156, "moving_avg_flight_count": 161.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 136, "moving_avg_flight_count": 152 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 137, "moving_avg_flight_count": 148 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 150, "moving_avg_flight_count": 144.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 140, "moving_avg_flight_count": 140.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 133, "moving_avg_flight_count": 140 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 135, "moving_avg_flight_count": 139.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 146, "moving_avg_flight_count": 138.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 135.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 143, "moving_avg_flight_count": 137.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 144, "moving_avg_flight_count": 140 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 141, "moving_avg_flight_count": 138.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 130, "moving_avg_flight_count": 139.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 163, "moving_avg_flight_count": 144.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 154, "moving_avg_flight_count": 147 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 133, "moving_avg_flight_count": 145 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 160, "moving_avg_flight_count": 152.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 149, "moving_avg_flight_count": 149 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 168, "moving_avg_flight_count": 152.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 130, "moving_avg_flight_count": 151.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 149, "moving_avg_flight_count": 149 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 142.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 138, "moving_avg_flight_count": 135 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 145, "moving_avg_flight_count": 138.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 138, "moving_avg_flight_count": 136 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 151, "moving_avg_flight_count": 143 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 176, "moving_avg_flight_count": 152.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 176, "moving_avg_flight_count": 160.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 155, "moving_avg_flight_count": 164.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 162, "moving_avg_flight_count": 167.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 182, "moving_avg_flight_count": 168.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 165, "moving_avg_flight_count": 166 } ] }, { "destination": "MSP", "flight_count": 9769, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 136, "moving_avg_flight_count": 136 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 127.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 122 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 119.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 120, "moving_avg_flight_count": 115.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 106.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 156, "moving_avg_flight_count": 117.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 148, "moving_avg_flight_count": 127 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 129 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 133.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 126.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 120.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 118.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 109, "moving_avg_flight_count": 119.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 147, "moving_avg_flight_count": 124.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 133, "moving_avg_flight_count": 126.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 125 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 150, "moving_avg_flight_count": 135.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 148, "moving_avg_flight_count": 135.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 155, "moving_avg_flight_count": 141 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 136.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 119.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 107.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 96.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 96, "moving_avg_flight_count": 97 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 117, "moving_avg_flight_count": 106 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 116, "moving_avg_flight_count": 110 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 103 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 112, "moving_avg_flight_count": 107 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 131, "moving_avg_flight_count": 110.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 140, "moving_avg_flight_count": 116.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 148, "moving_avg_flight_count": 132.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 114, "moving_avg_flight_count": 133.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 112, "moving_avg_flight_count": 128.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 121.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 139, "moving_avg_flight_count": 119 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 151, "moving_avg_flight_count": 128.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 140, "moving_avg_flight_count": 135.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 148, "moving_avg_flight_count": 144.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 138, "moving_avg_flight_count": 144.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 149, "moving_avg_flight_count": 143.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 140 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 133, "moving_avg_flight_count": 136.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 133.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 116, "moving_avg_flight_count": 125.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 149, "moving_avg_flight_count": 131.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 151, "moving_avg_flight_count": 136 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 157, "moving_avg_flight_count": 143.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 183, "moving_avg_flight_count": 160 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 142, "moving_avg_flight_count": 158.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 170, "moving_avg_flight_count": 163 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 141, "moving_avg_flight_count": 159 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 172, "moving_avg_flight_count": 156.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 170, "moving_avg_flight_count": 163.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 166, "moving_avg_flight_count": 162.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 177, "moving_avg_flight_count": 171.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 164, "moving_avg_flight_count": 169.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 155, "moving_avg_flight_count": 165.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 197, "moving_avg_flight_count": 173.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 140, "moving_avg_flight_count": 164 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 165, "moving_avg_flight_count": 164.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 149, "moving_avg_flight_count": 162.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 145.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 137, "moving_avg_flight_count": 144.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 138, "moving_avg_flight_count": 138 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 158, "moving_avg_flight_count": 140.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 150, "moving_avg_flight_count": 145.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 156, "moving_avg_flight_count": 150.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 146.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 138, "moving_avg_flight_count": 141.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 157, "moving_avg_flight_count": 143 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 166, "moving_avg_flight_count": 145.5 } ] }, { "destination": "DTW", "flight_count": 8141, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 135, "moving_avg_flight_count": 135 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 126.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 144, "moving_avg_flight_count": 132.33333333333334 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 129.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 141, "moving_avg_flight_count": 131 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 131.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 125.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 116, "moving_avg_flight_count": 124.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 112, "moving_avg_flight_count": 117 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 114.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 114.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 116, "moving_avg_flight_count": 114.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 138, "moving_avg_flight_count": 121 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 124, "moving_avg_flight_count": 125 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 117.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 117.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 141, "moving_avg_flight_count": 118.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 104, "moving_avg_flight_count": 113.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 116, "moving_avg_flight_count": 119.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 120.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 117 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 88, "moving_avg_flight_count": 113 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 100.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 137, "moving_avg_flight_count": 104.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 109, "moving_avg_flight_count": 100.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 103.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 115, "moving_avg_flight_count": 115.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 99.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 104, "moving_avg_flight_count": 98.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 104 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 98.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 102, "moving_avg_flight_count": 105 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 106 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 131, "moving_avg_flight_count": 108.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 109.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 112 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 88, "moving_avg_flight_count": 107 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 93.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 92 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 84 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 87 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 90.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 92 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 96, "moving_avg_flight_count": 96.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 93.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 97.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 138, "moving_avg_flight_count": 107.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 114 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 107, "moving_avg_flight_count": 118.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 132, "moving_avg_flight_count": 125 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 126, "moving_avg_flight_count": 122 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 120, "moving_avg_flight_count": 121.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 149, "moving_avg_flight_count": 131.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 130.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 133, "moving_avg_flight_count": 132.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 131.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 126.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 115, "moving_avg_flight_count": 123.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 118.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 146, "moving_avg_flight_count": 125.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 120, "moving_avg_flight_count": 123.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 126.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 121.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 129, "moving_avg_flight_count": 117.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 116, "moving_avg_flight_count": 116.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 101.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 106.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 95, "moving_avg_flight_count": 98.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 100 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 110, "moving_avg_flight_count": 110.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 112.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 119 } ] }, { "destination": "PHL", "flight_count": 7694, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 101 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 110, "moving_avg_flight_count": 105.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 109, "moving_avg_flight_count": 106.66666666666667 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 100.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 99 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 105, "moving_avg_flight_count": 97.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 102, "moving_avg_flight_count": 96 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 99, "moving_avg_flight_count": 100 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 107, "moving_avg_flight_count": 103.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 99, "moving_avg_flight_count": 101.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 102.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 100.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 96, "moving_avg_flight_count": 98 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 82, "moving_avg_flight_count": 93.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 93.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 96 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 92.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 88, "moving_avg_flight_count": 93.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 102, "moving_avg_flight_count": 92.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 99, "moving_avg_flight_count": 92.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 95.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 95.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 96, "moving_avg_flight_count": 94.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 101.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 95, "moving_avg_flight_count": 102.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 97.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 90 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 87.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 102, "moving_avg_flight_count": 89.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 105, "moving_avg_flight_count": 97.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 106.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 126, "moving_avg_flight_count": 108.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 110.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 107, "moving_avg_flight_count": 111.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 95, "moving_avg_flight_count": 109.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 96, "moving_avg_flight_count": 102.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 96 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 88.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 84.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 81.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 78.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 82.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 87 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 84 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 83.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 78.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 65.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 66.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 64.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 62.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 67.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 65.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 67 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 71.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 83.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 187, "moving_avg_flight_count": 114.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 169, "moving_avg_flight_count": 138.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 179, "moving_avg_flight_count": 163.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 199, "moving_avg_flight_count": 183.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 174, "moving_avg_flight_count": 180.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 179, "moving_avg_flight_count": 182.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 167.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 172, "moving_avg_flight_count": 161 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 141, "moving_avg_flight_count": 152.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 135, "moving_avg_flight_count": 141.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 156, "moving_avg_flight_count": 151 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 134, "moving_avg_flight_count": 141.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 166, "moving_avg_flight_count": 147.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 172, "moving_avg_flight_count": 157 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 159, "moving_avg_flight_count": 157.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 152.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 141.5 } ] }, { "destination": "LGA", "flight_count": 7625, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 57 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 57.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 66.33333333333333 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 65.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 66.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 65.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 57 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 54.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 55.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 58.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 58.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 62.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 64.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 65.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 67.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 66.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 66.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 63.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 88, "moving_avg_flight_count": 70.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 67.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 59 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 58.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 44.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 41.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 44.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 41.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 46 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 46.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 51.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 52 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 52 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 52.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 48.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 48 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 48.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 52 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 56 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 139, "moving_avg_flight_count": 78.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 170, "moving_avg_flight_count": 108.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 110, "moving_avg_flight_count": 121.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 144, "moving_avg_flight_count": 140.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 145, "moving_avg_flight_count": 142.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 130 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 145, "moving_avg_flight_count": 138.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 147, "moving_avg_flight_count": 139.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 135 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 167, "moving_avg_flight_count": 146.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 149, "moving_avg_flight_count": 147.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 186, "moving_avg_flight_count": 157.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 155, "moving_avg_flight_count": 164.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 184, "moving_avg_flight_count": 168.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 145, "moving_avg_flight_count": 167.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 160, "moving_avg_flight_count": 161 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 173, "moving_avg_flight_count": 165.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 180, "moving_avg_flight_count": 164.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 174, "moving_avg_flight_count": 171.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 157, "moving_avg_flight_count": 171 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 158, "moving_avg_flight_count": 167.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 157, "moving_avg_flight_count": 161.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 186, "moving_avg_flight_count": 164.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 187, "moving_avg_flight_count": 172 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 153, "moving_avg_flight_count": 170.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 82, "moving_avg_flight_count": 152 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 172, "moving_avg_flight_count": 148.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 184, "moving_avg_flight_count": 147.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 175, "moving_avg_flight_count": 153.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 189, "moving_avg_flight_count": 180 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 221, "moving_avg_flight_count": 192.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 200, "moving_avg_flight_count": 196.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 174, "moving_avg_flight_count": 196 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 120, "moving_avg_flight_count": 178.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 144.75 } ] }, { "destination": "BWI", "flight_count": 7190, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 66 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 66 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 70 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 71.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 71 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 77.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 76.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 95, "moving_avg_flight_count": 81.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 79.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 77 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 80.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 75.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 88.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 85.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 84.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 91.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 89.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 94.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 97.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 105, "moving_avg_flight_count": 98.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 89.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 117, "moving_avg_flight_count": 96 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 97.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 99, "moving_avg_flight_count": 96 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 102, "moving_avg_flight_count": 105.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 100.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 97.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 130, "moving_avg_flight_count": 105.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 110.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 108 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 104, "moving_avg_flight_count": 111.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 103.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 99.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 135, "moving_avg_flight_count": 110.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 101.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 87, "moving_avg_flight_count": 98.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 95, "moving_avg_flight_count": 96 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 85.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 137, "moving_avg_flight_count": 103.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 110, "moving_avg_flight_count": 109 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 110.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 116.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 113.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 117, "moving_avg_flight_count": 115.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 120.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 116.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 107, "moving_avg_flight_count": 111.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 107.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 102.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 95.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 96.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 98.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 93.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 100 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 109, "moving_avg_flight_count": 99 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 93.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 102.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 136, "moving_avg_flight_count": 112.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 114.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 135, "moving_avg_flight_count": 127.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 104, "moving_avg_flight_count": 123.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 115.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 116 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 112.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 110 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 95, "moving_avg_flight_count": 108 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 99.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 100.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 117, "moving_avg_flight_count": 106.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 107.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 131, "moving_avg_flight_count": 118.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 112.25 } ] }, { "destination": "DEN", "flight_count": 7187, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 76 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 83 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 82.33333333333333 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 80.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 81.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 82 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 87, "moving_avg_flight_count": 83.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 82, "moving_avg_flight_count": 85.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 84.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 86 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 82 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 80.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 77.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 67.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 69.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 67 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 71 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 99, "moving_avg_flight_count": 81.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 81.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 114, "moving_avg_flight_count": 93 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 88.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 82.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 82.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 78.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 84 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 83.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 84 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 84.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 87.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 88, "moving_avg_flight_count": 91.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 82, "moving_avg_flight_count": 91.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 85.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 83.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 89.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 89.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 92.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 116, "moving_avg_flight_count": 99 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 87, "moving_avg_flight_count": 92.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 94.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 97.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 91 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 96, "moving_avg_flight_count": 93.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 102.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 101.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 110, "moving_avg_flight_count": 106.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 107.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 105, "moving_avg_flight_count": 102 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 102.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 91.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 116, "moving_avg_flight_count": 95.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 133, "moving_avg_flight_count": 102.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 115, "moving_avg_flight_count": 107.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 168, "moving_avg_flight_count": 133 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 134.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 132.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 131, "moving_avg_flight_count": 136.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 135, "moving_avg_flight_count": 128.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 117, "moving_avg_flight_count": 127.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 127.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 135, "moving_avg_flight_count": 128.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 112, "moving_avg_flight_count": 122.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 121.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 142, "moving_avg_flight_count": 125.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 122 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 148, "moving_avg_flight_count": 131 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 137, "moving_avg_flight_count": 137 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 131 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 145, "moving_avg_flight_count": 137 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 107, "moving_avg_flight_count": 126.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 123 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 120.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 129, "moving_avg_flight_count": 116.5 } ] }, { "destination": "CLT", "flight_count": 7113, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 100 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 95.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 103.33333333333333 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 102 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 116, "moving_avg_flight_count": 106 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 102, "moving_avg_flight_count": 108.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 112, "moving_avg_flight_count": 107 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 120, "moving_avg_flight_count": 112.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 106.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 114, "moving_avg_flight_count": 109.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 105, "moving_avg_flight_count": 107.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 132, "moving_avg_flight_count": 110.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 138, "moving_avg_flight_count": 122.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 123.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 96, "moving_avg_flight_count": 121 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 120, "moving_avg_flight_count": 118 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 114.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 113 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 120, "moving_avg_flight_count": 119 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 114 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 106.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 103.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 120, "moving_avg_flight_count": 103.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 109.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 133, "moving_avg_flight_count": 119.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 113.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 113.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 114 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 111.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 160, "moving_avg_flight_count": 131.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 130, "moving_avg_flight_count": 134.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 130, "moving_avg_flight_count": 135.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 141, "moving_avg_flight_count": 140.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 88, "moving_avg_flight_count": 122.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 105.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 92.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 75.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 73.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 80.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 85.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 89 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 87.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 84 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 81 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 80.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 82, "moving_avg_flight_count": 82.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 81.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 79 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 79.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 76.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 76.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 72.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 68.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 79.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 88 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 94 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 93.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 97 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 104, "moving_avg_flight_count": 100 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 105, "moving_avg_flight_count": 102.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 101.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 97.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 97.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 92.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 93.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 107, "moving_avg_flight_count": 97 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 93.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 94.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 92.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 83 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 72.75 } ] }, { "destination": "SEA", "flight_count": 7000, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 99, "moving_avg_flight_count": 99 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 99.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 102.33333333333333 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 99.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 105.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 108.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 109.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 116.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 108.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 93.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 114, "moving_avg_flight_count": 94 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 87 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 91 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 100.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 91.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 104, "moving_avg_flight_count": 95.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 89.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 92 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 103 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 117, "moving_avg_flight_count": 106.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 104.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 91.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 80.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 70.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 65.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 62.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 64.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 64.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 72.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 87.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 90.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 105, "moving_avg_flight_count": 97.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 92 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 92 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 91 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 90.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 109, "moving_avg_flight_count": 100.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 102.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 100 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 97 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 95 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 97.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 116, "moving_avg_flight_count": 105.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 96, "moving_avg_flight_count": 106.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 106.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 104 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 101.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 107, "moving_avg_flight_count": 104.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 104.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 101.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 97.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 94 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 92.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 97.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 107 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 109.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 116 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 117.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 115.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 120.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 112.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 88, "moving_avg_flight_count": 105.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 104 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 96.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 87 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 94.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 107, "moving_avg_flight_count": 93.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 90 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 103.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 100.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 96 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 104.25 } ] }, { "destination": "MCO", "flight_count": 6796, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 119 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 105.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 111 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 106.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 102, "moving_avg_flight_count": 102 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 103.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 99, "moving_avg_flight_count": 97.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 96, "moving_avg_flight_count": 98.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 96.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 101.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 100.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 99 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 92.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 81.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 85 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 86.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 94.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 97.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 99, "moving_avg_flight_count": 95 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 94.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 88, "moving_avg_flight_count": 91.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 90.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 85.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 80.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 79.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 79.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 84.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 86.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 96.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 97 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 94.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 97.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 88.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 90.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 102, "moving_avg_flight_count": 93.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 97.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 92 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 91.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 86.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 77.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 79 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 75.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 76 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 76.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 74.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 70 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 63.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 67.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 73.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 80 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 86.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 86.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 91.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 94.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 94.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 97.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 89.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 89.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 95 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 109, "moving_avg_flight_count": 97.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 112, "moving_avg_flight_count": 105.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 107.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 112.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 137, "moving_avg_flight_count": 119.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 118.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 99, "moving_avg_flight_count": 117.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 112, "moving_avg_flight_count": 114 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 104.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 115, "moving_avg_flight_count": 106.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 131, "moving_avg_flight_count": 114.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 116.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 137, "moving_avg_flight_count": 126 } ] }, { "destination": "DCA", "flight_count": 6695, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 49 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 55 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 58.333333333333336 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 57.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 57.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 57.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 57.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 61.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 63.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 64.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 62.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 59.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 59.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 57.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 62.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 64.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 73 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 78 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 69 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 67.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 53.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 36.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 32 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 24.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 25.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 29.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 30.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 31.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 30.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 35.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 38.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 38.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 46.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 47.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 50 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 47.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 42 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 120, "moving_avg_flight_count": 60 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 139, "moving_avg_flight_count": 82.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 100 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 121.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 124, "moving_avg_flight_count": 122.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 149, "moving_avg_flight_count": 124.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 156, "moving_avg_flight_count": 139.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 124, "moving_avg_flight_count": 138.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 138.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 120, "moving_avg_flight_count": 131.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 119.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 113.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 110.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 110.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 109, "moving_avg_flight_count": 110.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 109, "moving_avg_flight_count": 113 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 109.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 140, "moving_avg_flight_count": 114 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 117, "moving_avg_flight_count": 116 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 115, "moving_avg_flight_count": 117.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 143, "moving_avg_flight_count": 128.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 124.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 126 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 145, "moving_avg_flight_count": 133.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 153, "moving_avg_flight_count": 136 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 137, "moving_avg_flight_count": 139.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 206, "moving_avg_flight_count": 160.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 231, "moving_avg_flight_count": 181.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 185, "moving_avg_flight_count": 189.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 210, "moving_avg_flight_count": 208 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 239, "moving_avg_flight_count": 216.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 168, "moving_avg_flight_count": 200.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 191, "moving_avg_flight_count": 202 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 177.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 132.75 } ] }, { "destination": "IAH", "flight_count": 6623, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 41 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 37 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 39.333333333333336 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 43 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 47.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 54.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 56.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 56.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 57.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 57.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 63 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 61.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 65.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 64.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 52.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 56.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 49 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 53 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 56.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 52.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 51.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 46 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 48.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 48.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 50.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 51.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 49.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 50.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 43.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 45.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 45.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 44.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 49 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 46.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 47.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 52.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 82, "moving_avg_flight_count": 62.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 63.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 69 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 71.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 81 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 99.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 95, "moving_avg_flight_count": 104.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 108.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 109, "moving_avg_flight_count": 105.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 142, "moving_avg_flight_count": 109.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 111.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 114, "moving_avg_flight_count": 117 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 131, "moving_avg_flight_count": 122.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 116.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 115.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 120, "moving_avg_flight_count": 117.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 114 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 115 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 109, "moving_avg_flight_count": 117.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 173, "moving_avg_flight_count": 130.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 165, "moving_avg_flight_count": 142.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 141, "moving_avg_flight_count": 147 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 129, "moving_avg_flight_count": 152 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 147, "moving_avg_flight_count": 145.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 136.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 142, "moving_avg_flight_count": 136.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 173, "moving_avg_flight_count": 147.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 199, "moving_avg_flight_count": 160.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 186, "moving_avg_flight_count": 175 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 163, "moving_avg_flight_count": 180.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 205, "moving_avg_flight_count": 188.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 181, "moving_avg_flight_count": 183.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 167, "moving_avg_flight_count": 179 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 150, "moving_avg_flight_count": 175.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 162, "moving_avg_flight_count": 165 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 141, "moving_avg_flight_count": 155 } ] }, { "destination": "MDW", "flight_count": 6614, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 73 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 70.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 67.33333333333333 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 68.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 64.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 65.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 66.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 68.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 71.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 68.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 62 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 53.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 49 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 45.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 42.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 44.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 48.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 51.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 63.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 66.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 62.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 68 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 67 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 64.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 68.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 62 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 62.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 68.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 70.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 76 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 74 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 72.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 66.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 68.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 87, "moving_avg_flight_count": 74 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 74 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 91 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 100.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 108.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 112, "moving_avg_flight_count": 119.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 104 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 91.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 80 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 69 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 70.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 70.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 66.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 73 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 81.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 104, "moving_avg_flight_count": 90.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 105.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 115, "moving_avg_flight_count": 110.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 113.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 115.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 138, "moving_avg_flight_count": 120.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 118.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 133, "moving_avg_flight_count": 122.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 126.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 124, "moving_avg_flight_count": 123 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 128 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 152, "moving_avg_flight_count": 132.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 146, "moving_avg_flight_count": 137.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 114, "moving_avg_flight_count": 135 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 147, "moving_avg_flight_count": 139.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 176, "moving_avg_flight_count": 145.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 172, "moving_avg_flight_count": 152.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 184, "moving_avg_flight_count": 169.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 203, "moving_avg_flight_count": 183.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 165, "moving_avg_flight_count": 181 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 167.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 153.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 115, "moving_avg_flight_count": 131.5 } ] }, { "destination": "BOS", "flight_count": 5799, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 66 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 61.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 65 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 64.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 62 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 59.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 61.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 62.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 67 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 72.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 70.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 67.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 64.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 58 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 62.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 70 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 117, "moving_avg_flight_count": 84.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 117, "moving_avg_flight_count": 102.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 114, "moving_avg_flight_count": 109.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 105.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 99, "moving_avg_flight_count": 101.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 114, "moving_avg_flight_count": 100.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 99, "moving_avg_flight_count": 96.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 95.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 88.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 77.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 68 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 66.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 61.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 55.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 56 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 53.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 53 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 53.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 48.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 46.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 44.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 41.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 41.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 40.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 40.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 45.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 54.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 61.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 65.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 69.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 70.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 73.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 83.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 132, "moving_avg_flight_count": 98.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 105.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 107.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 104, "moving_avg_flight_count": 109.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 128, "moving_avg_flight_count": 108.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 105, "moving_avg_flight_count": 106.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 138, "moving_avg_flight_count": 118.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 118 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 111 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 111.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 100.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 106.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 115, "moving_avg_flight_count": 110.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 100.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 102, "moving_avg_flight_count": 102.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 102.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 118, "moving_avg_flight_count": 103 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 113.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 122, "moving_avg_flight_count": 118.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 118 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 115 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 109.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 93 } ] }, { "destination": "EWR", "flight_count": 5137, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 51 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 52.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 54 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 49.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 50 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 47.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 45 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 49.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 44.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 43.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 47.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 49 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 48.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 48.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 39.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 36 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 45.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 48 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 52.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 58.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 49.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 47.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 44.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 34 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 34 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 31.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 31 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 32.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 33.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 35 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 38 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 41.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 42.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 43.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 43.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 40 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 46.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 58.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 72.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 89.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 87, "moving_avg_flight_count": 94.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 98.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 105.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 123, "moving_avg_flight_count": 110.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 105.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 102 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 119, "moving_avg_flight_count": 100.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 91.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 93.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 94.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 91.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 107, "moving_avg_flight_count": 96.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 95 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 99 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 154, "moving_avg_flight_count": 111 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 105, "moving_avg_flight_count": 110.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 115.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 137, "moving_avg_flight_count": 121.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 115, "moving_avg_flight_count": 112 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 109, "moving_avg_flight_count": 113 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 115.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 110, "moving_avg_flight_count": 108.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 107, "moving_avg_flight_count": 106.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 95, "moving_avg_flight_count": 103.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 102.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 96, "moving_avg_flight_count": 98.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 90.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 86.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 101, "moving_avg_flight_count": 87.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 89.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 92 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 92.75 } ] }, { "destination": "CLE", "flight_count": 5125, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 36 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 32.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 31 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 31 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 30 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 30 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 29.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 30.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 29.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 27.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 26.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 24.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 24.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 23.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 25.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 28 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 30.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 38 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 35.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 33 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 32 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 22.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 22.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 25.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 23.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 27.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 28 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 23.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 23.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 23 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 22.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 27.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 27.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 26.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 41.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 53.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 71 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 85.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 84.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 86.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 107, "moving_avg_flight_count": 89 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 103, "moving_avg_flight_count": 95.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 88.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 89.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 82.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 80.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 107, "moving_avg_flight_count": 92.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 102, "moving_avg_flight_count": 95.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 127, "moving_avg_flight_count": 107.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 106, "moving_avg_flight_count": 110.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 113, "moving_avg_flight_count": 112 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 117.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 143, "moving_avg_flight_count": 121.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 125, "moving_avg_flight_count": 126.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 120.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 129, "moving_avg_flight_count": 121.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 109, "moving_avg_flight_count": 113.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 130, "moving_avg_flight_count": 114.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 140, "moving_avg_flight_count": 127 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 135, "moving_avg_flight_count": 128.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 129, "moving_avg_flight_count": 133.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 133, "moving_avg_flight_count": 134.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 133, "moving_avg_flight_count": 132.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 167, "moving_avg_flight_count": 140.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 150, "moving_avg_flight_count": 145.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 152, "moving_avg_flight_count": 150.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 116, "moving_avg_flight_count": 146.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 141, "moving_avg_flight_count": 139.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 133, "moving_avg_flight_count": 135.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 158, "moving_avg_flight_count": 137 } ] }, { "destination": "OAK", "flight_count": 5082, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 58 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 60 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 57.666666666666664 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 54.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 57.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 54.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 53.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 55.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 51.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 56.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 55.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 56 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 63 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 59.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 59 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 58 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 51.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 49.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 55 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 56 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 58.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 62.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 63.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 66.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 82, "moving_avg_flight_count": 71.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 68.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 63.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 62.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 59 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 59.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 62.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 62.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 61 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 61 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 63.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 64.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 102, "moving_avg_flight_count": 74.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 77.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 77.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 82 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 77.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 77.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 83 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 80.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 83.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 87 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 85 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 85.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 78 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 75.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 70.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 87, "moving_avg_flight_count": 72.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 74.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 72 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 70.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 72.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 76.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 85.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 87 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 83 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 79.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 74.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 78 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 79.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 80 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 81 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 85.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 88, "moving_avg_flight_count": 86.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 89.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 99, "moving_avg_flight_count": 93.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 87, "moving_avg_flight_count": 90.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 91.5 } ] }, { "destination": "SAN", "flight_count": 5080, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 58 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 54 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 54.333333333333336 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 58.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 59.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 65 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 68.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 70.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 71.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 68 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 67.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 66 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 66.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 67.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 63.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 62.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 62 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 64.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 69 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 73.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 72 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 69.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 70.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 68.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 72.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 70.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 67.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 64.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 65.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 70.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 71.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 78 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 73 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 75.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 75.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 75.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 80.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 71 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 70.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 61.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 56.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 64 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 69.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 73.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 87, "moving_avg_flight_count": 79.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 78.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 78.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 79.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 75.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 76 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 72.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 72.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 82, "moving_avg_flight_count": 74.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 73 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 69.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 68.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 66 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 67.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 68.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 73.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 73.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 73.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 80.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 77 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 74.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 75.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 97, "moving_avg_flight_count": 78.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 75.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 66.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 88, "moving_avg_flight_count": 72 } ] }, { "destination": "TPA", "flight_count": 4881, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 90 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 79 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 77.66666666666667 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 73 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 60.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 58.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 52.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 51.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 54 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 54.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 54.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 57.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 61.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 60.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 60.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 59.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 61.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 61 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 63.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 62 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 58.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 57.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 62.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 66.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 69 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 72.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 71.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 71.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 71.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 70.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 70 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 69 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 73.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 78.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 76.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 76 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 72 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 67.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 68 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 68 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 68.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 65.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 59.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 58.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 56.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 60.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 57.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 60.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 63 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 61.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 69.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 68.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 71 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 73.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 75.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 73.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 69.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 69.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 69.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 77.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 79.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 81.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 78.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 80.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 74.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 68.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 88, "moving_avg_flight_count": 72 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 70.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 81 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 78.5 } ] }, { "destination": "PIT", "flight_count": 4507, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 66 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 67 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 66.66666666666667 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 69.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 87, "moving_avg_flight_count": 74.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 76.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 78.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 80.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 82 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 82.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 80 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 75.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 69.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 64.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 67 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 87, "moving_avg_flight_count": 71.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 72.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 76.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 77.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 71 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 67 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 63.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 61.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 69.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 76 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 96, "moving_avg_flight_count": 84.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 84.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 78 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 80.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 72.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 74.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 77.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 68.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 68.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 67 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 61 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 61 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 56.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 50.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 48.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 49.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 51.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 47.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 52 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 49 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 46.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 44.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 36.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 29 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 24.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 25.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 28.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 32.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 42.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 58.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 66.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 111, "moving_avg_flight_count": 83.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 79.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 78.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 80.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 67.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 66 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 53.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 53.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 54.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 61 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 70.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 64.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 62.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 57 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 49 } ] }, { "destination": "SFO", "flight_count": 4502, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 64 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 59 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 61.333333333333336 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 58.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 60.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 60.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 59.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 62.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 56.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 56.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 54.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 50 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 50.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 49.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 52.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 56.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 59.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 63.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 66.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 65.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 63.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 62.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 60 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 59.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 57 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 55.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 49.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 52 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 55.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 57.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 62 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 61.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 60.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 58.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 55.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 53.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 53.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 51.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 50.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 49 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 47.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 44.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 48 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 54 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 57.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 58.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 57.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 55.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 54.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 58 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 61.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 63.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 67 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 71.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 69.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 70.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 68.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 68.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 71.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 74.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 76.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 75.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 75.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 74.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 72.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 76 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 80.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 79.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 82.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 94, "moving_avg_flight_count": 84.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 84.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 86 } ] }, { "destination": "BNA", "flight_count": 4279, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 72 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 58.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 57.666666666666664 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 59.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 55.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 56.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 59.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 58.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 59.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 62.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 55.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 53 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 55 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 55.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 55.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 60.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 57.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 56.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 59 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 56.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 52.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 51 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 53.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 51.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 53 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 53.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 51.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 59 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 65.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 67.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 71 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 66.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 63.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 61.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 55.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 51.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 49 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 46.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 49.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 50.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 48.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 53.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 55 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 62.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 63.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 59.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 59 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 55.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 57.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 58 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 54.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 56.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 57.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 61 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 67.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 66.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 70.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 73.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 71.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 71.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 74 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 69.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 70 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 69.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 64.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 66.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 68.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 65.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 63.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 62.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 56.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 55.25 } ] }, { "destination": "STL", "flight_count": 4098, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 51 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 49.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 45.666666666666664 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 45.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 45.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 47 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 53.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 55.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 53.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 58.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 56.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 55.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 55.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 47.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 45.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 46.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 50.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 58.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 63.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 68.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 68.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 63.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 61.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 55.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 56.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 57.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 57.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 59.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 58 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 59.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 60.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 56.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 52.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 50.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 52.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 54 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 57.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 54 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 50.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 50.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 47.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 53.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 56.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 66 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 72.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 75.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 72 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 61.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 54.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 46.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 47.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 47.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 47 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 49 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 47.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 51 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 57.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 59.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 90, "moving_avg_flight_count": 68.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 70.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 70.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 66.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 61.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 59.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 57 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 63 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 59.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 60.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 61.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 57.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 58 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 61 } ] }, { "destination": "MCI", "flight_count": 4081, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 46 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 46 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 48.666666666666664 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 51.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 54.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 57.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 59.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 59.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 62.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 66.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 65 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 63.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 60 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 53.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 54 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 51.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 56.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 63 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 62.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 68.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 64 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 60.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 62.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 58.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 57 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 56.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 53.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 51.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 51.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 51.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 52.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 59 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 61.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 62.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 61.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 56.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 54.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 52 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 53 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 50.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 49.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 48.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 47 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 50 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 54.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 56.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 56.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 56.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 50.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 49.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 48 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 47 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 50.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 51 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 54.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 57 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 61.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 67.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 71.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 70.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 67.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 60.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 58 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 59 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 60.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 62.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 61 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 57.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 53.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 52.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 50.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 51.75 } ] }, { "destination": "IAD", "flight_count": 3932, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 38 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 38.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 42.333333333333336 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 46 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 49.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 48.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 50.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 45 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 44.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 46.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 42.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 42.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 42.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 40 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 40.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 42.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 42.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 44.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 43.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 46.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 45.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 47.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 47.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 46.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 51.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 47.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 51.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 48 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 42.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 43.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 40.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 42.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 46 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 50.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 54.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 56.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 56.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 52.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 56 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 58 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 59 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 62.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 60.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 55.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 52 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 48 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 45 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 48.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 49 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 49.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 51.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 48 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 54 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 61.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 65.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 73.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 73.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 70.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 71.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 73.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 76.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 76 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 74, "moving_avg_flight_count": 74.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 73 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 69.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 68.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 68 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 63.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 62.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 65 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 66.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 72.25 } ] }, { "destination": "SJC", "flight_count": 3818, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 54 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 52 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 46.333333333333336 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 49.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 51 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 47.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 50.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 49 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 46.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 49.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 49 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 48 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 47.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 47.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 45.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 48.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 50 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 53.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 55.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 57.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 57 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 55.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 58.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 56 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 57.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 60.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 60.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 58.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 63 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 61.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 57.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 61 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 58 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 57.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 58.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 54.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 53 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 48.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 47.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 46.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 46 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 46.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 46.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 49.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 50.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 50.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 51 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 48.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 42.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 43.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 42 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 40.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 44.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 44.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 45.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 50.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 50.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 51.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 60 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 59.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 61 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 62.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 55.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 55.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 55.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 56.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 60.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 61.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 60.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 60 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 56.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 60.75 } ] }, { "destination": "JFK", "flight_count": 3698, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 31 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 29 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 27.333333333333332 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 26.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 27 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 28 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 31.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 34.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 34.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 31.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 27.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 24.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 21.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 19.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 82, "moving_avg_flight_count": 34.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 49 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 59 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 71.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 66.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 93, "moving_avg_flight_count": 69 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 64.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 63.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 64.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 59.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 64 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 62.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 56.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 48 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 40 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 36.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 30.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 29 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 30.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 28.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 34.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 35.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 47.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 75, "moving_avg_flight_count": 58.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 70.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 79.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 71.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 65.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 58.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 56 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 54.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 55.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 52.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 49.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 53.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 50.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 52.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 51.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 50.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 56 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 55.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 54.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 54.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 57 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 57.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 60 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 58.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 52 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 50.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 53.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 56.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 59.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 62.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 58.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 62.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 72.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 75.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 91, "moving_avg_flight_count": 86.25 } ] }, { "destination": "FLL", "flight_count": 3608, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 42 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 47.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 48.333333333333336 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 49.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 48.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 44.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 43.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 40.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 41 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 43 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 40.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 40.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 39 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 40.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 39.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 44.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 45.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 43.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 51 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 48.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 45.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 44.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 38.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 35.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 41.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 41.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 45.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 52 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 50.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 54.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 54 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 48.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 46.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 44 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 41 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 43.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 43 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 46.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 50 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 51.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 52.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 47.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 49 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 45.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 42.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 42.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 41.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 44.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 52 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 55 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 58 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 59 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 60 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 58.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 51.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 51.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 47 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 54.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 58 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 58.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 60 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 54.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 56.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 56.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 59.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 60.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 60.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 63.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 62.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 63.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 73, "moving_avg_flight_count": 66.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 80, "moving_avg_flight_count": 68.75 } ] }, { "destination": "PDX", "flight_count": 3602, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 58 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 50 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 50.666666666666664 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 48 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 44 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 45 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 45.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 48.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 51 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 50.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 49 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 45.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 42 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 43.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 43.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 42.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 49.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 50.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 50 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 53.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 48.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 49.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 51 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 52 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 47.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 41.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 43 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 44.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 48.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 51.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 53.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 51.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 76, "moving_avg_flight_count": 59.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 63.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 62.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 60.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 55.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 54.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 46.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 52 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 77, "moving_avg_flight_count": 56.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 58.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 66 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 67.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 61 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 56.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 51 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 47.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 46.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 46.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 47.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 48 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 47.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 46.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 43.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 47.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 48 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 46.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 51.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 47 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 46.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 48.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 49.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 47.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 45.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 47.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 45.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 48.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 49.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 49 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 50.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 48.75 } ] }, { "destination": "SMF", "flight_count": 3580, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 47 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 44.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 48 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 48.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 49.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 48.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 46.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 46 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 45.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 45 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 43 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 40.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 41 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 41.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 40.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 41.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 39.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 39.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 42.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 46.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 45.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 49 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 48 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 45.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 49.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 44.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 49 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 46.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 44.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 49.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 51.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 56.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 58.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 57.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 51.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 51.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 47.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 45.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 42 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 40.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 46.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 47.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 50 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 51.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 50.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 51 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 50.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 48.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 46.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 49 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 49 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 48.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 53 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 51.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 50 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 51.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 47.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 46.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 55.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 56.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 61 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 64.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 60.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 61 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 57.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 56.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 59 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 59.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 61 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 59.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 55 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 55 } ] }, { "destination": "HOU", "flight_count": 3428, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 46 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 51.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 57.333333333333336 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 55.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 58.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 54.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 48 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 46 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 42.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 42.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 42.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 44.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 50.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 66, "moving_avg_flight_count": 57 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 55.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 58.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 52.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 50.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 55.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 51.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 49.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 48.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 42 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 40 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 42.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 38.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 42.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 44.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 44 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 45 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 42.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 43 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 39.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 41 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 43.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 42.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 44 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 45.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 43.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 47.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 53.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 51 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 50.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 45.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 38.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 39 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 39.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 41.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 44.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 43.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 44.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 43.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 42 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 42.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 41.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 44 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 46.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 52.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 55 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 55 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 55.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 49.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 47.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 48.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 47.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 67, "moving_avg_flight_count": 54.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 55.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 54 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 55 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 53 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 50.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 52.25 } ] }, { "destination": "CVG", "flight_count": 3292, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 11 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 13.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 9.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 7.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 7.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 10.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 10 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 7 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 13.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 134, "moving_avg_flight_count": 43 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 61.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 87, "moving_avg_flight_count": 81 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 89.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 64.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 55.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 47.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 48.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 49.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 50 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 48.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 49.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 59.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 85, "moving_avg_flight_count": 67.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 86, "moving_avg_flight_count": 77.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 87 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 121, "moving_avg_flight_count": 97.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 108, "moving_avg_flight_count": 103.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 110, "moving_avg_flight_count": 109.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 98, "moving_avg_flight_count": 109.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 102, "moving_avg_flight_count": 104.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 100, "moving_avg_flight_count": 102.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 140, "moving_avg_flight_count": 110 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 105, "moving_avg_flight_count": 111.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 83, "moving_avg_flight_count": 107 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 92, "moving_avg_flight_count": 105 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 71, "moving_avg_flight_count": 87.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 65, "moving_avg_flight_count": 77.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 84, "moving_avg_flight_count": 78 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 89, "moving_avg_flight_count": 77.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 78, "moving_avg_flight_count": 79 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 88, "moving_avg_flight_count": 84.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 79, "moving_avg_flight_count": 83.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 81, "moving_avg_flight_count": 81.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 88, "moving_avg_flight_count": 84 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 76 } ] }, { "destination": "MSY", "flight_count": 3265, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 42 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 37 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 39.666666666666664 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 39 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 37.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 37.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 34 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 30.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 29.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 31.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 32.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 38.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 42.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 42 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 38 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 35.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 35.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 36.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 43 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 45.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 40.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 39.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 38 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 35 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 38.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 39.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 39 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 39.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 40.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 45 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 47.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 50.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 50.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 48.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 47.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 46.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 46.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 44.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 46.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 48 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 48.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 48 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 51.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 51 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 50 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 52.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 50.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 69, "moving_avg_flight_count": 55.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 72, "moving_avg_flight_count": 62.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 64.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 66.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 64, "moving_avg_flight_count": 65 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 62.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 61.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 60.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 58.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 54.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 54.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 52.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 52 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 55, "moving_avg_flight_count": 54.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 52.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 53.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 70, "moving_avg_flight_count": 58 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 61, "moving_avg_flight_count": 59.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 62.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 60.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 58 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 44.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 31.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 21.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10 } ] }, { "destination": "ABQ", "flight_count": 2762, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 59 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 52 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 51.666666666666664 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 51.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 50 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 45.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 41 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 38.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 34.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 35 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 35.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 35 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 37.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 41.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 39.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 38.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 36.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 32.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 38 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 41.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 41.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 43 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 41.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 41 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 39.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 37.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 35.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 30.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 31.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 32.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 35.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 40.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 42.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 44.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 45 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 43.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 42.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 40.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 38.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 36.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 34.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 36.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 37.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 39 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 39.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 37.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 36.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 34.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 33.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 33.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 35.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 35.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 31.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 30.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 27.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 30 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 31.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 34.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 36 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 35.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 40.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 39.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 42 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 41.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 36.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 38 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 35.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 39 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 41 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 40.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 41 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 39.5 } ] }, { "destination": "SLC", "flight_count": 2745, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 60 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 55.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 54 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 51 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 47.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 41.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 38.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 40 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 39.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 44.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 42.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 40.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 38.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 35 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 36.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 38.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 39.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 42.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 40.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 40 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 40 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 36.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 41.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 41.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 42 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 45 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 43 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 41.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 39 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 37.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 38.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 63, "moving_avg_flight_count": 45 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 47.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 45.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 44.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 36 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 34.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 37 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 38.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 38.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 38 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 36.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 36.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 40 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 39.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 41.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 38.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 34.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 32.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 29 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 29 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 28.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 28.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 30.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 33.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 34.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 37.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 35.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 32.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 34 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 33.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 31.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 29 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 27.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 29.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 33 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 36.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 37.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 36.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 37 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 35.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 38.5 } ] }, { "destination": "ONT", "flight_count": 2645, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 37 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 40.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 37 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 35.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 35 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 31.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 30.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 31.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 32 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 33.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 34.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 35 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 36.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 35.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 34.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 33.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 35.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 36.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 40 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 39.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 36 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 35.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 36.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 36.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 38.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 38 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 35.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 34.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 32.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 32.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 33.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 33.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 36.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 38.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 37.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 39 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 35 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 30.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 27.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 26.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 29.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 30.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 37.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 41.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 41.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 45.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 40.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 35 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 34.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 30.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 28.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 31.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 33.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 34 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 32.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 35.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 31.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 34.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 44 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 44.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 51 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 50.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 46 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 46.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 42 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 40 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 40.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 38 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 43.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 45.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 41 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 42.75 } ] }, { "destination": "RDU", "flight_count": 2457, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 32 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 30 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 30 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 29.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 30.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 29.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 31 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 31.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 31.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 35.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 34.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 34 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 33 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 27 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 24.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 26.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 27.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 32.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 37 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 58, "moving_avg_flight_count": 42.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 38.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 34.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 36.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 30.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 37.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 40 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 35.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 38.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 40.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 48.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 52.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 52.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 50.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 39.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 37.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 37 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 30.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 32.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 32.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 29 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 30 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 29 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 22.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 20 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 22.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 23.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 25.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 27.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 25.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 28.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 26.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 31.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 32.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 34.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 37.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 33 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 35.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 35 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 38.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 40.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 40 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 38 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 38 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 39 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 39.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 38.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 37.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 38 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 35.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 39.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 37.5 } ] }, { "destination": "MIA", "flight_count": 2369, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 38 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 40.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 37 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 37.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 36.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 35 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 54, "moving_avg_flight_count": 41 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 41 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 42.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 41.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 34.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 56, "moving_avg_flight_count": 39.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 41 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 41.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 46 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 47.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 44.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 43.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 39.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 37.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 34.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 36.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 35.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 31.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 33 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 28 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 31 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 29 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 27.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 29.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 30.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 31.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 34.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 34.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 30.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 29.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 30 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 31.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 59, "moving_avg_flight_count": 40.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 43.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 40 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 35.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 29.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 28.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 28 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 31.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 30.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 31.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 32 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 35.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 40.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 39 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 43.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 44.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 39.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 42.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 38.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 32.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 32.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 27.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 28 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 28 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 27.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 23.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 21 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 17.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 13.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 15 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 17.25 } ] }, { "destination": "PVD", "flight_count": 2364, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 24 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 18 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 22.666666666666668 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 23.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 22.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 26.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 25.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 24.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 26.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 26.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 28.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 30.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 32 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 29.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 53, "moving_avg_flight_count": 33.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 35.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 36.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 40.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 39.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 41 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 40.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 41.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 37.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 31.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 29 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 27.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 27.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 32.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 34.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 35 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 38.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 38 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 38.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 38.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 34.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 34.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 33.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 30.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 30 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 29.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 27.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 30.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 32.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 29.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 31.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 31.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 27 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 30 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 27.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 29.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 34.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 31.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 30.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 27.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 28 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 28.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 30.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 36.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 35.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 40.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 40.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 35.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 36 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 34.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 37.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 38.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 35 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 36.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 36.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 40 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 42.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 39.5 } ] }, { "destination": "MEM", "flight_count": 2250, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 34 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 33.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 33 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 33 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 29.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 30 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 30.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 31.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 33.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 34 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 47, "moving_avg_flight_count": 37 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 35.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 35.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 37.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 34.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 37.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 41 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 52, "moving_avg_flight_count": 43 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 43 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 42 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 40.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 32.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 29.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 25.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 23.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 24.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 25.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 25.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 25.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 24 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 25.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 27.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 25.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 29.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 28.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 30.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 32.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 32.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 34.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 33.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 33.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 33 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 29 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 27.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 24.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 24 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 24.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 28.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 30.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 31.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 31.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 29.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 30.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 31.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 34.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 34.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 35.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 36.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 38.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 37.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 38.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 37.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 32 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 30 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 26.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 26.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 28.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 29.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 29.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 26.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 24.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 23.5 } ] }, { "destination": "IND", "flight_count": 2229, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 18 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 17.666666666666668 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 17.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 18.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 17 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 18.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 21.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 23 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 28.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 31 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 30.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 29.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 25.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 23 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 22.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 25.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 26.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 26.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 24.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 26.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 23 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 21.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 21 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 19.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 22 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 27.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 26.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 27.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 27.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 26.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 28.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 27 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 24.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 27.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 26.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 32 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 39.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 34.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 37 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 34.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 30.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 34.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 32.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 33 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 34.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 36.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 39.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 62, "moving_avg_flight_count": 46 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 45.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 43.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 39.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 31 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 33.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 36 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 39.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 42.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 42.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 40.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 39 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 41.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 43.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 45.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 44 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 40 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 37.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 36.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 40 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 39 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 34 } ] }, { "destination": "BDL", "flight_count": 2162, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 29 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 28.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 33 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 32.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 31.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 28.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 25.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 28 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 29.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 33 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 33.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 27.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 26.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 26.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 26 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 31 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 32.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 33.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 34 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 32.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 29.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 29.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 31.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 33.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 40.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 41.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 42.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 41.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 39.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 57, "moving_avg_flight_count": 44.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 38.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 40.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 39.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 36.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 38.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 34 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 30 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 24 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 20.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 22.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 23.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 48, "moving_avg_flight_count": 30 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 35 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 34.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 34.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 29.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 28.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 27.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 25.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 24.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 21 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 21.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 24.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 24.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 23.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 21.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 23 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 25.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 22.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 23.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 22.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 21.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 25.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 26.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 27.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 28.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 29.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 33.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 33.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 34.5 } ] }, { "destination": "AUS", "flight_count": 2091, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 29 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 24 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 22 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 23.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 24.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 26 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 29 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 30.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 29.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 30.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 28.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 28.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 30.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 31.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 32.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 31.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 28.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 28 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 29 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 51, "moving_avg_flight_count": 34.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 35 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 34.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 31.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 24.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 23.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 21.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 23.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 23.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 23.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 26 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 25.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 24.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 22.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 26.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 26.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 27 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 27.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 23 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 23 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 25.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 26.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 29.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 30 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 31 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 29 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 29.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 28.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 26.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 27 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 28 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 29.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 31.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 31.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 28.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 27.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 27.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 30 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 29.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 31 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 30.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 30 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 34 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 34 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 35.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 34 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 35.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 36.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 34 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 34.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 34 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 33.75 } ] }, { "destination": "RNO", "flight_count": 1988, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 27 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 30.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 28.333333333333332 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 28.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 30.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 28.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 29.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 28.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 24.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 24.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 21.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 20.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 25.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 25.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 27.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 26.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 23.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 23 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 23.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 27 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 25.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 26 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 25.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 23 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 22.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 21.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 21.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 24.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 25.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 26.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 26.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 23.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 24.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 25.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 28.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 29.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 28 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 29 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 26 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 24.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 27 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 27 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 26.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 27.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 27.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 25.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 26 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 25.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 24 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 27 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 27.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 27.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 30.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 30.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 28.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 29.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 26.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 26.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 32 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 31.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 33 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 30.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 28.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 41, "moving_avg_flight_count": 32.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 30.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 33.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 45, "moving_avg_flight_count": 35.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 34.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 35.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 34 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 30.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 44, "moving_avg_flight_count": 32.25 } ] }, { "destination": "BUR", "flight_count": 1945, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 24 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 24 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23.333333333333332 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 24 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 24 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 25.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 27.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 25.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 25.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 24.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 22.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 25.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 30.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 27.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 27 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 25.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 20.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 25.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 26.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 24 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 23.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 28.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 26.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 25.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 25.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 22.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 23.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 24.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 25.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 25.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 25.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 26.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 26 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 26.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 24.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 26.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 28 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 29 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 33.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 29.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 28.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 29.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 26.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 26 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 24.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 23.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 23.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 25.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 24.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 23.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 26.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 28 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 29.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 30.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 28.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 33.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 37.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 38.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 38.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 30.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 28.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 27 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 27.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 32.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 31.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 32.5 } ] }, { "destination": "SNA", "flight_count": 1921, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 28 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 23 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 23 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 24 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 24.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 24.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 22.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 20.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 18.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 19.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 19.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 19.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 18 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 17.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 19.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 21.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 21.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 23.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 22 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 21.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 21.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 20 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 20.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 20.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 22.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 27.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 30.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 32.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 30.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 28.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 28 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 25.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 28.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 26.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 24 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 28 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 26 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 27.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 29.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 26.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 25.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 23.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 24 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 26 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 27.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 30 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 29.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 28.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 46, "moving_avg_flight_count": 32.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 31.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 33 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 31 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 24.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 22 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 25.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 28.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 34 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 34.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 33.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 34 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 31.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 29.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 30.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 30 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 31.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 34 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 34.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 35 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 34.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 35.5 } ] }, { "destination": "SAT", "flight_count": 1869, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 16 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 21.333333333333332 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 20.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 23.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 25.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 24 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 21.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 18.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 17.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 17.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 20 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 24.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 23.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 27.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 26 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 24 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 24.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 23.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 23 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 23.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 23.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 22.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 22 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 20.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 19.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 19.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 21.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 23.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 25.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 27 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 26.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 27 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 26.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 25.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 26 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 23.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 24 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 22.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 24.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 26.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 27 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 27.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 28.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 29.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 29 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 27.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 26.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 27.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 25.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 26 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 28.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 30 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 42, "moving_avg_flight_count": 33 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 34.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 33 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 36.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 35 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 32 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 32.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 28.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 25.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 27.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 29.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 30.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 33.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 32 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 32 } ] }, { "destination": "CMH", "flight_count": 1714, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 28 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 26 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 24.333333333333332 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 22.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 22.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 23.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 24 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 24.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 23.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 21.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 20 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 21.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 19 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 17.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 17.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 17.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 22.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 25.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 25.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 21.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 21.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 22.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 21.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 22.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 20.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 20.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 22 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 23.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 22.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 22.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 23 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 23.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 27.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 26.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 25.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 23.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 21 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 20.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 19.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 21 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 23 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 23 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 22.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 19 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 21 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 20.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 22 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 21.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 23.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 23.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 24.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 24.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 22.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 23.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 24.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 25.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 27.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 28.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 28 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 28.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 29 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 31 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 30.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 31.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 32.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 29.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 31.75 } ] }, { "destination": "DAL", "flight_count": 1662, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 29 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 29 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 50, "moving_avg_flight_count": 36 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 33 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 34.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 32.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 23.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 25.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 24.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 26.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 23 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 19.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 68, "moving_avg_flight_count": 32.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 33.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 34.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 33.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 25.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 26.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 26.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 31.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 28.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 24.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 19.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 17.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 19.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 17.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 17.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 17 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 15.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 19.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 18.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 19.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 18.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 16.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 18 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 16.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 18.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 18.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 19.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 19.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 18 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 18.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 15.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 17 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 21.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 18.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 14.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 20 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 23.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 22.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 17.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 18.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 18 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 21.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 24.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 24.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 27.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 26 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 25.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 27.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 25.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 27.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 60, "moving_avg_flight_count": 37.25 } ] }, { "destination": "MHT", "flight_count": 1631, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 28 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 23 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 25.666666666666668 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 24.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 24.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 27.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 23 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 20 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 18.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 13.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 14 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 13.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 16.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 19.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 22 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 22 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 23.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 23.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 21.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 20.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 18.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 17.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 18.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 20 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 20.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 21 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 19 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 18 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 17 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 17.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 19.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 23 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 22.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 19.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 20 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 18.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 19 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 19.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 19.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 20.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 21 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 21.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 22.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 22.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 22.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 26.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 29.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 26.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 23.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 21.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 19 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 20.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 23.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 40, "moving_avg_flight_count": 28.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 29.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 30 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 33.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 30.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 29.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 43, "moving_avg_flight_count": 32.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 30.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 28.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 31 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 25.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 26 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 26 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 25.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 26.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 26.5 } ] }, { "destination": "JAX", "flight_count": 1597, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 18 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 20 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 21.666666666666668 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 20.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 20.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 19.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 18.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 19.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 17.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 18.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 19.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 15.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 14.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 16 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 16 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 19.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 20.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 16.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 15.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 15.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 17.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 20.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 17.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 21.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 20 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 22.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 24.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 19.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 19.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 20.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 19 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 22.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 21.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 19.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 20.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 22 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 22.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 23.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 24.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 21 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 22.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 20.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 22.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 25.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 23.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 25.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 26 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 27 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 29.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 27.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 25.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 24.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 24.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 26.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 26.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 28 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 26.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 24 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 24.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 26.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 30.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 32 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 32.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 33 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 32 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 29.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 25.5 } ] }, { "destination": "ELP", "flight_count": 1434, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 28 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 24 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 24.666666666666668 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 25.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 25.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 23.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 22 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 20.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 19.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 21 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 20 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 20.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 19.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 21.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 20.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 18.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 18.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 17.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 19.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 20.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 22.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 22 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 22.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 22 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 24 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 22.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 21 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 22 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 19.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 21 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 21.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 20.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 18.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 16.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 17 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 18.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 17.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 18.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 15.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 16.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 17.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 16 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 16.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 18.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 18.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 19.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 19.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 16 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 15.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 16 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 16.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 15.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 16.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 17.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 19 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 22.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 22 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 23.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 23.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 24 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 24.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 26.75 } ] }, { "destination": "PBI", "flight_count": 1373, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 19 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 37, "moving_avg_flight_count": 23.333333333333332 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 22.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 19.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 17.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 10 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 8.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 38, "moving_avg_flight_count": 17.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 22 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 22.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 26.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 23.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 19 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 21.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 18 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 15.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 18.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 21 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 23.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 23.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 21.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 18.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 17.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 15.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 17 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 16.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 19.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 18.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 22.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 24.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 24 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 23.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 19.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 20 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 18.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 19.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 17.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 18.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 19.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 20 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 22.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 20.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 18.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 15.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 19.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 19.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 20.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 24.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 23.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 23.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 23 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 19.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 17 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 19.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 21.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 25.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 28.5 } ] }, { "destination": "ISP", "flight_count": 1288, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 12.333333333333334 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 20.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 18.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 19.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 16.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 15 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 17.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 15 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 17.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 16.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 18.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 20.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 23 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 28.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 27.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 26.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 27 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 22 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 17.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 17 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 15 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 14.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 16.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 17.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 16 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 15.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 13.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 16.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 15.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 16.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 14.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 17.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 17 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 19.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 18.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 17 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 14.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 14 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 15 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 18.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 16.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 15.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 21 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 23.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 25.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 27 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 24 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 24.75 } ] }, { "destination": "BUF", "flight_count": 1250, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5.333333333333333 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 12.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 18.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 19 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 22.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 24 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 21.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 23 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 23 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 23.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 21.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 18.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 15.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 13 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 14.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 16.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 17 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 17 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 17.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 17 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 13 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 14.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 16.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 16 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 16 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 15 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 14.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 11.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 14.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 18.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 20.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 22.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 20 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 20.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 22.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 26 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 28 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 24 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 21.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 15 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 15.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 19.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 19.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 23.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 25.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 28.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 30.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 33.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 29 } ] }, { "destination": "BHM", "flight_count": 1203, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12.666666666666666 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 15 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 16.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 17.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 13.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 10.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 15 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 15.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 16.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 16.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 15.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 13.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 14 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 18.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 17.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 20 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 20.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 22 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 20.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 19.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 18 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 16.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 18 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 19 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 20.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 20.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 19.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 20.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 20.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 21.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 21.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 20.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 22.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 23.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 22.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 24 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 22.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 23.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 22.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 21.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 21 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 19 } ] }, { "destination": "RSW", "flight_count": 1168, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 16 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 19 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 21.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 23.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 22.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 17.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 12.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 15.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 16 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 18 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 21 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 19.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 21.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 19 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 15.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 14 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 13.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 12.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 11 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 13.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 15.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 18.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 22 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 19.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 14.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 10 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 8.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 14.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 19.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 23.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 26.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 28.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 25.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 23.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 17.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 21 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 23.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 21.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 18.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 15.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 17.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 21 } ] }, { "destination": "MKE", "flight_count": 1133, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 10 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 11.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 9.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 8.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 9.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 8.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 12.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 14 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 17 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 16.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 20.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 17.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 17.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 18.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 19.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 23.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 26.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 29.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 30.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 30.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 29.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 27.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 27.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 26 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 24.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 23.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 23.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 23.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 22 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 24.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 22 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 22.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 19.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 15.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 16.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.5 } ] }, { "destination": "ALB", "flight_count": 1108, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.6666666666666665 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 7.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 14 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 11 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 9.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 15 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 19.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 20.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 21.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 17.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 16 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 15 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 13.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 13.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 16 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 15 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 15.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 14 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 15.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 20 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 21.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 22 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 22.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 21.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 20.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 20 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 22.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 24.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 23 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 20.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 17.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 16.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 18.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 18.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 19.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 22.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 21.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 23.5 } ] }, { "destination": "TUS", "flight_count": 1064, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 17 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 17 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 16.333333333333332 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 14.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 16.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 15 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 17 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 17.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 17.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 17.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 16.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 16.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 15 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 16 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 15.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 12.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 11.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 15.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 14.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 16.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 14.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 16 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 14 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 16 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 18.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 17 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 16.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 15.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 17 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 16.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 18.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 15.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 12.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 15.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 17.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 16.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 15.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14.25 } ] }, { "destination": "SDF", "flight_count": 1001, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 16 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.333333333333334 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 9 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 11 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 11.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 9 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 9.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 11.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 9.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 12 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 11.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 15 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 16 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 16.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 18.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 17.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 18.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 16 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 14.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 17.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 19.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 20 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 19 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 16.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 19.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 21 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 20.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 19.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 18 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 19.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 20.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 21.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 20.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 18.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 17.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14.25 } ] }, { "destination": "TUL", "flight_count": 987, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.333333333333334 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 9.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 10.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 16.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 19 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 23.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 25.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 24.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 22 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 17 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 14.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 12.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 10 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 14 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 16.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 18.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 20.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 19.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 19 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 16 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 14.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 14.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 13.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 15.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 16.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 15.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 14.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 12.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 15.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 19 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 20.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 23.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 22.5 } ] }, { "destination": "RIC", "flight_count": 948, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 15.333333333333334 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 13.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 15 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 16.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 19 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 21.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 20 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 19 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 18.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 18.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 16.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 17.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 17.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 18.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 19.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 14.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 9.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 13.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 13.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 11 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 16.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 18 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 17.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 15.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 12 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 11.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 8.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 11.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.75 } ] }, { "destination": "OMA", "flight_count": 947, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.333333333333333 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 8.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 13 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 13.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 13.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 14.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 13 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 13.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 13 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 12.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 11 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 14.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 14.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 17.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 19.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 18.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 18.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 19.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 20.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 21.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 19.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 19.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 20.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 18.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.5 } ] }, { "destination": "GEG", "flight_count": 927, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10.666666666666666 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 14.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 14.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 13.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 13.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 14.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 15.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 16 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 18.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 15.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 13.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 12.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 11.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 9.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 11.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 14.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 12.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 14.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 15.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 14.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 15.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 16 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 14.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 11 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 12 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 16.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 15.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 18.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 17.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 15.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 11.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.25 } ] }, { "destination": "OKC", "flight_count": 907, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 7 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 8 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 8.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 9.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 8.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 9 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 11.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 13 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 17.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 22.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 21.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 20 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 16.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 14.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 19 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 17.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 14.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 18 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 20.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 21 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 22 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 21.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 16.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 15.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 17 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 18.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 20.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 19.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 17 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 18.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 18.25 } ] }, { "destination": "ORF", "flight_count": 888, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.666666666666667 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 12 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 15.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 18.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 18.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 19.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 22.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 19 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 16.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 15.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 10.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 12.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 16.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 17 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 15 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 11.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 16.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 15.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 13 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 13.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 12.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 14.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 17 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 19.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 24.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 24 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 21.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 19.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 17.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 16.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 20.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 22.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 23 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 17.75 } ] }, { "destination": "LIT", "flight_count": 854, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 8.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 11 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 9.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 10.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 9.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 9.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 21.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 23.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 22.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 21.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 20.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 18.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 18.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 21.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 20.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 19.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 20.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 20.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 20.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 21.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 22.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 22 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 21.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 21.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 16.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 17.25 } ] }, { "destination": "BOI", "flight_count": 795, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.333333333333334 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 12.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 11 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 12.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 13 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 13 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 11.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 11.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 12.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 12 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 10.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 8.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 11.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 12.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 11.25 } ] }, { "destination": "PFN", "flight_count": 789, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 16 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 17.333333333333332 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 17 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 18.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 19.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 18 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 20.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 17.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 18.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 19.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 18.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 20 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 19.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 18.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 18.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 20.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 21 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 21.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 20.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 17.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 19 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 18.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 21.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 22 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 22 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 26 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 25.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 29 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 49, "moving_avg_flight_count": 35.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 36.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 36.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 31.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 26.25 } ] }, { "destination": "ANC", "flight_count": 747, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 19 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 18.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 18.666666666666668 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 16.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 16.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 15 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 15.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 13.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 12.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 9.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 10.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 16.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 20.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 22 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 19.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 13 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 7 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 9.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 12.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 18.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 18 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 14.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 11 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 14.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 16 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 11 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 16.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 17.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 19 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.5 } ] }, { "destination": "AVL", "flight_count": 741, "non_averaged": [ { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.3333333333333335 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 10 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 14.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 21 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 21.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 22.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 22.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 18.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 19 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 20.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 22.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 20.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 17.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 15 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 17.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 21.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 24.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 22.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 24 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 18.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 15 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 15.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 19.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 24.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 26.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 26.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 22.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 20.25 } ] }, { "destination": "AGS", "flight_count": 737, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.666666666666666 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 13.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 14.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 16.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 17 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 16.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 15.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 18.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 18.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 18.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 19 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 14.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 17.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 20.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 22.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 24.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 34, "moving_avg_flight_count": 26 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 39, "moving_avg_flight_count": 29.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 31.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 35 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 35, "moving_avg_flight_count": 35.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 36, "moving_avg_flight_count": 34.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 32.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 29 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 24.25 } ] }, { "destination": "ROC", "flight_count": 735, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 14.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 14.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 16 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 17 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 20.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 19.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 17.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 14 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 9 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 9.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 10.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 10 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 13.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 12.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 15 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 15.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 13.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12 } ] }, { "destination": "CHA", "flight_count": 696, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 28 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 22 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 23.333333333333332 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 20.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 16.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 14.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 17.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 15 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 17.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 16.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 16.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 16.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 16.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 16.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 16 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 19.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 22 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 24.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 21.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 20.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 20.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 29, "moving_avg_flight_count": 22.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 30, "moving_avg_flight_count": 25.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 24.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 26.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 22.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 22 } ] }, { "destination": "LGB", "flight_count": 662, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 33, "moving_avg_flight_count": 12 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 11 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 12.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 17.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 17 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 18.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 16.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 17 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 15 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 9.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 16.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 14.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 12 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 10.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 8 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 10.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 15.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 18 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 18.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 18.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 17.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 19.75 } ] }, { "destination": "CSG", "flight_count": 651, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 22 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 15.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15.333333333333334 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 16 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 15.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 14.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 16 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 17.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 18 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 17.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 17 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 15.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 17 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 20 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 17.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 17 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 28, "moving_avg_flight_count": 18.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 23 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 25.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 28 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 27 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 21 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 19.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 19.25 } ] }, { "destination": "SJU", "flight_count": 648, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 9.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 10 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 11.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 13.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 18.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 19.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 19.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 17.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 13.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 12 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 13 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 13.5 } ] }, { "destination": "MYR", "flight_count": 616, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 8.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 8.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 12 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 13.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 11.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 11.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 12.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 13 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 14 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 20.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 18.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 19 } ] }, { "destination": "HSV", "flight_count": 608, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.666666666666667 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 13.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 17.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 21.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 20.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 23 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 20 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 18 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 19 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 12.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 9.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 14.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 14.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 7.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 } ] }, { "destination": "SYR", "flight_count": 598, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 6.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 12.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 9.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 6 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 8 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 12 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 16.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 15.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 9.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 14 } ] }, { "destination": "MDT", "flight_count": 587, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.333333333333334 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 10 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 16.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 17 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 15 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 12.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 10.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 11.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 13.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 14.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 13.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 9.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 8.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 16 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 14.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 9.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.5 } ] }, { "destination": "TRI", "flight_count": 568, "non_averaged": [ { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 9.333333333333334 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 12.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 17.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 14 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 14.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 11.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 12 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 13.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 16.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 18.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 18.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 20.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 19.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 21.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 22 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 20.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 21.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 19.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 18.75 } ] }, { "destination": "GRR", "flight_count": 514, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.333333333333333 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 7.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 14.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 10.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 10.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 13 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.75 } ] }, { "destination": "ABE", "flight_count": 509, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 12.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.666666666666666 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 9.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 10.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 12 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 16.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 16.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 12.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 10.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 12.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 14.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 14.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 9 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 10 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 9.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 11.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.25 } ] }, { "destination": "MGM", "flight_count": 504, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 8.666666666666666 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 8.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 10.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 14.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 20.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 21.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 24.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 31, "moving_avg_flight_count": 27 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 27, "moving_avg_flight_count": 27.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 25.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 23.25 } ] }, { "destination": "GNV", "flight_count": 493, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12.333333333333334 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 11 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 14 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 14.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 15 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 17.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 17 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 19 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 16 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 17 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 13 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 12.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 12 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 14 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.75 } ] }, { "destination": "ACT", "flight_count": 492, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 6 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 8.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 7 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 8.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 11 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 12.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 16 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 16 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 17.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16.25 } ] }, { "destination": "TYR", "flight_count": 482, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.666666666666667 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 10.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 9.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 9 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 13.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 15.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 16.75 } ] }, { "destination": "GSO", "flight_count": 470, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.6666666666666667 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 10 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 12.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 } ] }, { "destination": "CHS", "flight_count": 469, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.333333333333333 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 8.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 8.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 7 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 9.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 11.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 9.5 } ] }, { "destination": "TYS", "flight_count": 466, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 10.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 15 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 15.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 17.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 13.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 13 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 16.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 16.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 9.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7 } ] }, { "destination": "SPS", "flight_count": 456, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.333333333333333 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 9.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 11.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 15.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 17.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 18 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 32, "moving_avg_flight_count": 22 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 20 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 19.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 19 } ] }, { "destination": "CLL", "flight_count": 451, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.666666666666667 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 8 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 10.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 14.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.75 } ] }, { "destination": "LAW", "flight_count": 429, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.6666666666666665 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 12.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 15 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 16.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 14.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.75 } ] }, { "destination": "COS", "flight_count": 428, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 16 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.333333333333332 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 16 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 15.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 12 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 8.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 6 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.5 } ] }, { "destination": "LBB", "flight_count": 424, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 7 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.75 } ] }, { "destination": "ILE", "flight_count": 418, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 10 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 15.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 16.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 15.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 15.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 26, "moving_avg_flight_count": 14.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 14 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 11 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 12.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 24, "moving_avg_flight_count": 17.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 17.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 16 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 18 } ] }, { "destination": "SAV", "flight_count": 416, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.333333333333333 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 4 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 8.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 14.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 10.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 10 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 7 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 8.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.25 } ] }, { "destination": "DAY", "flight_count": 416, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 9.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 10.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 13.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 13.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 13 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 22, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 14.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 17 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.75 } ] }, { "destination": "MAF", "flight_count": 414, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 7.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 6 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 } ] }, { "destination": "SHV", "flight_count": 410, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 6.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 6 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 10 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 12.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 14 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 13.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 13 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 10.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 6 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 8 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 } ] }, { "destination": "VPS", "flight_count": 390, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 18 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 20.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 17.666666666666668 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 17.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 17.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 16 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 17.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 16.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 15 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 16.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 14.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 17.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 17.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 15.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 14 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 15.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 20, "moving_avg_flight_count": 16 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 15.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 12.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 9.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "CAE", "flight_count": 383, "non_averaged": [ { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.6666666666666667 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 8.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 8.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 23, "moving_avg_flight_count": 13.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 25, "moving_avg_flight_count": 16.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 15.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 15 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 10.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 } ] }, { "destination": "JAN", "flight_count": 357, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.333333333333333 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 6 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 } ] }, { "destination": "PWM", "flight_count": 328, "non_averaged": [ { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 8 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 8.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 14.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 11.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.75 } ] }, { "destination": "DHN", "flight_count": 323, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5.666666666666667 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 8.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 9.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 10.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.25 } ] }, { "destination": "HPN", "flight_count": 316, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.3333333333333335 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 8 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 9.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 8 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.5 } ] }, { "destination": "XNA", "flight_count": 315, "non_averaged": [ { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 10.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 12 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 14.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 13.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 12.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 12 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 9 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 12.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 14.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 13.5 } ] }, { "destination": "LEX", "flight_count": 311, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 8.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 11 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 9.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 9.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 10 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 7 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.25 } ] }, { "destination": "BTV", "flight_count": 309, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 14.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 12.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 13.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 11.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10.25 } ] }, { "destination": "ABI", "flight_count": 298, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.333333333333333 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 7.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 8.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 4 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.25 } ] }, { "destination": "AMA", "flight_count": 296, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.3333333333333335 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 2.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.5 } ] }, { "destination": "TLH", "flight_count": 288, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 9 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 13 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 13.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 12.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 10.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 9.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 6.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 8.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.75 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 7.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 } ] }, { "destination": "GPT", "flight_count": 277, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.333333333333333 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 21, "moving_avg_flight_count": 10.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 13.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 14.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 15.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 12.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 9.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 17, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 11.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 13.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 13 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 9.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 } ] }, { "destination": "BTR", "flight_count": 272, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.3333333333333335 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 6 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 6 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.25 } ] }, { "destination": "MSN", "flight_count": 272, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.25 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 8 } ] }, { "destination": "HNL", "flight_count": 267, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 12 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.5 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 7 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 8.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 10.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 13.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 19, "moving_avg_flight_count": 15.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 15 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 11.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 12 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.25 } ] }, { "destination": "GGG", "flight_count": 258, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.6666666666666667 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 7.5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.75 } ] }, { "destination": "DSM", "flight_count": 254, "non_averaged": [ { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 10.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 12.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 12.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 11.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 10.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 11 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.75 } ] }, { "destination": "GSP", "flight_count": 242, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 } ] }, { "destination": "PSP", "flight_count": 240, "non_averaged": [ { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.3333333333333335 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 6 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 6 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 } ] }, { "destination": "SJT", "flight_count": 225, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.6666666666666665 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 9.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 } ] }, { "destination": "VLD", "flight_count": 206, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 8.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 7 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 6.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 8 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 } ] }, { "destination": "TXK", "flight_count": 206, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.3333333333333335 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.25 } ] }, { "destination": "FSM", "flight_count": 202, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 5.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 9.25 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 8.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9.75 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 9.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 11.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 12.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 11.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 11.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 9.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 6 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 } ] }, { "destination": "SRQ", "flight_count": 195, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 4.333333333333333 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 6 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 } ] }, { "destination": "PNS", "flight_count": 192, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 } ] }, { "destination": "SGF", "flight_count": 185, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 8.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10.25 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 10.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 10.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 9 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 } ] }, { "destination": "HRL", "flight_count": 185, "non_averaged": [ { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 6.333333333333333 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.75 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 } ] }, { "destination": "ICT", "flight_count": 183, "non_averaged": [ { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 } ] }, { "destination": "CRP", "flight_count": 183, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 1.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 8 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 8 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 } ] }, { "destination": "LFT", "flight_count": 177, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.3333333333333335 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 6 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 7.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 12.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 11.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 9.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 7.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 } ] }, { "destination": "ROA", "flight_count": 163, "non_averaged": [ { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 6 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 7.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 } ] }, { "destination": "GRK", "flight_count": 162, "non_averaged": [ { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 18, "moving_avg_flight_count": 11.333333333333334 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 10 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 11 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 11, "moving_avg_flight_count": 12.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 10 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 9.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 7.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 7.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 8.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 9.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 10.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 8.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9.25 } ] }, { "destination": "MFE", "flight_count": 154, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.75 } ] }, { "destination": "ILM", "flight_count": 128, "non_averaged": [ { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 4.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 } ] }, { "destination": "MOB", "flight_count": 126, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.3333333333333335 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 3 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 } ] }, { "destination": "FAI", "flight_count": 114, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.75 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.75 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.75 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.75 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 } ] }, { "destination": "OGG", "flight_count": 111, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.6666666666666665 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4 } ] }, { "destination": "LRD", "flight_count": 106, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.3333333333333335 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 5.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.75 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 } ] }, { "destination": "MCN", "flight_count": 103, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 } ] }, { "destination": "BGR", "flight_count": 98, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 5.75 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9.25 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 9 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.5 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 12, "moving_avg_flight_count": 9.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 10, "moving_avg_flight_count": 8.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 7.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 } ] }, { "destination": "BRO", "flight_count": 94, "non_averaged": [ { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 } ] }, { "destination": "JAC", "flight_count": 85, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.3333333333333335 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 } ] }, { "destination": "FNT", "flight_count": 84, "non_averaged": [ { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 4.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6.25 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 6 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 16, "moving_avg_flight_count": 5.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 6.5 } ] }, { "destination": "FAY", "flight_count": 83, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 } ] }, { "destination": "FAR", "flight_count": 82, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 7 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.5 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.333333333333333 }, { "dep_month": "2000-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.75 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 } ] }, { "destination": "AEX", "flight_count": 79, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 15, "moving_avg_flight_count": 9.333333333333334 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 8.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 9.75 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 9.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 6 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.75 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 } ] }, { "destination": "BPT", "flight_count": 79, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.3333333333333335 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 } ] }, { "destination": "STT", "flight_count": 76, "non_averaged": [ { "dep_month": "2000-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 } ] }, { "destination": "PIE", "flight_count": 64, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 5 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 5.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 4 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 5.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 } ] }, { "destination": "BZN", "flight_count": 61, "non_averaged": [ { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 } ] }, { "destination": "FAT", "flight_count": 57, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.6666666666666667 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2001-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.25 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "AVP", "flight_count": 52, "non_averaged": [ { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 } ] }, { "destination": "GRB", "flight_count": 47, "non_averaged": [ { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3 } ] }, { "destination": "MSO", "flight_count": 42, "non_averaged": [ { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 } ] }, { "destination": "EVV", "flight_count": 42, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 7 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 5 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 4.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "LCH", "flight_count": 41, "non_averaged": [ { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 } ] }, { "destination": "TOL", "flight_count": 40, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.6666666666666665 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 } ] }, { "destination": "LAN", "flight_count": 40, "non_averaged": [ { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 6 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 4 }, { "dep_month": "2001-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3.3333333333333335 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 } ] }, { "destination": "CID", "flight_count": 40, "non_averaged": [ { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.6666666666666665 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 4 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 4.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "DLH", "flight_count": 39, "non_averaged": [ { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.6666666666666667 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 1.75 }, { "dep_month": "2002-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2002-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "GTR", "flight_count": 37, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 8 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 13, "moving_avg_flight_count": 9.666666666666666 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 7, "moving_avg_flight_count": 9 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 7 } ] }, { "destination": "MEI", "flight_count": 36, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 6 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 14, "moving_avg_flight_count": 8.666666666666666 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 8, "moving_avg_flight_count": 8.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 8.25 } ] }, { "destination": "FSD", "flight_count": 35, "non_averaged": [ { "dep_month": "2001-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 } ] }, { "destination": "DAB", "flight_count": 32, "non_averaged": [ { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.6666666666666667 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 } ] }, { "destination": "FWA", "flight_count": 32, "non_averaged": [ { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 } ] }, { "destination": "MTJ", "flight_count": 32, "non_averaged": [ { "dep_month": "2001-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2002-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 } ] }, { "destination": "CAK", "flight_count": 32, "non_averaged": [ { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 } ] }, { "destination": "CRW", "flight_count": 31, "non_averaged": [ { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.5 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 } ] }, { "destination": "SBN", "flight_count": 25, "non_averaged": [ { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 } ] }, { "destination": "EGE", "flight_count": 24, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2002-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 } ] }, { "destination": "KOA", "flight_count": 24, "non_averaged": [ { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 } ] }, { "destination": "ATW", "flight_count": 23, "non_averaged": [ { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 2 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 } ] }, { "destination": "RAP", "flight_count": 22, "non_averaged": [ { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 } ] }, { "destination": "EFD", "flight_count": 21, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.6666666666666667 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 } ] }, { "destination": "ERI", "flight_count": 21, "non_averaged": [ { "dep_month": "2000-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 } ] }, { "destination": "SBA", "flight_count": 19, "non_averaged": [ { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "AZO", "flight_count": 19, "non_averaged": [ { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 } ] }, { "destination": "ACY", "flight_count": 18, "non_averaged": [ { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 } ] }, { "destination": "GTF", "flight_count": 18, "non_averaged": [ { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 2.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 3 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 } ] }, { "destination": "FCA", "flight_count": 17, "non_averaged": [ { "dep_month": "2001-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 }, { "dep_month": "2002-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.6666666666666667 }, { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "MLI", "flight_count": 17, "non_averaged": [ { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 } ] }, { "destination": "BIL", "flight_count": 15, "non_averaged": [ { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.6666666666666667 }, { "dep_month": "2003-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 } ] }, { "destination": "MLU", "flight_count": 15, "non_averaged": [ { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.5 }, { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 6, "moving_avg_flight_count": 3.6666666666666665 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 3 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.5 } ] }, { "destination": "ACK", "flight_count": 15, "non_averaged": [ { "dep_month": "2003-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 5, "moving_avg_flight_count": 3 }, { "dep_month": "2003-08-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 3.3333333333333335 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.75 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.25 } ] }, { "destination": "LYH", "flight_count": 14, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 9, "moving_avg_flight_count": 9 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 6.5 }, { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 4.666666666666667 } ] }, { "destination": "BGM", "flight_count": 14, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 } ] }, { "destination": "SWF", "flight_count": 13, "non_averaged": [ { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 } ] }, { "destination": "SCE", "flight_count": 13, "non_averaged": [ { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.75 } ] }, { "destination": "HDN", "flight_count": 12, "non_averaged": [ { "dep_month": "2003-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 } ] }, { "destination": "ORH", "flight_count": 12, "non_averaged": [ { "dep_month": "2001-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-04-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2.5 }, { "dep_month": "2001-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2.3333333333333335 }, { "dep_month": "2001-06-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 2.75 }, { "dep_month": "2001-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2.5 } ] }, { "destination": "MLB", "flight_count": 10, "non_averaged": [ { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 } ] }, { "destination": "CHO", "flight_count": 9, "non_averaged": [ { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 } ] }, { "destination": "LNK", "flight_count": 9, "non_averaged": [ { "dep_month": "2000-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 4, "moving_avg_flight_count": 1.75 } ] }, { "destination": "BFL", "flight_count": 9, "non_averaged": [ { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2005-04-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 } ] }, { "destination": "BQN", "flight_count": 9, "non_averaged": [ { "dep_month": "2004-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-10-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.6666666666666667 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 2 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 2 } ] }, { "destination": "CMI", "flight_count": 8, "non_averaged": [ { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 1.75 } ] }, { "destination": "ABY", "flight_count": 6, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-05-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "BIS", "flight_count": 5, "non_averaged": [ { "dep_month": "2005-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-05-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.3333333333333333 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.25 } ] }, { "destination": "GUC", "flight_count": 5, "non_averaged": [ { "dep_month": "2000-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2002-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "HLN", "flight_count": 5, "non_averaged": [ { "dep_month": "2004-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2004-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.5 }, { "dep_month": "2004-09-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.6666666666666667 } ] }, { "destination": "DRO", "flight_count": 5, "non_averaged": [ { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2001-02-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1.6666666666666667 } ] }, { "destination": "HTS", "flight_count": 4, "non_averaged": [ { "dep_month": "2003-04-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "EUG", "flight_count": 4, "non_averaged": [ { "dep_month": "2001-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 }, { "dep_month": "2002-11-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 2 } ] }, { "destination": "HVN", "flight_count": 4, "non_averaged": [ { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "MRY", "flight_count": 3, "non_averaged": [ { "dep_month": "2000-02-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2000-03-01T00:00:00.000Z", "flight_count": 2, "moving_avg_flight_count": 1.5 } ] }, { "destination": "EYW", "flight_count": 3, "non_averaged": [ { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 3, "moving_avg_flight_count": 3 } ] }, { "destination": "VCT", "flight_count": 3, "non_averaged": [ { "dep_month": "2003-01-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-03-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "PSE", "flight_count": 3, "non_averaged": [ { "dep_month": "2005-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "STX", "flight_count": 3, "non_averaged": [ { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "TVC", "flight_count": 2, "non_averaged": [ { "dep_month": "2002-08-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2005-07-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "BQK", "flight_count": 2, "non_averaged": [ { "dep_month": "2003-10-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 }, { "dep_month": "2003-11-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "FLO", "flight_count": 1, "non_averaged": [ { "dep_month": "2004-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "MFR", "flight_count": 1, "non_averaged": [ { "dep_month": "2002-09-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "PHF", "flight_count": 1, "non_averaged": [ { "dep_month": "2004-12-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "ELM", "flight_count": 1, "non_averaged": [ { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "LSE", "flight_count": 1, "non_averaged": [ { "dep_month": "2005-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] }, { "destination": "ITH", "flight_count": 1, "non_averaged": [ { "dep_month": "2000-06-01T00:00:00.000Z", "flight_count": 1, "moving_avg_flight_count": 1 } ] } ]
WITH __stage0 AS ( SELECT group_set, base."destination" as "destination__0", CASE WHEN group_set=0 THEN COUNT(1) END as "flight_count__0", CASE WHEN group_set=1 THEN DATE_TRUNC('month', base."dep_time") END as "dep_month__1", CASE WHEN group_set=1 THEN COUNT(1) END as "flight_count__1", CASE WHEN group_set=1 THEN AVG((CASE WHEN group_set=1 THEN COUNT(1) END)) OVER(PARTITION BY group_set, base."destination" ORDER BY CASE WHEN group_set=1 THEN DATE_TRUNC('month', base."dep_time") END ASC NULLS LAST ROWS BETWEEN 3 PRECEDING AND 0 FOLLOWING) END as "moving_avg_flight_count__1" FROM '../data/flights.parquet' as base CROSS JOIN (SELECT UNNEST(GENERATE_SERIES(0,1,1)) as group_set ) as group_set GROUP BY 1,2,4 ) SELECT "destination__0" as "destination", MAX(CASE WHEN group_set=0 THEN "flight_count__0" END) as "flight_count", COALESCE(LIST({ "dep_month": "dep_month__1", "flight_count": "flight_count__1", "moving_avg_flight_count": "moving_avg_flight_count__1"} ORDER BY "dep_month__1" ASC NULLS LAST) FILTER (WHERE group_set=1),[]) as "non_averaged" FROM __stage0 GROUP BY 1 ORDER BY 2 desc NULLS LAST