RBA Cash Rate: 4.35% · 1AUD = 0.67 USD · Inflation: 4.1%  
Leading Digital Marketing Experts | 1300 235 433 | Aggregation Enquires Welcome | Book Appointment
Example Interest Rates: Home Loan Variable: 5.20% (5.24%*) • Home Loan Fixed: 5.48% (6.24%*) • Fixed: 5.48% (6.24%*) • Variable: 5.20% (5.24%*) • Investment IO: 5.78% (6.81%*) • Investment PI: 5.49% (6.32%*)
BeliefMedia WordPress Plugin Archive [ Installation Instructions | Plugins ]

Metar

This page exists as a landing page to support the Metar WordPress plugin. You may find additional information on our blog by searching the metar Tag: metar tag.

No Longer Available: This plugin is no longer available on this website or WP.org. It is currently scheduled for redevelopment. Australian data is no longer freely available although we expect to introduce new methods to obtain the applicable resources soon. Various examples in this article were removed.

If you're after specific code you can use in PHP applications, of you're after a standalone WordPress shortcode function, you'll want to search our website Tag: metar. This page is intended only to demonstrate usage of the plugin.

Note: All the results on this page are cached for up to a few hours so the data returned is likely invalid.

METAR will accomplish the following:

  • Include a METAR or TAF (sourced from the NOAA) website into your page.
  • Display temperature or pressure information only.
  • Source an Australian TAF and/or METAR from Airsevices Australia.
  • Source a list of reports applicable to an Australian ARFOR.

Display a TAF or METAR

If a request is made for an Australian location, the information is sourced from Airservices Australia. Otherwise we'll request the report from the NOAA (and return it only if the requested station exists ).

A Sydney (YSSY) metar is requested as follows: [metar loc="yssy"]. The result:

To display a TAF for JFK, we'll use the shortcode of [taf loc="kjfk"].

To display a report with the line breaks it was originally published with, use [taf loc="yssy" tidy="0"].

By default the report is wrapped in paragraph tags. To disable, use p="0".

Airport Temperature

The temperature (and dew point temperature) on a Metar report is almost always reported in Celsius. The following temperature results are based on data from KJFK. Again, the option to cache your report for longer or shorter than the default hour applies. To cache your report for two hours, use [temperature loc="kjfk" temp="1" cache="7200"], or to cache it for just 30 minutes, use [temperature loc="kjfk" temp="1" cache="1800"].

The bold text in the below results is my own to illustrate the differences between the returned temperatures.

  • Temperature (normalised integer °C) is [temperature loc="kjfk" temp="1"]
  • Dew Point Temp (normalised integer °C) is [temperature loc="kjfk" temp="2"]
  • Raw Temp (from Metar °C) is [temperature loc="kjfk" temp="3"]
  • Raw Dew Point Temp (from Metar °C) is [temperature loc="kjfk" temp="4"]
  • Temperature (°F) (normalised integer) is [temperature loc="kjfk" temp="5"]
  • Dew Point Temp (°F) (normalised integer) is [temperature loc="kjfk" temp="6"]
  • Raw report data is [temperature loc="kjfk" temp="7"]

In the examples above, the 'raw' temperature will return whatever is provided in the report. Negative temperatures will be prefixed with an 'M' and single digit temperatures will include a leading '0'.

Airport Pressure

To extract the aerodrome pressure from the report, the shortcode of [qnh loc="yssy"] should be used (where yssy is your location of choice). By default, we'll always return the QNH - not inches of mercury.

The shortcode of [qnh loc="yssy"] will output a QNH of .

A USA METAR report will normally prefix their pressure with an A for altimeter, while it's Q in most other parts of the world. Since QNH is the ICAO standard, it defaults to true, regardless of what pressure the report provides.

  • QNH JFK is [qnh loc="kjfk"]
  • Altimeter JFK is [qnh loc="kjfk" unit="0"]

Australian ARFOR Reports

To include all the METAR and TAFs within a specific Australian area, use the shortcode of [arfor loc="21"] (replacing 21 with whatever Australian area you're querying). The result can be viewed on this page.

Styling the Result

We didn't want to provide °C or °F extension as a default option because it limits the way in which you can present data. For example, the temperature in Sydney is currently °C (°F) ... but I could also just write that it's currently degrees.

SYD °C

In this example we have a string with the location, temperature, dew-point, and QNH:

YSBK T DP Q

The degrees symbol can be created with the string of °. To add it with your shortcode, use [temperature loc="yssy" temp="1" degrees="1"].

Showing Metar Reports in Widgets

There's are a couple of plugins that don't do anything other than provide a widget for various reports. We've avoided this in the first instance because shortcodes give you more freedom in how you format data and seriously flexibility in where you place it.

Since WordPress doesn't enable shortcodes in Widget areas by default, we've provided an option to enable the functionality. Navigate your way to [fmc bgcolor="#222222" bordercolor="#222222" fontcolor="#ffffff"]Settings[/fmc] ▶ [fmc bgcolor="#222222" bordercolor="#222222" fontcolor="#ffffff"]Metar Shortcode[/fmc] (once the plugin is activated) and you'll see the following option.

Metar

If your shortcodes are showing up in Widgets as plain text, and only if they're showing as text (and not rendering a result), select the option to 'Yes' and click [fmc bgcolor="#2ea2cc" bordercolor="#0074a2" fontcolor="#ffffff"]Update »[/fmc].

You then only have to drag a normal text widget into a sidebar, or another location that supports them, and include your shortcode.

Shortcode Attributes

[taf] and [metar]

loc

The four letter ICAO airport code. Must exist in the NOAA database. For Australian locations, most locations are returned.

tidy

Using tidy="1" will remove line breaks and return the report in a single string. Using tidy="0" will retain line breaks. Tidy by default.

p

By default the report will be returned in paragraph tags. If you're using any data in an inline sentence, use p="0" to remove them. p="1" (true) by default.

cache

The report will cache locally in your WP database for one hour by default (3600 seconds). To alter the cache period, use cache="1800" - where 1800 is the number of seconds; in this case, 30 minutes.

[temperature]

loc

The four letter ICAO airport code. Must exist in the NOAA database. For Australian locations, most locations are returned.

temp

As detailed above, the temp attribute determines what temperature is returned. Returns °C by default.

degrees

To include the degrees symbol (°) after the returned temperature, use degrees="1". False by default.

cache

The report will cache locally in your WP database for one hour by default (3600 seconds). To alter the cache period, use cache="1800" - where 1800 is the number of seconds; in this case, 30 minutes.

[qnh]

loc

The four letter ICAO airport code. Must exist in the NOAA database. For Australian locations, most locations are returned.

unit

By default all pressures are returned in hectopascals (or as a QNH). To return in inches of mercury, use unit="0"

cache

The report will cache locally in your WP database for one hour by default (3600 seconds). To alter the cache period, use cache="1800" - where 1800 is the number of seconds; in this case, 30 minutes.

[arfor]

loc

The four letter ICAO airport code. Must exist in the NOAA database. For Australian locations, most locations are returned.

cache

The report will cache locally in your WP database for one hour by default (3600 seconds). To alter the cache period, use cache="1800" - where 1800 is the number of seconds; in this case, 30 minutes.

The plugin will invariably be developed over time. Follow us on Facebook for updates.

Download

Currently not available. Back soon.

Download our 650-page guide on Finance Marketing. We'll show you exactly how we generate Billions in volume for our clients.

  E. Australia Standard Time [ UTC+10, Default ] [ CHECK TO CHANGE ]

  Want to have a chat?
 
Share on Facebook
Share on Twitter
Share on Linkdin
Share on Pinterest