action ljaero_wx_by_poly_us_v1_wx_forecast_polygon_query_post { label: "Retrieve forecast values within given GeoJSON polygon for all requested weather elements and time periods." description: "Retrieve forecast values located within given area for requested weather elements and time period. Request body parameters are:\n* poly: [GeoJSON Polygon](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the area. Max allowed area is 1000 km^2.\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/polygon-query" encoding: json input: { type: "object" properties: { hours: { type: "integer" } poly: { type: "object" } wxtypes: { type: "array" items: { type: "string" } } "x-api-key": { type: "string" } } required: ["hours", "poly", "wxtypes"] additionalProperties: false } output: { type: "object" required: ["found"] properties: { found: { type: "object" } } } }