All Projects → vbguyny → Ws4kp

vbguyny / Ws4kp

Licence: mit
WeatherStar 4000+

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ws4kp

rain-geojson-sg
Straight-forward API server to convert rain area radar images (Singapore) to GeoJSON
Stars: ✭ 15 (-85%)
Mutual labels:  weather, radar
nexradaws
This python package is designed to provide query and download capabilities to the NEXRAD archive available on Amazon Web Services (AWS). https://aws.amazon.com/public-datasets/nexrad/
Stars: ✭ 32 (-68%)
Mutual labels:  weather, radar
Wradlib
weather radar data processing - python package
Stars: ✭ 143 (+43%)
Mutual labels:  weather, radar
wetterdienst
Open weather data for humans
Stars: ✭ 190 (+90%)
Mutual labels:  weather, radar
Gsodr
Global Surface Summary of the Day ('GSOD') Weather Data Client for R
Stars: ✭ 72 (-28%)
Mutual labels:  weather
Bash Snippets
A collection of small bash scripts for heavy terminal users
Stars: ✭ 8,558 (+8458%)
Mutual labels:  weather
Srclimate
Concise style weather forecasting.
Stars: ✭ 63 (-37%)
Mutual labels:  weather
Xweather
A weather app for iOS and Android built with Xamarin
Stars: ✭ 62 (-38%)
Mutual labels:  weather
Pyrat
General purpose Synthetic Aperture Radar (SAR) postprocessing software package
Stars: ✭ 99 (-1%)
Mutual labels:  radar
Get noaa ghcn data
A tool to interface with and download Global Historical Climatology Network (GHCN) data into easily readable CSVs.
Stars: ✭ 83 (-17%)
Mutual labels:  weather
Xygrib
This is the new home for the development of zyGrib
Stars: ✭ 70 (-30%)
Mutual labels:  weather
Rwunderground
A simple R package to get historical and forecast weather data
Stars: ✭ 68 (-32%)
Mutual labels:  weather
Radarview
🍳 RadarView for Android 是一个雷达扫描动画后,然后展示得分效果的控件。
Stars: ✭ 73 (-27%)
Mutual labels:  radar
Knowweather
一款美观、实用的天气app。实践了模块化架构 和 Android Architecture Components
Stars: ✭ 1,138 (+1038%)
Mutual labels:  weather
Flutter weather bg
A rich and cool weather dynamic background plug-in
Stars: ✭ 89 (-11%)
Mutual labels:  weather
Air
Mac menu bar app to track Air Quality
Stars: ✭ 63 (-37%)
Mutual labels:  weather
Flask weather
☀️ ☔️ Flask app to auto-detect local weather based off of user's IP address.
Stars: ✭ 70 (-30%)
Mutual labels:  weather
Darksky
Python API wrapper for the DarkSky (async&sync)
Stars: ✭ 81 (-19%)
Mutual labels:  weather
Dark Sky Api
PHP Library for the Dark Sky API.
Stars: ✭ 70 (-30%)
Mutual labels:  weather
Build Your Own Radar
A library that generates an interactive radar, inspired by http://thoughtworks.com/radar/
Stars: ✭ 1,159 (+1059%)
Mutual labels:  radar

WeatherStar 4000+

About

Welcome to the WeatherStar 4000+ project page!

This project was originally created by Mike Battaglia in the Fall of 2016 because of the desire to create his own weather site which displayed the information in a way that was done by the Weather Channel in the mid to late 90's. Eventually he watched enough videos and YouTube and read enough articles on how to get and parse data directly from the National Weather Service (NWS) which allowed him to create his own version of the WeatherStar 4000. After three interations, he now considers the site feature complete and you can view the live version here: https://battaglia.ddns.net/twc

Segments

  • Current Conditions
  • Latest Observations
  • Travel Forecast
  • Regional Forecast
  • Regional Observations
  • Local Forecast
  • Almanac
  • Local Radar
  • Hazardous Weather

Features

  • Support for all 50 US states.
  • Utilitize mobile GPS.
  • Fullscreen mode.
  • Plays background music.
  • Uses narration to read the information on the screen (does not work in iOS).
  • Displays station, radar, and zone IDs for the current location.
  • 10 minute auto refresh setting.
  • Convert between English and Metric units.
  • Choose between three built-in themes.
  • Supply custom text to scroll at the bottom of the screen.

Setup

It is recommended that you download all of the source code to a folder and use Internet Information Services (IIS) 7.5 or later with ASP .NET 4.5 or later to create a virtual directory which points to this folder.

If you plan on exposing this site publicly, you will need to update the code in CORS/Default.aspx to have your public IP address and domain name:

	switch (Page.Request.Url.Host)
	{
		case "localhost":
		case "192.168.2.98":
		case "battaglia.ddns.net":
		case "[Your domain here]":
			OkToProcessRequest = true;
			break;
	}

Then use a browser to access the site by navigating to the index.html page.

NOTE: The GPS function will not work in Chrome 50 or later if the site is not using an SSL certificate.

CORS

The design of this site was to have as little back end logic on the server side as possible. However weather.gov has too many issues with cross-origin resource sharing (CORS). In order to work around CORS prevention in most browsers the AJAX calls go through a server first acting as a middle man which sends the request to weather.gov and the response back to the end user.

In order to setup CORS on your server you will need IIS 7.5 or later which is able to support ASP .NET 4.5 or later.

The live site uses itself as the CORS server however there are a few free third-party CORS servers that can be used if you are not able/willing to set one up yourself.

If you want to use them you will need to update the code in the routine $.ajaxCORS in the file twc3.js.

Disclaimer

This web site should NOT be used in life threatening weather situations, or be relied on to inform the public of such situations. The Internet is an unreliable network subject to server and network outages and by nature is not suitable for such mission critical use. If you require such access to NWS data, please consider one of their subscription services. The authors of this web site shall not be held liable in the event of injury, death or property damage that occur as a result of disregarding this warning.

The WeatherSTAR 4000 unit and technology is owned by The Weather Channel. This web site is a free, non-profit work by fans. All of the back ground graphics of this web site were created from scratch. The icons were created by Charles Abel and Nick Smith (http://twcclassics.com/downloads/icons.html) as well as by Malek Masoud. The fonts were originally created by Nick Smith (http://twcclassics.com/downloads/fonts.html). The music is copyrighted by the respective artists and/or label companies. The voices used by the narration is owned by the creators of the web browser that is used to access the web site.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].