Questions tagged [weatherdata]

An R package to download weather data from the Weather Underground website.

Resources:

  1. cran.r-project.org
  2. github
29 questions
0
votes
0 answers

How to plot actual and predictive values in LSTM machine learning model

I am working on a weather dataset from Istanbul, available on Kaggle (https://www.kaggle.com/datasets/vonline9/weather-istanbul-data-20092019?resource=download). I am trying to predict the rainfall amount using regression and LSTM methods, and…
0
votes
1 answer

Getting Weather data for All locations in US in python

Hello I have a code but it gives only weather data for one location how to loop it for all locations in USA. Below is my code. I have written two locations. Is it possible to read from file and get the data of all locations in USA. import…
Parker
  • 13
  • 5
0
votes
0 answers

How to extract Hourwise temperature of major cities using Python?

How can I extract temperature record of Indian cities on a specific day (say Feb 20, 2022) using web scrapping techniques in Python? Let’s consider the cities are Noida, New Delhi, Gurgaon, Chennai etc. Suppose we have a list of 200 Indian cities…
0
votes
0 answers

Can someone help me debug this code in R?

I have a weather data set for each experiment that is stored in a list called trimmed_data[[i]]. 1st data set from trimmed_data - original Degree Day values collected by weather stations newlist <- list() for(i in sequence(length(trimmed_data))){ …
0
votes
1 answer

Getting Daily Weather Forecasts from OpenWeatherMap API using Flutter

i have an issue with OpenWeatherMap API for hourly weather forecasts. i retrieved the 5 day/3 hours weather data from this api. But now i want daily weather forecasts. i am using this api but this one gives me this error, i tried many times but it…
0
votes
2 answers

Getting weather data for multiple stations conditional for specific dates in R

I have the following problem: For an analysis of weather effects on volunteers observing nature (animals, plants etc.) for a citizen science web page, I need to match the daily observations with the weather information of the nearest weather…
HelmiYeet
  • 17
  • 5
0
votes
1 answer

How to calculate daily evapotranspiration by hargreaves-samani equation and using python?

I have a ten-year weather data including maximum temperature (Tmax), minimum temperature (Tmin), rainfall and solar radiation (Ra) for each day. At first, I would like to calculate evapotranspiration (ETo) for each day using the following…
Mk2
  • 1
  • 2
0
votes
0 answers

how do we update information from open weather API after a button click in an android app

I am building a simple android app ,How do i refresh data from the open weather API,i have tried looking at a few ope source weather apps but haven't been succeeded.
0
votes
1 answer

splice or push problem with array of object with angular

push and splice is not working here. this is my model. i need this model to build my tables. splice remove everything and push doesn't do anything. export class Parameter { constructor( public asset: string, public wx: IWx[] ) { …
0
votes
1 answer

react native : How to display weather data for the next 24 hours and next 7 days

I am new to react native. I am writing a weather app with API on website https://darksky.net. How can i display weather data for the next 24 hours and next 7 days?
0
votes
0 answers

R: retrieving data via url with OSX El Capitan

My first question, so here goes. I've just updated to OSX El Capitan 10.11.4 and it seems to have broken the excellent weatherData package for me. weatherData essentially builds an http url to get data from Wunderground and this is where the problem…
David B
  • 1
  • 2
0
votes
1 answer

No output graphics in Shiny R

R users, and all programmers, I would like to ask a it of help for my first shiny application. Since I do not have computer science background, my question is probably trivial to many users out there. But if anybody can provide some clues, that…
jazzurro
  • 23,179
  • 35
  • 66
  • 76
-1
votes
1 answer

How do I drop NA values in a netcdf file?

I'm working with some weather data and have a netcdf file that gives me wave height. My goal is to match ports along a coast to the closest grid point. I pulled the data from the ERA5 data store. When requesting the data, you can specify the bounds…
Tham v
  • 51
  • 4
-2
votes
2 answers

How to rename multiple netCDF files in a folder with dates inside these using python script?

I have 28 files for example :- File -> day01.nc inside file:- | lat | lon | date | | --- | --- | -------- | | 7 | 68 | 2021-02-01| | 7 | 69 | 2021-02-01| File -> day02.nc inside file:- | lat | lon | date | | --- | --- | -------- …
1
2