Member Junction
    Preparing search index...

    Action that retrieves current weather information for a specified location using the Open-Meteo API which provides free weather data without requiring an API key.

    // Get weather by city name
    await runAction({
    ActionName: 'Get Weather',
    Params: [{
    Name: 'Location',
    Value: 'New York'
    }]
    });

    // Get weather by US city with state abbreviation
    await runAction({
    ActionName: 'Get Weather',
    Params: [{
    Name: 'Location',
    Value: 'New Orleans, LA'
    }]
    });

    // Get weather by coordinates
    await runAction({
    ActionName: 'Get Weather',
    Params: [{
    Name: 'Latitude',
    Value: 40.7128
    }, {
    Name: 'Longitude',
    Value: -74.0060
    }]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods