First page Back Continue Last page Overview Graphics
Data from web interface (cont.)
Tab delimited data for weather station history
- Can be used directly with any spreadsheet software
- Easy to parse, i.e.:
- $report = explode(“\t”,$tab_delimited_line);
printf(“Date: %s Temperature: %lf\n”,$report[0],$report[1]);
Notes: