Skip to Content
  • +31 653-919-302
Cafayate.Net
  • 0
  • 0
  • Sign in
  • Nederlands English (US) Español (AR)
  • Contact Us
  • Home
  • Blog
  • Jobs
  • Contact us
Cafayate.Net
  • 0
  • 0
    • Home
    • Blog
    • Jobs
    • Contact us
  • +31 653-919-302
  • Nederlands English (US) Español (AR)
  • Sign in
  • Contact Us

How to get Latitude and Longitude of address in Odoo using Google Api in Python

  • All Blogs
  • Tech Blog
  • How to get Latitude and Longitude of address in Odoo using Google Api in Python
  • March 5, 2021 by
    Administrator

    You may require to get Latitude and Longitude between of an address in Odoo ( Openerp ) for many reasons . Here are steps to follow –

    1. First install pygeocoder Python Package

    Simply you can install using –

    apt-get install python-pip

    pip install pygeocoder
    or from python packages site.

    1. Now import Geocoder class from pygeocoder in your py file

    from pygeocoder import Geocoder
    import urllib

    import json

     

    Now you use get_latitude_longitude (Global )function given below , pass address as argument and you will get a list of latitude and longitude returned from Google Api – ex [19.1605798,72.8380889]
    def get_latitude_longitude(addr):

    url =’https://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=’

    url += urllib.quote(addr.encode(‘utf8’))

    res = []

    try:

    gcoder = Geocoder()

    results = gcoder.geocode(addr)

    res.append(results[0].latitude)

    res.append(results[0].longitude)

    except Exception, e:

    pass

    return res

    in Tech Blog
    LXC Getting Started Guide Part II

    Designed for companies

    We are a team of passionate people whose goal is to improve everyone's life through disruptive products. We build great products to solve your business problems. Our products are designed for small to medium size companies willing to optimize their performance.

    Get in touch

    Plantexel
    Pedernera
    Salta Capital 
    Argenina

    • +31 653-919-302
    • [email protected]
    Follow us
    Copyright © Plantexel
    Nederlands | English (US) | Español (AR)