Metnorway Tools¶
Configuration File: metnorway_tools.json
Tool Type: Local
Tools Count: 1
This page contains all tools defined in the metnorway_tools.json configuration file.
Available Tools¶
MetNorway_get_forecast (Type: BaseRESTTool)¶
Get weather forecasts for any global location from the Norwegian Meteorological Institute (MET No…
MetNorway_get_forecast tool specification
Tool Information:
Name:
MetNorway_get_forecastType:
BaseRESTToolDescription: Get weather forecasts for any global location from the Norwegian Meteorological Institute (MET Norway) Locationforecast API. Returns hourly or 6-hourly temperature, precipitation, wind, humidity, and cloud cover forecasts for up to 9 days. No authentication required, but a User-Agent header with contact info is requested. Excellent free alternative to paid weather APIs. Used by major weather services worldwide.
Parameters:
lat(number) (required) Latitude in decimal degrees (-90 to 90). Examples: 59.9139 (Oslo), 51.5074 (London), 40.7128 (New York), 48.8566 (Paris), 35.6762 (Tokyo)lon(number) (required) Longitude in decimal degrees (-180 to 180). Examples: 10.7522 (Oslo), -0.1278 (London), -74.0060 (New York), 2.3522 (Paris), 139.6503 (Tokyo)altitude([‘integer’, ‘null’]) (optional) Station altitude in meters above sea level. Optional. Improves forecast accuracy for mountain locations.
Example Usage:
query = {
"name": "MetNorway_get_forecast",
"arguments": {
"lat": "example_value",
"lon": "example_value"
}
}
result = tu.run(query)