phpweather-devel Mailing List for PHP Weather (Page 11)
Brought to you by:
iridium
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(4) |
Dec
(7) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(2) |
Feb
(52) |
Mar
(79) |
Apr
(9) |
May
(28) |
Jun
(17) |
Jul
(25) |
Aug
(48) |
Sep
(18) |
Oct
(6) |
Nov
|
Dec
(8) |
2003 |
Jan
(26) |
Feb
(10) |
Mar
(2) |
Apr
(21) |
May
(23) |
Jun
(15) |
Jul
(15) |
Aug
(8) |
Sep
(16) |
Oct
(3) |
Nov
(4) |
Dec
|
2004 |
Jan
(35) |
Feb
(35) |
Mar
(9) |
Apr
(6) |
May
(1) |
Jun
(3) |
Jul
(3) |
Aug
(6) |
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
(4) |
Feb
(6) |
Mar
(6) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(2) |
Nov
|
Dec
|
2006 |
Jan
|
Feb
(5) |
Mar
(7) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: Martin G. <gim...@gi...> - 2003-01-27 21:25:47
|
"Jake Ortman" <ja...@or...> writes: >>I think your best bet is to contact the maintainer (Steve Runner?) and >>ask him how he collects the data. Perhaps you could get access to the >>data in a comma separated file or something like that. > > Sorry I wasn't clear. WUnderground publishes the CSV file here: > http://www.wunderground.com/weatherstation/WXDailyHistory.asp?ID=KORSUNRI1&f > ormat=1 > > I had no intention of trying to do reg exp search crap to convert info from > a web page (man, that would be a mess and a half). > > Anyway, would I be able to hook into this? Yes, it's doable - the code below does it! I think I've managed to extract everything that can be extracted from the file... There's still some problems: the height of the clouds isn't present in the data. I've set it to '///' which is the code used at mountain stations when the cloud layer is below the station level... it comes out at 'nil meter' in the report. Also, the names of the stations is fake. You could assign names by editing stations.csv, reloading the database and carefully give the generated METAR reports the same ICAO. <?php error_reporting(E_ALL); include('php/phpweather/phpweather.php'); include('php/phpweather/output/pw_text_en.php'); $weather = new phpweather(); $i = 0; $fp = fopen('http://www.wunderground.com/weatherstation/WXDailyHistory.asp?ID=KORSUNRI1&format=1', 'r'); while ($line = fgets($fp, 1024)) { if ($line != "\n" && $line != "<br>\n") { $data = explode(',', $line); if (count($data) != 14 || $data[0] == 'Time') continue; $i++; //print_r($data); $icao = sprintf('XX%02d', $i); ereg('([0-3][0-9]) ([0-9]{2}):([0-9]{2})', $data[0], $regs); $date = sprintf(' %02d%02d%02dZ', $regs[1], $regs[2], $regs[3]); $temp = strtr(sprintf(' %02d/%02d', ($data[1]-32) * 5/9, ($data[2]-32) * 5/9), '-', 'M'); $altimeter = sprintf(' A%04d', $data[3]*100); $wind = sprintf(' %02d0%02dG%02dKT', round($data[5]/10), round($data[6] * 0.869), round($data[7] * 0.869)); if ($data[9] > 0) $precipitation = sprintf(' P%04d', round($data[9]*100)); else $precipitation = ''; $clouds = sprintf(' %s///', $data[10]); $conditions = ' ' . $data[11]; $metar = $icao . $date . $wind . $temp . $clouds . $conditions . $altimeter . $precipitation . "\n"; //echo $metar; $weather->set_metar($metar); $text = new pw_text_en($weather); //print_r($text); echo '<blockquote>' . $text->print_pretty() . "</blockquote>\n"; } } ?> -- Martin Geisler My GnuPG Key: 0xF7F6B57B See http://gimpster.com/ and http://phpweather.net/ for: PHP Weather => Shows the current weather on your webpage and PHP Shell => A telnet-connection (almost :-) in a PHP page. |
From: Martin G. <gim...@gi...> - 2003-01-27 20:22:45
|
Michael Gilman <ph...@mg...> writes: > First of all, let me say thanks to the developers. This is a cool > tool. And as a beginning PHP coder, I was thrilled with how quickly > I could get it all to work. Thanks a lot! It's great to get feedback like that :-) > Perhaps someone can suggest what gives here. Is the slow service > running a crappy PHP parser or is its connection to the METAR site > slow for some reason? Or is it something else? I have not changed > the default configs, nor have I (yet) cached the data to a database. > > Any ideas would be greatly appreciated. I'm sorry about the late reply --- I'm having my exams right now, and then I also don't have a real answer for you... But I can always guess :-) I don't think it has anything to do with the PHP parser, I would think that it's a network problem. PhpWeather doesn't do anything fancy with the connection. It either uses the built-in file() function (for non-proxy connections) or fsockopen() function (for proxy-connections) to connect. You could experiment a little with using file() on other sites --- the server at the NWS has been slow at several occasions. Also, the bandwidth of the server running PhpWeather obviously matter, so if your servers have different bandwidth, then that could explain the speed differences you're seeing. > P.S. -- Apologies to the moderator for the earlier post; I hadn=B9t > realized you needed to subscribe first! No problem! It's actually nice to see a legitimate post in the filter once in a while ;-) --=20 Martin Geisler My GnuPG Key: 0xF7F6B57B See http://gimpster.com/ and http://phpweather.net/ for: PHP Weather =3D> Shows the current weather on your webpage and PHP Shell =3D> A telnet-connection (almost :-) in a PHP page. |
From: Diego A. - D. IT <da...@de...> - 2003-01-17 19:23:06
|
Hello, first of all i want to say that I am very new with PHP so please I need HELP. I have installed PHPWeather and the test page works OK. Someone can give and example of how can I call phpweather from a homepage??. I want just to show in a homepage the image and the temperature. Thanks in advance. Diego. |
From: Joao R. <re...@is...> - 2003-01-17 09:03:30
|
Martin Geisler writes: > Roland Sippel <rs...@ku...> writes: > >> Is there no version for Germany available ? > > Not a finished version at least... I have this file which is > half-broken, since it contains some strings from version 1.x and some > from 2.x: > > If not - what files are to translate and how can > you include in the Optionlist ?! > > I think: pw_text_en.php to pw_text_de.php > > ohter ? >That's the only file! Everythings (well, here 'everything' means just >the optionlist, but anyway... :-) will update to reflect the new >language when you copy pw_text_en.php to pw_text_de.php. You can then >translate the strings until you're satisfied with the result. Also if you want to make the german version the default language you have to change the $language = 'en'; to $language = 'de'; Regards rech -- Joao Rechena mailto:re...@is... http://ispower.org ============================= "Have no phear I is here" |
From: Michael G. <ph...@mg...> - 2003-01-17 01:34:54
|
First of all, let me say thanks to the developers. This is a cool tool. And as a beginning PHP coder, I was thrilled with how quickly I could get it al= l to work. But here=B9s my question. I=B9ve encountered BIG speed differences depending on the server I=B9m using. On my local machine running Apache on Mac OS X (Jaguar), the speed test page runs 200-300 ms per METAR. That=B9s also true o= f one of the web hosting services I use (running a Windows 2000 server). Unfortunately, on the host I intend to use for this project (running Apache on Linux), it takes forever =8B over 10 seconds per METAR. The page I=B9m tryin= g to host there (which displays temperatures for eight locations) takes over = a minute to load. Unacceptable, obviously. Perhaps someone can suggest what gives here. Is the slow service running a crappy PHP parser or is its connection to the METAR site slow for some reason? Or is it something else? I have not changed the default configs, no= r have I (yet) cached the data to a database. Any ideas would be greatly appreciated. Thanks again for this wonderful piece of software. m=20 P.S. -- Apologies to the moderator for the earlier post; I hadn=B9t realized you needed to subscribe first! |
From: Martin G. <gim...@gi...> - 2003-01-16 23:00:12
|
Roland Sippel <rs...@ku...> writes: (Please send your replies to <php...@li...> and not directly to me.) > Martin Geisler wrote: > >> What did the testpage I sent you say? > > Seems to works fine..... > http://www.kunstbar.tv/connectivity_test.php OK, that's weird... PhpWeather uses code just like the one in the page, so it should also be able to fetch data from the NWS. I'm not sure what it can be now - if anybody else has a good idea, then now is a good time to present it :-) -- Martin Geisler My GnuPG Key: 0xF7F6B57B See http://gimpster.com/ and http://phpweather.net/ for: PHP Weather => Shows the current weather on your webpage and PHP Shell => A telnet-connection (almost :-) in a PHP page. |
From: Roland S. <rs...@ku...> - 2003-01-16 21:25:43
|
Is there no version for Germany available ? If not - what files are to translate and how can you include in the Optionlist ?! I think: pw_text_en.php to pw_text_de.php ohter ? -Roland- |
From: Martin G. <gim...@gi...> - 2003-01-16 20:38:58
|
Roland Sippel <rs...@ku...> writes: > It=B4s not my server. > > http://phpweather.sourceforge.net/index.php > No city works here. This is because SourceForge has a rather restrictive firewall around the project homepages, and also because our homepage is mostly unmaintained at the moment... What did the testpage I sent you say? --=20 Martin Geisler My GnuPG Key: 0xF7F6B57B See http://gimpster.com/ and http://phpweather.net/ for: PHP Weather =3D> Shows the current weather on your webpage and PHP Shell =3D> A telnet-connection (almost :-) in a PHP page. |
From: Jake O. <ja...@or...> - 2003-01-16 18:10:40
|
>I think your best bet is to contact the maintainer (Steve Runner?) and >ask him how he collects the data. Perhaps you could get access to the >data in a comma separated file or something like that. Sorry I wasn't clear. WUnderground publishes the CSV file here: http://www.wunderground.com/weatherstation/WXDailyHistory.asp?ID=3DKORSUN= RI1&f ormat=3D1 I had no intention of trying to do reg exp search crap to convert info = from a web page (man, that would be a mess and a half). Anyway, would I be able to hook into this?=20 I still plan on contacting Steve, I just wanted to know how easy it is = for a joe-blow like me to hook into this data. -Jake |
From: Martin G. <gim...@gi...> - 2003-01-16 11:47:24
|
"Jake Ortman" <ja...@or...> writes: Hi Jake > I've got a simple implementation of PHPWeather 2.x running here: > http://www.sunrayinc.com/sunriver/weather/ > > Nothing fancy, just shows the current conditions (cached in a MySQL > database). Good. > I recently found out that the local public works department has a > weather station > http://www.sunriverowners.org/05_departments/public_works/pw_frame.html) > that's also available on Weather Underground: > http://www.wunderground.com/weatherstation/WXDailyHistory.asp?ID=KORSUNRI1. > Would there be an easy way to pull that data to use on my site? Not with PhpWeather... PhpWeather knows how to parse a METAR report, but you're trying to parse a webpage :-) You could try to extract the information from the website with the help of regular expressions, but it would be a mess, and you would violate the copyright of the page too. I think your best bet is to contact the maintainer (Steve Runner?) and ask him how he collects the data. Perhaps you could get access to the data in a comma separated file or something like that. -- Martin Geisler My GnuPG Key: 0xF7F6B57B See http://gimpster.com/ and http://phpweather.net/ for: PHP Weather => Shows the current weather on your webpage and PHP Shell => A telnet-connection (almost :-) in a PHP page. |
From: Michael G. <mi...@wr...> - 2003-01-16 03:56:52
|
First of all, let me say thanks to the developers. This is a cool tool. And as a beginning PHP coder, I was thrilled with how quickly I could get it al= l to work. But here=B9s my question. I=B9ve built a page that displays collects METAR, extracts and displays temperature for about ten different cities. When run on the Apache server on my local machine (Mac OS X.2), everything=B9s great and the page loads quickly. When I uploaded the same page to my webhosting service (which is running Apache on Linux), it was SL-O-O-O-O-W =8B took a full minute to load. So then I took advantage of the test page that comes with the package, whic= h as you may notice actually gives the time taken to generate the page. For the same city, it typically takes around 800 ms to load on my local machine= , but 17-20 seconds on my web host. I then uploaded the same file to another web host (running a Windows 2000 server) and it was as fast as my local host. What do you think is the problem with the slow server =8B crappy parser, slow connection to the METAR site, misconfiguration of phpweather (I have not changed the default config)? Don=B9t know if this helps, but I stripped all the weather calls out of my original page (which then loaded quite snappily) and started to add them back one at a time. Each one added about five seconds to load time. Any ideas would be greatly appreciated. Thanks again for this wonderful piece of software. m |
From: Ondrej J. <ne...@po...> - 2003-01-16 00:58:09
|
> Sorry! There's no data available for Koeln / Bonn, Germany. > Sorry! There's no data available for Kassel / Calden, Germany. > Sorry! There's no data available for Hannover, Germany. > Sorry! There's no data available for Frankfurt / M-Flughafen, Germany. > Sorry! There's no data available for Berlin-Tegel, Germany. > > Sorry! There's no data available for San Francisco, San Francisco > International Airport, United States. > Sorry! There's no data available for Washington DC, Reagan National > Airport, United States. > > Okay - nice software ...... > - Any hints ?! This issue was here on the list just few days ago. Search archive for more information. Quick hint from Martin, try this: <?php require('http://weather.noaa.gov/pub/data/observations/metar/stations/EKYT.TXT'); ?> Replace EKYT with your airport ICAO. If that does not work, something is blocking PHP to fetch data (firewall in example). -- _/| Ondrej Jombik - ne...@ph... - http://www.nepto.sk - OJ812-RIPE <_ \ Platon SDG - open source software development - http://platon.sk `\| Ako sa do hory vola, tak sa zhori traktor! (c) 1999 Rattkin/MFF '` |
From: Roland S. <rs...@ku...> - 2003-01-15 20:03:42
|
Sorry! There's no data available for Koeln / Bonn, Germany. Sorry! There's no data available for Kassel / Calden, Germany. Sorry! There's no data available for Hannover, Germany. Sorry! There's no data available for Frankfurt / M-Flughafen, Germany. Sorry! There's no data available for Berlin-Tegel, Germany. Sorry! There's no data available for San Francisco, San Francisco International Airport, United States. Sorry! There's no data available for Washington DC, Reagan National Airport, United States. Okay - nice software ...... - Any hints ?! -Roland- |
From: Jake O. <ja...@or...> - 2003-01-12 19:04:46
|
Hello all, I've got a simple implementation of PHPWeather 2.x running here: http://www.sunrayinc.com/sunriver/weather/ Nothing fancy, just shows the current conditions (cached in a MySQL database). The problem is that the conditions are taken from the Redmond Airport (icao=3Dkrdm). The Redmond Airport is the nearest NWS station, but it's = nearly 40 miles from here and not always entirely accurate.=20 I recently found out that the local public works department has a = weather station (http://www.sunriverowners.org/05_departments/public_works/pw_frame.html)= that's also available on Weather Underground: http://www.wunderground.com/weatherstation/WXDailyHistory.asp?ID=3DKORSUN= RI1 . Would there be an easy way to pull that data to use on my site? Thanks for your help, folks! :-) -Jake | Jake Ortman - Technology Director | ja...@su... http://www.sunrayinc.com | (800) 531-1130 Fax: (541) 593-6652 | -------------------------------------- | Sunray Vacation Rentals: A Different | Kind of Vacation Rental Company=20 |
From: SourceForge.net <no...@so...> - 2003-01-11 16:25:05
|
Feature Requests item #664721, was opened at 2003-01-08 23:16 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=377955&aid=664721&group_id=23245 Category: Output Group: None >Status: Open Resolution: Accepted Priority: 5 Submitted By: Timothy M. Crider (timcrider) Assigned to: Nobody/Anonymous (nobody) Summary: Some Really Nice Weather Icon Sets Initial Comment: If you are looking to bundle some different icon sets with this software, have a look at: http://www.jdawiseman.com/papers/trivia/weather- icons.html The have alot of really nice icons that are used all over the place. Tim ---------------------------------------------------------------------- >Comment By: Martin Geisler (gimpster) Date: 2003-01-11 17:27 Message: Logged In: YES user_id=104098 Sure the icons are copyrighted, but perhaps some of the sites would allow us to ship them? We would of course give full credit and add a link back to their site. I think it's worth to investigate. Regardless of whether or not we can get images from those sites, then pw_images needs to be updated. It should support several different sets of icons --- we already have two sets of icons in 1.x because of the WAP phones. ---------------------------------------------------------------------- Comment By: Max Hammond (iridium) Date: 2003-01-11 15:55 Message: Logged In: YES user_id=81516 In principle good, but all of these images are copyright to their original owners. I feel it would be good to include a set of smaller icons with the program - although we'd have to create them ourselves... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=377955&aid=664721&group_id=23245 |
From: SourceForge.net <no...@so...> - 2003-01-11 14:53:36
|
Feature Requests item #664721, was opened at 2003-01-08 22:16 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=377955&aid=664721&group_id=23245 Category: Output Group: None >Status: Pending >Resolution: Accepted Priority: 5 Submitted By: Timothy M. Crider (timcrider) Assigned to: Nobody/Anonymous (nobody) Summary: Some Really Nice Weather Icon Sets Initial Comment: If you are looking to bundle some different icon sets with this software, have a look at: http://www.jdawiseman.com/papers/trivia/weather- icons.html The have alot of really nice icons that are used all over the place. Tim ---------------------------------------------------------------------- >Comment By: Max Hammond (iridium) Date: 2003-01-11 14:55 Message: Logged In: YES user_id=81516 In principle good, but all of these images are copyright to their original owners. I feel it would be good to include a set of smaller icons with the program - although we'd have to create them ourselves... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=377955&aid=664721&group_id=23245 |
From: SourceForge.net <no...@so...> - 2003-01-08 22:15:11
|
Feature Requests item #664721, was opened at 2003-01-08 17:16 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=377955&aid=664721&group_id=23245 Category: Output Group: None Status: Open Resolution: None Priority: 5 Submitted By: Timothy M. Crider (timcrider) Assigned to: Nobody/Anonymous (nobody) Summary: Some Really Nice Weather Icon Sets Initial Comment: If you are looking to bundle some different icon sets with this software, have a look at: http://www.jdawiseman.com/papers/trivia/weather- icons.html The have alot of really nice icons that are used all over the place. Tim ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=377955&aid=664721&group_id=23245 |
From: Martin G. <gim...@gi...> - 2003-01-08 14:04:44
|
"Joao Rechena" <we...@is...> writes: > I've been trying to install the phpweather but I keep getting thins > message, even in the http://phpweather.sourceforge.net/ this > messsage appears when I try to get info from any country.... So it looks like your server is behind some sort of firewall that prevents PHP from fetching data from other servers... Try seeing what a PHP script like this gives you: <?php require('http://weather.noaa.gov/pub/data/observations/metar/stations/EKYT.TXT'); ?> If you don't get a page with a METAR, then something is blocking PHP. If that's the case, then you'll have to find another way to sneak data into PhpWeather past the firewall or whatever it is that is blocking. The db_updated.php file supplied with PhpWeather is surposed to do this by importing data from a so-called cycle-file. Such a file contains data for all stations from the last hour, so you should set up a cronjob or something similar to fetch the latest cyclefile from NOAA each hour and then call db_updater.php. We've been using this script at SourceForge to do this: #!/bin/sh #set -x if test -z "$1"; then CYCLE=$(date -u +%H); else CYCLE=$(date -u -d "$1" +%H); fi FILE=${CYCLE}Z.TXT; cd /home/groups/p/ph/phpweather/htdocs/phpweather if test -f $FILE; then rm $FILE; fi if wget -q http://weather.noaa.gov/pub/data/observations/metar/cycles/$FILE; then wget -q -O - "http://phpweather.sourceforge.net/phpweather/db_updater.php?filename=./$FILE"; rm $FILE; #echo "Done - database updated."; fi; -- Martin Geisler My GnuPG Key: 0xF7F6B57B See http://gimpster.com/ and http://phpweather.net/ for: PHP Weather => Shows the current weather on your webpage and PHP Shell => A telnet-connection (almost :-) in a PHP page. |
From: Joao R. <we...@is...> - 2003-01-03 13:10:59
|
I've been trying to install the phpweather but I keep getting thins message, even in the http://phpweather.sourceforge.net/ this messsage appears when I try to get info from any country.... Only in the http://www.gimpster.com/ I dont get this message and I'm able to get the weather Report ? Do I have to do anything in my config ? Regards rech -- Joao Rechena mailto:re...@is... http://ispower.org ============================= "Have no phear I is here" |
From: Martin G. <gim...@gi...> - 2002-12-28 12:38:52
|
Ondrej Jombik <ne...@po...> writes: Hi Ondrej > Please check "HDAM" icao/airport and consider, if backslash in > airport name is desirable. I suppose, that it is typo and there > should be slash instead. I can provide a change if it neccessary and > you are too busy. I agree - let's change it into a slash. > With winter comming I think there will be some changes to slovak > (and probably also to czech) translation neccessary. So do not be > surprised, translation is not and will never be absolutely perfect, > but I want to be as closest as possible to its perfection. :-) Sounds good! I'm currently sitting at The Party and getting ready for a new release of PhpWeather. I believe I've fixed the problems with the make_config.php script on servers that have register_globals turned off. I'll make a release, probably 2.1.0. Does anybody have a good idea about how these version numbers should to? :-) This release fixes the bug with make_config.php and adds five new translations, so it probably qualifies as a 2.1.0 release, dont you think? I've also moved the 1.x releases to a 'phpweather-1.x' package at SourceForge. As it was before, then people only saw a link to the latest release under the 'phpweather' package. So when that happened to be version 1.62, people couldn't see version 2.0.0 on the front page which was a shame. I'll then see if I can fix bug 597732 by incorporating the file from Christian Prior. Let's see how that goes. -- Martin Geisler My GnuPG Key: 0xF7F6B57B See http://gimpster.com/ and http://phpweather.net/ for: PHP Weather => Shows the current weather on your webpage and PHP Shell => A telnet-connection (almost :-) in a PHP page. |
From: Martin G. <gim...@gi...> - 2002-12-20 13:16:37
|
"Mihai Albu" <mi...@to...> writes: Hi Mihai, > Hello, i have a problem with the PHP weather... > > the code that select images based on current weather conditions have > some bughs, while Outsite is snowing , for couple of hours (30 > hours) , the phpweather is showing me that is cloudy :) > > I wisited some websites that are using other tools that decodes > METAR code, that is snowign in my city :) Is about the LRTR. I don't have a fix for your problem, but you should try to post the raw METAR report, so that we have something concrete to work with. -- Martin Geisler My GnuPG Key: 0xF7F6B57B See http://gimpster.com/ and http://phpweather.net/ for: PHP Weather => Shows the current weather on your webpage and PHP Shell => A telnet-connection (almost :-) in a PHP page. |
From: Mihai A. <mi...@to...> - 2002-12-18 13:09:06
|
Hello, i have a problem with the PHP weather... the code that select images based on current weather conditions have some bughs, while Outsite is snowing , for couple of = hours (30 hours) , the phpweather is showing me that is cloudy :) I wisited some websites that are using other tools that decodes METAR = code, that is snowign in my city :) Is about the LRTR. Anyone have something to add.? Thanks ----------------------------- Mihai Albu Mobil:+40723159555 Email: mi...@to... Web: www.tol.ro |
From: Mihai A. <mi...@to...> - 2002-12-18 13:06:12
|
Hello, i have a problem with the PHP weather... the code that select images based on current weather conditions have some bughs, while Outsite is snowing , for couple of = hours (30 hours) , the phpweather is showing me that is cloudy :) I wisited some websites that are using other tools that decodes METAR = code, that is snowign in my city :) Is about the LRTR. Anyone have something to add.? Thanks ----------------------------- Mihai Albu Mobil:+40723159555 Email: mi...@to... Web: www.tol.ro |
From: Ondrej J. <ne...@po...> - 2002-12-15 22:29:04
|
Hi ppl! Please check "HDAM" icao/airport and consider, if backslash in airport name is desirable. I suppose, that it is typo and there should be slash instead. I can provide a change if it neccessary and you are too busy. With winter comming I think there will be some changes to slovak (and probably also to czech) translation neccessary. So do not be surprised, translation is not and will never be absolutely perfect, but I want to be as closest as possible to its perfection. :-) =Nepto= -- _/| Ondrej Jombik - ne...@ph... - http://www.nepto.sk - OJ812-RIPE <_ \ Platon SDG - open source software development - http://platon.sk `\| UNIX is user friendly. It's selective about who its friends are! '` |
From: <no...@so...> - 2002-12-14 09:33:49
|
Feature Requests item #586044, was opened at 2002-07-24 19:22 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=377955&aid=586044&group_id=23245 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: hort (hortensio) Assigned to: Nobody/Anonymous (nobody) >Summary: Configurable and more precise date/time output Initial Comment: In LPFU at 10:30 UTC shows "-8238 minutes ago, at 10:30 UTC, the wind was blowing at a speed of 7.7 ".... the problem is of course the - sign that shows (variable $minutes_old). ---------------------------------------------------------------------- >Comment By: Martin Geisler (gimpster) Date: 2002-12-14 10:33 Message: Logged In: YES user_id=104098 It should also be possible to specify a different refenrence timezone than UTC, so reports could be shown in local time. Perhaps this could be coupled with the information about local sunrise and -set? It would be cool, if we could calculate the local timezone for a station automatically. ---------------------------------------------------------------------- Comment By: Martin Geisler (gimpster) Date: 2002-08-06 12:24 Message: Logged In: YES user_id=104098 I agree that something should be done about negative dates - the best thing would be, if we had a system that would automatically use the right precission, so that a recent report gets a string like '25 minutes ago, at XX:XX UTC' and an older report gets '3 days ago, at XX:YY UTC on August the 3th'. We could even make it so, that one can choose to have a relative date (the 'x units ago') and an absolute date (the 'at XX:YY UTC on ...') or both. I think that would be rather cool. ---------------------------------------------------------------------- Comment By: hort (hortensio) Date: 2002-07-24 20:28 Message: Logged In: YES user_id=583650 Never mind! The LPFU file is from the year 2000 2000/11/30 10:30 LPFU 301030Z 21015G25KT 9999 SCT018 BKN250 21/15 Q1015 RS2505KT 052010KT 232218KT sorry! You could create a control then this happens like if older then 5 days then data to old to be used..... just a thought ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=377955&aid=586044&group_id=23245 |