I am using the following YQL query to get weather information
Is there any way to get weather information using longitude, latitude as YQL query parameter.
You could use a sub-select to go from a latitude/longitude pair to a WOEID like
SELECT * FROM weather.woeid
WHERE w IN (
SELECT place.woeid
FROM flickr.places(1)
WHERE (lat,lon) in (55.948503,-3.198931)
);