I just found a XML file with weather station data placed on local school - finally I got a source to get local weather.
Please check the file structure http://www.zsvelkebilovice.cz:40010/xml.xml
It's kinda crazy, because there aren't tags named by sensors, but tags with another option .
Is there any option to parse XMLs like this? Same format uses Day One iOS app to store entries in diary - date, weather, GPS and another data arent in specific tags but in tags option.
And I suppose there is a PHP parser which makes me able to access data by $xml->wario->input->sensor->temperature
? Because the only one solution without parser like this is to count the sensor order and acces it by $wario->input->sensor[order]
and I can't be use if they don't change the order of tags (or add / delete some).
I can create my own parser but I still think there is a library for this :)