MeteoStone's Weather API

Method: meteostone.getWeather

Get weather around geographical location.
Comments: "around" means 10 for both coordinates now. Temperature is always in 0C.

Arguments

apikey
Your API application key. See here for more details.

method
Should be set to "meteostone.getWeather".

location_lat
Latitude of new location.

location_lng
Longtitude of new location.

Example request

http://meteostone.com/service/?apikey=xxxx&method=meteostone.getWeather
&location_lat=12.345&location_lng=12.345

Example response

<mst status="ok">
	<ms_weather>
		<samples>
			<sample lat="55.7631990966" lng="37.6150417328" weather="cloudy" temperature="6"/>
			<sample lat="55.763374146" lng="37.6158678532" weather="cloudy" temperature="5"/>
		</samples>
	</ms_weather>
</mst>