action ljaero_wx_by_route_us_v1_wx_forecast_route_query_post { label: "Retrieve forecast values along a route for all requested weather elements and time periods." description: "Retrieve forecast values along route for requested weather elements and time period. Request body parameters are:\n* route: [GeoJSON Linestring](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the route. Max allowed length is 50 km.\n* wxtypes: list of one or more weather forecast elements you wish to retrieve. Allowed values are \"CIG\", \"DEWPT\", \"SKY\", \"TEMP\", \"VIS\", \"WINDDIR\", \"WINDGUST\", \"WINDSPEED\".\n* hours: number of hourly forecasts to return (1-24). For current hour only you should enter value of 1. To also retrieve values for each of the next n hours, enter n.\n\n\nThe response will consist of a GeoJSON FeatureCollection with one Feature for each forecast location found within requested area,\nproperties of which will include an ordered list of forecast values for each requested weather element, for each requested hour. Units for each element are as follows:\n* CIG: meters AGL\n* DEWPT: degrees Celsius\n* SKY: % cloud cover\n* TEMP: degrees Celsius\n* VIS: meters\n* WINDDIR: degrees true\n* WINDGUST: meters/sec\n* WINDSPEED: meters/sec" provider: ljaero method: POST path: "/us/v1/wx-forecast/route-query" encoding: json input: { type: "object" properties: { hours: { type: "integer" } route: { type: "object" } wxtypes: { type: "array" items: { type: "string" } } "x-api-key": { type: "string" } } required: ["hours", "route", "wxtypes"] additionalProperties: false } output: { type: "object" required: ["found"] properties: { found: { type: "object" } } } }