ForecastMatrix Data Response

This object returns a collection of SingleForecast objects as an array, with each object corresponding to one GPS coordinate requested in the query batch.

Sample output

[
  {
    "latitude": 39.526,
    "longitude": -119.813,
    "hourly": [{ ... }],
    "daily": [{ ... }],
    "alerts": [{ ... }]
  },
  {
    "latitude": 39.526,
    "longitude": -120.513,
    "hourly": [{ ... }],
    "daily": [{ ... }],
    "alerts": [{ ... }]
  },
  ...
]