Overslaan naar inhoud
  • +31 653-919-302
Cafayate.Net
  • 0
  • 0
  • Aanmelden
  • Nederlands English (US) Español (AR)
  • Contact
  • Startpagina
  • Blog
  • Vacatures
  • Contact
Cafayate.Net
  • 0
  • 0
    • Startpagina
    • Blog
    • Vacatures
    • Contact
  • +31 653-919-302
  • Nederlands English (US) Español (AR)
  • Aanmelden
  • Contact

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

  • Alle blogs
  • Tech Blog
  • How to get Latitude and Longitude of address in Odoo using Google Api in Python
  • 5 maart 2021 in
    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

    Ontworpen voor bedrijven

    We zijn een team van gepassioneerde mensen met als doel levens te verbeteren met vernieuwende producten. We ontwikkelen geweldige oplossingen voor al je zakelijke uitdagingen. Onze producten zijn ontworpen voor kleine tot middelgrote bedrijven die hun prestaties willen optimaliseren.

    Neem contact op

    Plantexel
    Pedernera
    Salta Capital 
    Argentina

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