If I have a list of address that is for instance "Keilaranta 17 FI-02150 ESPOO FINLAND" in my sql server database and I want to add a new column to add the data of WGS 84. You retrieve the WGS 84 data from google map or similiar. Is it possible to do it?
Retrieve WGS 84 from Google map
1.3k Views Asked by HelloWorld1 At
2
There are 2 best solutions below
0
Andrew - OpenGeoCode
On
Generally, you can't permanently store coordinates obtained from Google map API, though you can cache for up to 30 days for performance purposes. Here's a link to a similar stackoverflow question I and others had answered:
Terms and Conditions Google Maps: Can I store lat/lng and address components?
Related Questions in GOOGLE-MAPS
- Google Maps API Re-size
- Google Map Custom InfoWindow's Tail Won't move and can't remove dropshadow
- how show result the autocomplete in the map in CodeIgniter Google Maps V3 API Library?
- GoogleMaps or OpenStreetMap get graph
- GoogleMap.addGroundOverlay() takes a lot of UiThread time
- Reverse geocoding with a deferred object in a coffeescript class
- Can I get Google maps to ignore part of a search?
- IOS Google Maps skid fit bounds
- Accessing Google Maps Markers in 2D-array from outside
- kmllayer with polygons hide map
- How to specify the delay for the google map marker
- Google Maps API v3 - change strokeWeight of polylines for different zoom levels
- Pop-up info box in google maps
- Logo Markers over 3D Maps View
- How can i add polygon on google maps IOS?
Related Questions in GEO
- how to add geo_point type data to elasticsearch from logstash?
- Restrict a geographic UILocalNotification within a timeframe
- K-Means Clustering a list of US addresses based on drive time
- Geo plugin API is not working on a domain sometimes
- How do change field length with arcobject
- open "shape" attribute in mysql database
- Creating and splitting polygon in R
- Turn off clipping in a d3 projection
- Normalize exif output to decimal degrees
- elasticsearch Geo Polygon Query work not correctly
- Storing Google Maps geo data with Rails / PostGIS / RGeo
- SQL Server : Geography search performance - query nearest stores
- how to get current location instead off map latlng
- How to sort array items by longitude latitude distance in javascripts?
- Calculate average distance between point and closest neighbors in R
Related Questions in WGS84
- Clustering or Filtering points in WGS84 Coordinates
- Project XYZ data in swiss coordinates to WGS84 and plot
- OpenLayers after call setCenter, map is still on 0,0 position
- Can I store WGS84 latitude / longitude directly as spatial data in MySQL?
- Converting LLA to XYZ
- If You Have A GeoTiff, Would It Be Possible To Transform A Lat/Lon Point To An X,Y Using The GeoTransform?
- Convert Geodetic Cordinates to Lambert Conformal Conic
- Retrieve WGS 84 from Google map
- How Do I Convert from Map Coordinates from SWEREF99 TM to WGS84 Using R?
- Programmatically converting out of TOPO50
- distm in R leads to crash
- How to Reproject GeoJSON without crs property to WGS84 (to use React Leaflet)
- Rounding latitude and longitude to get within approximately 1 km
- Conversion from NZMG to latitude and longitude
- British National Grid Shapefile - convert to WGS84 Lat/Lon
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You need to look into the Geocoding API. Effectively you need to provide Google with an address (so in your case Keilaranta 17 FI-02150 ESPOO FINLAND) and the API will return the long and lat in WGS84 (Spherical Mercator).
You will also want to read the TOS associated with this as storing results for any use other than caching is against the rules laid out without a commercial licence.