Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs #11

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open

Docs #11

Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
trying to debug the query string
kenseii committed Oct 3, 2019
commit b90fc2f6477cb5458d5ce739971a8c4ca7d81f39
3 changes: 2 additions & 1 deletion llplot/llplot.py
Original file line number Diff line number Diff line change
@@ -63,8 +63,9 @@ def geocode(self, location_string):
q_string = urllib.parse.urlencode({'q': location_string,
'format': 'json',
'addressdetails': 1,
'limit': 1,
'limit': 1
})
print(q_string)

geocode = requests.post(
'https://nominatim.openstreetmap.org/?"%s"' % q_string)