-
Code's Tags
-
Your Codes
-
Reffers
-
Linked Codes
|
Code:
Short link for Twitter:
HTML:
HTML view:
Copy Source | Copy HTML- function ocean(lat,lng) {
- /*
returns the ocean or sea for the given latitude/longitude */
- var url = "http://ws.geonames.org/oceanJSON?lat="+lat+"&lng="+lng;
- var response = UrlFetchApp.fetch(url);
- var str = eval('(' + response.getContentText() + ')').ocean.name;
- return str;
- }
-
- function countryCode(lat,lng) {
- /*
returns the iso country code of any given latitude/longitude */
- var url = "http://ws.geonames.org/countryCode?lat="+lat+"&lng="+lng;
- var response = UrlFetchApp.fetch(url);
- var str = response.getContentText();
- return str;
- }
-
|