Creating a Weather WML Page: Difference between revisions

From WeatherWiki
(Added categories and Note about relevance of the WAP/WML technology.)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
'''Purpose'''   Create a WML Web pages for use on a public Webs site and to transmit the pages to the WML server.
Wireless Application Protocol (WAP) provides a way for delivering Web-like pages on mobile devices. WML is the language used to create pages to be displayed in a WAP browser.
 
=== Enabling WAP files ===


'''Note:''' WML and WAP are old technologies dating back to the early 2000's and as such they are much less relevant in today's Internet where phones can be connected to servers at hundreds of megabits per second. The technologies may be useful in areas where access to weather data is needed but phone connectivity isn't good or is very expensive.
== Turn on WAP file creation ==
# On the main window in Weather Display, click '''Control Panel'''.
# On the main window in Weather Display, click '''Control Panel'''.
# Click '''FTP & Connections METAR/NOAA FTP'''.
# Click '''FTP & Connections METAR/NOAA FTP'''.
Line 15: Line 15:
# Click on the red '''Off''' button so that it becomes green and the label changes to '''On'''.
# Click on the red '''Off''' button so that it becomes green and the label changes to '''On'''.
# Click '''OK''' to save settings and return to the main Weather Display window.
# Click '''OK''' to save settings and return to the main Weather Display window.
 
== Create custom WML files ==
=== Custom WML file ===
 
Make sure the default .wml file is being created.
Make sure the default .wml file is being created.
# Return to the WAP screen as described above.
# Return to the WAP screen as described above.
# Select the ''Use my own Custom WAP file''' check box.
# Select the ''Use my own Custom WAP file''' check box.
Line 53: Line 50:
<nowiki>Minimum temperature: %mintemp% at %mintempt%<br/></nowiki><br>
<nowiki>Minimum temperature: %mintemp% at %mintempt%<br/></nowiki><br>
<nowiki>Maximum gust today: %maxgst% at %maxgstt%<br/></nowiki><br>
<nowiki>Maximum gust today: %maxgst% at %maxgstt%<br/></nowiki><br>
<nowiki>%time% %date%<br/></nowiki><br>
<nowiki>%time% %date%<br/></nowiki><br>
<nowiki><a href="http://personalpages.tdstelme.net/~flaplant/weather/wx.html">Home</a> <br/></nowiki><br>
<nowiki><a href="http://personalpages.tdstelme.net/~flaplant/weather/wx.html">Home</a> <br/></nowiki><br>
<nowiki><a href="http://www.weather-display.com/wap/index.wml">Created by Weather-Display</a></nowiki><br>
<nowiki><a href="http://www.weather-display.com/wap/index.wml">Created by Weather-Display</a></nowiki><br>
Line 59: Line 56:
<nowiki></card></nowiki><br>
<nowiki></card></nowiki><br>
<nowiki></wml></nowiki><br>
<nowiki></wml></nowiki><br>
The '''<nowiki><br/></nowiki>''' is optional and intended to force each entry onto a new line.
The '''<nowiki><br/></nowiki>''' is optional and intended to force each entry onto a new line.
[[Category:Weather Display]]
[[Category:Configuration]]
[[Category:Connectivity]]
[[Category:Tags]]

Latest revision as of 21:03, 7 May 2022

Wireless Application Protocol (WAP) provides a way for delivering Web-like pages on mobile devices. WML is the language used to create pages to be displayed in a WAP browser.

Note: WML and WAP are old technologies dating back to the early 2000's and as such they are much less relevant in today's Internet where phones can be connected to servers at hundreds of megabits per second. The technologies may be useful in areas where access to weather data is needed but phone connectivity isn't good or is very expensive.

Turn on WAP file creation

  1. On the main window in Weather Display, click Control Panel.
  2. Click FTP & Connections METAR/NOAA FTP.
  3. Click WAP tab.
    WAPCallouts.jpg
  1. Under Set up, type your weather station location name. For example, type Anywhere Weather.
  2. Type your home page Web address. For example, type http://www.example.com.
  3. Select the Nokia and/or USA format check boxes.
    Make sure the Use my own custom WAP file check box is not selected.
  4. Click Create WAP directory for first time.
  5. Click Test and then verify the WAP file (index.wml) is created in the webfiles folders.
  6. Enter a schedule for WAP uploads.
  7. Click on the red Off button so that it becomes green and the label changes to On.
  8. Click OK to save settings and return to the main Weather Display window.

Create custom WML files

Make sure the default .wml file is being created.

  1. Return to the WAP screen as described above.
  2. Select the Use my own Custom WAP file' check box.
  3. Use the index.wml file, located in the folder webfiles, as a starter. Rename the file waplocal.txt.

Note   Make sure you do not accidentlaly reaname the file as waplocal.txt.txt.

At the scheduled times, this file will be read and a new index.wml created using that format as a guide.

Replace actual weather conditions numbers with a custom tag. If you want to add other information, add an appropriate label and its custom tag. ("indoor temperature: %indoorhum%).

More information about using custom tags can be found on the Using Custom Tags page.

A simple WAP page might look like the following:

<?xml version='1.0'?>
<!DOCTYPE wml PUBLIC '-//WAPFORUM//DTD WML 1.1//EN' 'http://www.weather-display.de/DTD/wml_1.1.xml'>
<wml>
<head>
</head>
<card id="Weather-Display" title="Weather-Display">
<p>
CURRENT WEATHER REPORT FROM: LaddRd<br/>
6:23:57 PM 12/25/2002<br/>
Temperature: %temp%<br/>
Windspeed: %avgspd%<br/>
Gustspeed: %gstspd%<br/>
Direction: %dirlabel% %dirdeg%<br/>
Barometer: %baro%<br/>
Humidity: %hum% percent<br/>
Dew point: %dew%<br/>
Today's rain: %dayrn%<br/>
Maximum temperature: %maxtemp% at %maxtempt%<br/>
Minimum temperature: %mintemp% at %mintempt%<br/>
Maximum gust today: %maxgst% at %maxgstt%<br/>
%time% %date%<br/>
<a href="http://personalpages.tdstelme.net/~flaplant/weather/wx.html">Home</a> <br/>
<a href="http://www.weather-display.com/wap/index.wml">Created by Weather-Display</a>
</p>
</card>
</wml>
The <br/> is optional and intended to force each entry onto a new line.