Questions tagged [google-elevation-api]

The Google Maps Elevation API provides a simple interface to query locations on the earth for elevation data. Additionally, it may request sampled elevation data along paths, allowing you to calculate elevation changes along routes.

The Google Maps Elevation API provides elevation data for all locations on the surface of the earth, including depth locations on the ocean floor (which return negative values). In those cases where Google does not possess exact elevation measurements at the precise location you request, the service will interpolate and return an averaged value using the four nearest locations.

47 questions
1
vote
1 answer

Error quests for Google Map Elevation API

I am writing a R script to crawl evelatio for a large number of GPS points, using XML and RCurl package. With the help of Google Map Elevation API, it's useful to get the evelation value. Here I notice that the maximum number of locations in a…
Kai Xie
  • 117
  • 1
  • 2
  • 10
1
vote
0 answers

Google Elevation API resolution range and data sources

What is the minimum and maximum resolution of the elevation data from the Google Elevation API? "A resolution value, indicating the maximum distance between data points from which the elevation was interpolated, in meters. This property will be…
1
vote
4 answers

Google Elevation API with AJAX?

I am trying to use the Google Elevation API with the getJSON function of JQuery. I am using this code which is using JSONP : jQuery.getJSON("http://maps.googleapis.com/maps/api/elevation/json?locations=23.444,45.4545&sensor=false&jsoncallback=?",…
benjisail
  • 1,646
  • 5
  • 21
  • 35
1
vote
1 answer

Google Elevation API - Surface Height from 3D Overlay?

I been playing around with Google Maps Elevation API and have played around with the example Python code. There are plenty of places visible in Google Earth/Maps where there are 3D overlays (I guess from photogrammetry). For example, Ferndown…
1
vote
1 answer

How is defined the 0 level (sea level) in google maps elevation api?

How is defined the "0" level in google maps elevation api? The sea is not precisely at 0, and not uniform around the globe, how does it define the sea level?
Vincent J
  • 4,968
  • 4
  • 40
  • 50
1
vote
1 answer

Google elevation api

I am developing an android application that log GPS data when I use my bike. GPS altitude informations are not very good so I would like to use google elevation api. In detail: - I log GPS data and at the end I invoke google web service in order…
1
vote
2 answers

Increasing quota on google elevation api

I am sending from my application queries to the Google elevation api, like http://maps.googleapis.com/maps/api/elevation/json?locations=39.7391536,-104.9847034&sensor=false. I have reached my daily quota after 2500 requests and google states in…
0
votes
1 answer

Swift HTTP Request to Google Elevation API

Im trying to send requests to the Google Elevation API, I have successfully sent singular requests. Stated in the documentation for GE API is that a singular request can contain many coordinate evaluations if the coordinates are passed as a list…
DESWIJ
  • 63
  • 6
0
votes
2 answers

How to extract altitude above sea level given latitude and longitude?

I am trying to extract altitude data for a given set of lats and longs in my data. I tried to look up some older answers (from 9-10 years ago)..but many of the methods are obsolete or the functions don't work. Any fresh suggestions? lat <-…
0
votes
1 answer

How do you utilize the google maps elevation service as a jsx tag?

I have been developing a customized google map, and a feature that I need is to be able to tell about the elevation of different locations on click. I have coded the map with a bunch of jsx tags (i.e a tag for google map, a tag for marker, etc...).…
0
votes
1 answer

Using Maps Elevation API

In my app, when I try to get an elevation with the "Maps Elevation API", I get an answer which looks like a Chinese answer. My request is : My request The result returned by the API is queried with the below code : try { url…
Zelig63
  • 1,592
  • 1
  • 23
  • 40
0
votes
1 answer

Is there a mathematical calculation to define if there is visibility between a point A and a point B via google's Elevation API?

Is there a way to check if there is a line of sight between two points by getting the elevation profile data via the google API? E.g. I can get an elevation profile via this link:…
0
votes
1 answer

Get Value of PHP Array from Google Elevation API

I am developing a system to get values from gGoogle Api Elevation with PHP. I have it working and when I get the value it returns as String in this format: { "results" : [ { "elevation" : 914.033935546875, "location" : { "lat" : -25.4499861, "lng" :…
Gouveia
  • 29
  • 6
0
votes
1 answer

Accessing Google 3D Maps Elevation Data

When we use google maps in 3D at Google earth, it shows building heights and structures' actual heights in elevation data. However, the google elevation API provided by google results only ground elevations and not the actual elevations of buildings…
0
votes
1 answer

How to get google map elevation profile graph from a path, (on hover display information)

I'm displaying custom path using google map "Elevation Along a Path", I have the graph and path drawn on map, How can i get the graph hover-able so it will show elevation information on same position. this is a link to google map which contain the…