Weather.getCurrent not working
See original GitHub issueWeather.getCurrent doesn’t work. When changing it to a different city (e.g. London) it stays the same
<script>
Weather.getCurrent( "London", function( current ) {
$( "#current" ).html( "Temperature: " + current.temperature() + "°K or " +
Weather.kelvinToFahrenheit( current.temperature() ) + "°F or " +
Weather.kelvinToCelsius( current.temperature() ) + "°C" +
"<br />Current Conditions: " + current.conditions() );
});
Weather.getForecast( "London", function ( forecast ) {
$( "#forecast" ).html( "High: " + forecast.high() + "°K or " +
Weather.kelvinToFahrenheit( forecast.high() ) + "°F or " +
Weather.kelvinToCelsius( forecast.high() ) + "°C<br />Low: " +
forecast.low() + "°K or " +
Weather.kelvinToFahrenheit( forecast.low() ) + "°F or " +
Weather.kelvinToCelsius( forecast.low() ) + "°C" );
});
</script>`
Issue Analytics
- State:
- Created 7 years ago
- Comments:16 (5 by maintainers)
Top Results From Across the Web
Weather - Get Current Conditions - REST API (Azure Maps)
Get Current Conditions Applies to: see pricing tiers. Get Current Conditions service returns detailed current weather conditions such as precipitation, ...
Read more >Survey123 "Get current weather" in Microsoft Flow
I wanted to know if there is a solution that is available to grab the lat/long of a Survey123 submission and populate it...
Read more >Cannot get current location in my weather App.getlatitude ...
Android In my weather app I cannot get the current location and access its temperature.I think there is no problem with the api...
Read more >“Get Current Weather”action problem : r/shortcuts - Reddit
I'm curious why you are getting maps url from clipboard and trying to get weather there. What is your goal with this shortcut?...
Read more >FalconChristmas/FPP-Plugin-Weather: Get current ... - GitHub
FPP-Plugin-Weather. This plugin will retreive the current weather information for a specified location. This plugin requires the Message Queue to Matrix ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@RandomlyKnighted is correct. Unfortunately no solid date. I am working on it more consistently now though so I’ll get it out asap.
Is this fixed? I’m considering using weather.js.