widget.checkwx.comMETAR TAF Aviation Weather Display Widget

widget.checkwx.com Profile

widget.checkwx.com

Maindomain:checkwx.com

Title:METAR TAF Aviation Weather Display Widget

Description:Display live METAR TAF weather reports on your site.

Keywords:metar,taf,aviation,weather,api,widget,display,free,fbo...

Discover widget.checkwx.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

widget.checkwx.com Information

Website / Domain: widget.checkwx.com
HomePage size:23.23 KB
Page Load Time:0.273275 Seconds
Website IP Address: 69.164.219.220
Isp Server: Linode

widget.checkwx.com Ip Information

Ip Country: United States
City Name: Cedar Knolls
Latitude: 40.82194519043
Longitude: -74.448890686035

widget.checkwx.com Keywords accounting

Keyword Count
metar15
taf12
aviation1
weather3
api16
widget5
display3
free5
fbo2

widget.checkwx.com Httpheader

Server: nginx/1.14.2
Date: Fri, 07 Aug 2020 08:18:27 GMT
Content-Type: text/html
Last-Modified: Thu, 09 Jul 2020 23:39:04 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding
ETag: W/"5f07aa98-6ca4"
Content-Encoding: gzip

widget.checkwx.com Meta Info

charset="utf-8"/
content="width=device-width, initial-scale=1.0" name="viewport"/
content="text/html; charset=utf-8" http-equiv="Content-Type"/
content="Display live METAR TAF weather reports on your site." name="description"/
content="metar,taf,aviation,weather,api,widget,display,free,fbo" name="keywords"/
content="https://widget.checkwx.com/" property="og:url"/
content="METAR TAF Aviation Weather Display Widget" property="og:site_name"/
content="METAR TAF Aviation Weather Display Widget" property="og:title"/
content="Display live METAR TAF weather reports on your site." property="og:description"/

69.164.219.220 Domains

Domain WebSite Title

widget.checkwx.com Similar Website

Domain WebSite Title
widget.checkwx.comMETAR TAF Aviation Weather Display Widget
aviation.globalincidentmap.comA Continuously Updated Global Display Of Aviation Incidents And Accidents
bcaws.aviationweather.govAWC - Aviation Weather Center
maps.avnwx.comAvnWx.com Aviation Weather Map
testbed.aviationweather.govAWC - Aviation Weather Testbed
aviationweather.govAWC - Aviation Weather Center
avcams.faa.govFAA Aviation Weather Cameras - Home
novadisplay.comNova Display Systems, Inc | Cable/Rod & Rail Innovative Display Solutions
prysm.comInteractive Displays | Digital Wall Display | Touch Screen Display
weather-station.orgMark Hofmann's Weather Station (Bel Air, MD - USA) | Weather Forecasts | Weather Forums | Weather Ch
bbs.weather-station.orgMark Hofmann's Weather Station (Bel Air, MD - USA) | Weather Forecasts | Weather Forums | Weather Ch
taf.netTAF - Opinião
techaccess.orgTAF - Technology Access Foundation | Equitable STEMbyTAF Education
mrolinks.mro-network.comAviation and Aerospace MRO Supplier Directory | Find Aviation Companies and Products
armyav.orgArmy Aviation Heritage Foundation – Preserving Military Aviation Since 1997

widget.checkwx.com Traffic Sources Chart

widget.checkwx.com Alexa Rank History Chart

widget.checkwx.com aleax

widget.checkwx.com Html To Plain Text

METAR & TAF Widget Display real-time aviation weather reports on your site Get Started Examples Easy to Use Add live METAR and TAF feeds with just a few lines of HTML code. Always 100% Free Free to use on any website or FBO display. There is no obligation and no credit card required. Generous Daily Limits This free service allows 2,000 weather requests per day. Additional requests are subject to approval. Fully Customizable Change fonts and colors to match your website. Refresh METAR/TAF automatically every 15-60 minutes. Need More Data? Need decoded METARs & TAFs or advanced query options? See our full weather API Getting Started Step 1 You must Register for a Free API key at www.checkwxapi.com Registration is Free and does not require any credit card or obligation. By registering, we can track API usage and can prevent users from abusing our API service. Step 2 Copy and paste this script tag near the bottom of your webpage right before the closing </body> tag. <script src="https://api.checkwx.com/widget?key= YOUR_API_KEY " type="text/javascript"></script> Be sure to replace YOUR_API_KEY with your API key from Step 1 above. Step 3 Copy and paste this element tag anywhere on your page where you want the METAR or TAF to appear. <div class="checkwx-container" data-type="METAR" data-station="DEMO"></div> Step 4 Edit the data-type and data-station attributes of the element you pasted in Step 3: Attribute Description data-type The type of data feed you are requesting. Options: METAR TAF data-station The ICAO airport code or location indicator is a four-character alphanumeric code. You can find a list of ICAO codes on CheckWX.com. Options: A single ICAO code Multiple ICAO codes separated with commas (Maximum 50) Examples Sample Page <html> <head> <title>London Heathrow Airport Page</title> </head> <body> <h3>London Heathrow Airport</h3> <div class="checkwx-container" data-type="METAR" data-station="EGLL"></div> <script src="https://api.checkwx.com/widget?key= YOUR_API_KEY " type="text/javascript"></script> </body> </html> London Heathrow Airport Single METAR Request <div class="checkwx-container" data-type="METAR" data-station="KPIE"></div> Multiple METAR Requests <div class="checkwx-container" data-type="METAR" data-station="KPIE,KSPG"></div> Single TAF Request <div class="checkwx-container" data-type="TAF" data-station="KPIE"></div> Multiple TAF Requests <div class="checkwx-container" data-type="TAF" data-station="KPIE,KMIA"></div> Automatic Refresh <script src="https://api.checkwx.com/widget?key= YOUR_API_KEY &refresh=15" type="text/javascript"></script> Include the &refresh={minutes} parameter after your API key. The example above will automatically refresh the METAR/TAF every 15 minutes. You can specify a refresh value from 15 to 60 minutes. NOTE: The refresh option is only needed for static displays, such as a monitor in an FBO that does have user interaction. Visitors to a webpage will always get the latest METAR/TAF without the need for this refresh option. Changing Fonts, Colors, etc. The following example shows how to customize our classes with standard CSS. <html> <head> <style> .checkwx-container { background-color: gainsboro; padding: 12px; border: 2px solid black; border-radius: 4px; margin: 0; } .checkwx-item { font-family: Arial, Helvetica, sans-serif; font-size: 18px; color: indigo; } .checkwx-link { color: royalblue; font-size: 24px; font-weight: bold; } </style> </head> <body> <div class="checkwx-container" data-type="METAR" data-station="EGLL"></div> <script src="https://api.checkwx.com/widget?key= YOUR_API_KEY " type="text/javascript"></script> </body> </html> CheckWX.com Privacy Terms Contact...

widget.checkwx.com Whois

"domain_name": [ "CHECKWX.COM", "checkwx.com" ], "registrar": "NAMECHEAP INC", "whois_server": "whois.namecheap.com", "referral_url": null, "updated_date": [ "2020-07-25 05:58:07", "2020-07-25 05:58:07.350000" ], "creation_date": "2007-08-24 12:34:01", "expiration_date": "2021-08-24 12:34:01", "name_servers": [ "NS1.LINODE.COM", "NS2.LINODE.COM", "NS3.LINODE.COM", "NS4.LINODE.COM", "NS5.LINODE.COM", "ns1.linode.com", "ns2.linode.com", "ns3.linode.com", "ns4.linode.com", "ns5.linode.com" ], "status": "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "emails": "abuse@namecheap.com", "dnssec": "unsigned", "name": "Redacted for Privacy Purposes", "org": "Redacted for Privacy Purposes", "address": "Redacted for Privacy Purposes", "city": "Redacted for Privacy Purposes", "state": "NC", "zipcode": "Redacted for Privacy Purposes", "country": "US"