Questions tagged [weather]

For questions about scientific computing involving weather analysis and/or simulations. Any weather questions on this site should be programming-related.

This tag is for questions about scientific computing involving weather analysis and/or simulations. Appropriate questions for this tag could be:

  • How can I get the current temperature from a US zipcode?

  • What is an appropriate mesh size when interpolating measured air temperature data across a meso-scale weather station network?

  • How can I aggregate hourly wind velocity from a GRIB file to correlate with evaporative cooling?

Using this tag may indicate that you are asking an off-topic question ("What weather service APIs can I use in my application?"), or that you should be using a more specific tag for an API ("How do I get my local forecast from [superweather-api] in JSON format?").

797 questions
3
votes
1 answer

Parse Yahoo Weather RSS Feed

I need to parse the Yahoo Weather RSS feed for a place, like http://weather.yahooapis.com/forecastrss?w=44418&u=c for example, to get the high, low, current temperature and the weather image eg. sun and clouds image, for the current day. I'd like to…
Seb Jachec
  • 3,003
  • 2
  • 30
  • 56
3
votes
0 answers

Android PESDK - How to implement a WeatherProvider?

In order to use weather based smart stickers I need to add in a WeatherProvider object. In iOs it seems that there is a predefined class called OpenWeatherProvider that they can use, however Android seems to be less lucky. I tried taking a look at…
Mihai Fumarel
  • 160
  • 1
  • 14
3
votes
1 answer

Logging rainfall with Python

First post and I am at a dead end with this problem. (some background) I have a raspberry PiZero which I am developing a weather station with, so far it logs temp, humidity and pressure as well as sending the data to the windy.com API. Recently I…
DanF
  • 47
  • 6
3
votes
2 answers

How do I get access to the noaa rest api of the gfs data

I am interested in getting the GFS forecast data for Europe which is available for free from the following website: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs According this site NOAA provides rest APIs…
McDizzy
  • 189
  • 11
3
votes
6 answers

Get location name by giving ZIP codes

I need to display the location and city name when a user enters a ZIP Code. How do I get the corresponding location names?
karthik k
  • 3,751
  • 15
  • 54
  • 68
3
votes
1 answer

FLUTTER: How can I show the weather Icon from Open Weather Map?

I Would like to show open weather icons on my app but I'm not sure how I can do so. A sample of the data I'm getting from openweather map is below, and I've also included an example of how I'm getting the other data. My Code: import…
khalid
  • 63
  • 1
  • 9
3
votes
3 answers

Calculating ERA5 Daily Total Precipitation using CDO

Essentially, this is a repost of this question: https://confluence.ecmwf.int/pages/viewpage.action?pageId=149341027 I have downloaded ERA5 from the CDS. The input file has 24 hourly steps (0, 1, 2, 3, 4,..,23) for each calendar day starting from Jan…
Moritz Schwarz
  • 2,019
  • 2
  • 15
  • 33
3
votes
2 answers

Xcode Weather app

I want to try to make a weather app... but how do i get the weather info and use them in my app? I heard about Google IPA but how to use it?
Askapps
  • 69
  • 2
  • 12
3
votes
3 answers

Using COPY to import a .json file into a PostgreSQL table

I want to import some weather data (temperature, wind speed, ...) that is all formatted in a JSON file into a PostgreSQL 11 table so I can then make queries on that data. I've been able to manually insert some data into a table but that's only OK…
Adrien Dubédat
  • 31
  • 1
  • 1
  • 3
3
votes
1 answer

Weather data over maps

I am trying to plot some weather data over a map using Basemap (I'm open to trying cartopy also) on Python. Right now, my weather data looks like this. My data source is basically an array with each position corresponding to a square of the grid and…
3
votes
3 answers

Is there an API for ocean temperatures?

I've checked all of the questions here about weather API's and checked every single suggested API but still no luck! I need an API that includes the water temperature in its response. I'm using wunderground to get the weather forecast data I need,…
Layal - ليال
  • 908
  • 6
  • 13
3
votes
1 answer

Android - Retrofit - Query - Yahoo Weather

I'm trying to request the current weather to Yahoo using Retrofit. I'm facing an issue when trying to pass the city. I understand that I have to use @Query Yahoo queries are a bit complex and I'm not sure how to proceed. Here is my…
Isabelle
  • 1,457
  • 5
  • 19
  • 44
3
votes
0 answers

How can i display marker with weather information in google maps api android ? Or others method that can show the destination's weather

public class MapsActivity extends Activity { private static LatLng goodLatLng = new LatLng(37, -120); private GoogleMap googleMap; private EditText et_address, et_finalAddress; LatLng addressPos, finalAddressPos; Marker…
Ken
  • 31
  • 3
3
votes
1 answer

How can I manipulate the CDF of a sample such that it matches that of a different sample?

I want to use CDF matching to correct raw model forecasts of precipitation (but the application is fairly generic). Assuming CDF B below is the observed CDF (the CDF that I trust), I want to calculate the difference between CDF A and B so that on a…
mikecharles
  • 159
  • 8
3
votes
3 answers

How to present wind observation with leaflet.js

I'm a leaflet noob. I have some weather data and I'd like to display it using a leaflet map, but I'm having difficulty convincing myself that what I want to do is possible. Specifically I want to compare observed wind speed and direction with the…
Emma Hung
  • 35
  • 1
  • 6