Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
how to extract latitude and longitude for certain country by using of script, for suppose CHINA,INDIA country i want extract from Google.
Can you help on this if have sample application that would be better.
Advance Thanks
Munna
You can go this site Latitude and Longitude Finder on Map Lat Long Lookup and copy paste latitudes and longitudes state wise in excel and then load the same for google chart.
Hope this helps you.
Vikas
Hi,
You can get it from Countries List with Place Counts
store the data in excel file and then load into qlikview.
HTH
Sushil
You could pass your country in the URL like:
Load
LOAD status,
[result/geometry/location/lat] as Latitude,
[result/geometry/location/lng] as Longitude
from [http://maps.googleapis.com/maps/api/geocode/xml?address=India&sensor=false] (XmlSimple, Table is [GeocodeResponse]);
Note: 'address=India'
tabCountryCoords:
LOAD Country,
[Alpha-2 code],
[Alpha-3 code],
[Numeric code],
[Latitude (average)],
[Longitude (average)]
FROM [url see attachment]
(txt, utf8, embedded labels, delimiter is ',', msq);
hope this helps
regards
Marco
Hi tresesco,
I ran your script by changing country as SriLanka. But I get Cartesian effect and looping tables in data model. Any idea or advice ?
thnx