action amentum_app_api_wfs_endpoints_wfs_get_values { label: "Forecast winds, ion and molecular densities, and temperatures in the atmosphere\n" description: "at a given position and time on 42-48 hour forecast horizon (10 minute resolution). NOTE: latitudes outside the interval (-90,90) are clipped to the endpoints; longitudes outside (0,360) are wrapped. \n" provider: amentum method: GET path: "/wam-ipe" encoding: json input: { type: "object" properties: { altitude: { type: "number" } day: { type: "integer" } hour: { type: "integer" } latitude: { type: "number" } longitude: { type: "number" } minute: { type: "integer" } month: { type: "integer" } year: { type: "integer" } } required: ["altitude", "day", "hour", "latitude", "longitude", "minute", "month", "year"] additionalProperties: false } output: { type: "object" properties: { N2_density: { type: "object" description: "Molecular nitrogen density in (/m3).\n" properties: { units: { type: "string" } value: { type: "number" } } } O2_density: { type: "object" description: "Moleculary oxygen density in (/m3).\n" properties: { units: { type: "string" } value: { type: "number" } } } O_density: { type: "object" description: "Oxygen atomic density in (/m3).\n" properties: { units: { type: "string" } value: { type: "number" } } } eastward_wind_neutral: { type: "object" description: "Easterly component of neutral wind velocity in (m/s).\n" properties: { units: { type: "string" } value: { type: "number" } } } northward_wind_neutral: { type: "object" description: "Northerly component of neutral wind velocity in (m/s).\n" properties: { units: { type: "string" } value: { type: "number" } } } point: { type: "object" description: "The given point in the request." properties: { altitude: { type: "number" } latitude: { type: "number" } longitude: { type: "number" } } } temp_neutral: { type: "object" description: "Temperature of the atmosphere in (K).\n" properties: { units: { type: "string" } value: { type: "number" } } } total_mass_density: { type: "object" description: "Total mass density (kg/m3).\n" properties: { units: { type: "string" } value: { type: "number" } } } upward_wind_neutral: { type: "object" description: "Upward component of neutral wind velocity in (m/s).\n" properties: { units: { type: "string" } value: { type: "number" } } } } } }