I'm using GeoServer to display features stored in my Oracle db. Has anyone
tried using GeoServer to display weather data? I'm thinking there might be a
way to get weather data from weather.gov and either store it in a db or have
GeoServer access the data directly. I'm curious if someone has done this and
the best approach to take.
thanks
Dan
--
View this message in context: http://old.nabble.com/Displaying-weather-data-with-GeoServer-question-tp29279063p29279063.html
Sent from the GeoServer - User mailing list archive at Nabble.com.
I should have added, I'm thinking mainly about radar data, i.e. storms,
hurricanes.
Dan MacLeod wrote:
I'm using GeoServer to display features stored in my Oracle db. Has anyone
tried using GeoServer to display weather data? I'm thinking there might be
a way to get weather data from weather.gov and either store it in a db or
have GeoServer access the data directly. I'm curious if someone has done
this and the best approach to take.
thanks
Dan
--
View this message in context: http://old.nabble.com/Displaying-weather-data-with-GeoServer-question-tp29279063p29279092.html
Sent from the GeoServer - User mailing list archive at Nabble.com.
Dan,
I used a tutorial from Geoserver itself that talked about Hurricane tracks. The idea was to convert hurricane best track data from shape files (.shp) to Postgis. I think it was the best tutorial I have seen. Note, though, weather data is no different than any other data. The one thing that is perhaps unique in weather data is the use of wind barbs (and stream lines).
Wind barbs are directional (opposite direction of a vector) and contain speed information using "wind barbs". Would be interesting if anyone has used this symbol in GIS.
http://geoserver.org/display/GEOSDOC/Tropical+Storm+Tracking+with+PostGIS-GeoServer-GoogleEarth
aloha
-----Original Message-----
From: Dan MacLeod [mailto:dan.macleod@anonymised.com]
Sent: Tuesday, July 27, 2010 8:02
To: geoserver-users@lists.sourceforge.net
Subject: Re: [Geoserver-users] Displaying weather data with GeoServer question
I should have added, I'm thinking mainly about radar data, i.e. storms,
hurricanes.
Dan MacLeod wrote:
I'm using GeoServer to display features stored in my Oracle db. Has anyone
tried using GeoServer to display weather data? I'm thinking there might be
a way to get weather data from weather.gov and either store it in a db or
have GeoServer access the data directly. I'm curious if someone has done
this and the best approach to take.
thanks
Dan
--
View this message in context: http://old.nabble.com/Displaying-weather-data-with-GeoServer-question-tp29279063p29279092.html
Sent from the GeoServer - User mailing list archive at Nabble.com.
------------------------------------------------------------------------------
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share
of $1 Million in cash or HP Products. Visit us here for more details:
http://ad.doubleclick.net/clk;226879339;13503038;l?
http://clk.atdmt.com/CRS/go/247765532/direct/01/
_______________________________________________
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users
On Tue, Jul 27, 2010 at 2:01 PM, Dan MacLeod <dan.macleod@anonymised.com> wrote:
I should have added, I'm thinking mainly about radar data, i.e. storms,
hurricanes.
Have you seen http://www.nws.noaa.gov/gis/otherpage.htm ?
One of my students used the following OpenLayers code to add active
Hurricane tracks to her map
(http://webmapping.mgis.psu.edu/geoserver/www/lovely/Nlovely.html)
var trop= new OpenLayers.Layer.WMS(
"Tropical Cyclone Track Forecast",
"http://nowcoast.noaa.gov/wms/com.esri.wms.Esrimap/wwa?",
{
layers:
'NHC_TRACK_WWLIN,NHC_TRACK_LIN,NHC_TRACK_POLY,NHC_TRACK_PT,NHC_TRACK_PT_120DATE,NHC_TRACK_PT_72DATE,NHC_TRACK_PT_0NAMEDATE,NHC_TRACK_PT_120WLBL,NHC_TRACK_PT_72WLBL,NHC_TRACK_PT_MSLPLABELS',
styles: '',
height: '330',
width: '800',
srs: 'EPSG:4326',
transparent: true,
format: 'image/png'
},
{isBaselayer: false, singleTile: true, ratio: 1}
);
Ian
--
Ian Turton