Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
ajl2718
commited on
Commit
·
55d1ec4
1
Parent(s):
78f857f
Modify interface to make it prettier
Browse files
app.py
CHANGED
@@ -19,31 +19,31 @@ def geocode(addresses):
|
|
19 |
address_list = addresses.split('\n')
|
20 |
return matcher1.geocode(address_list)
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
Or you can install it using as follows
|
39 |
```
|
40 |
pip install whereabouts
|
41 |
python -m whereabouts download au_all_sm
|
42 |
```
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
)
|
47 |
-
|
48 |
-
|
|
|
|
|
49 |
demo.launch()
|
|
|
19 |
address_list = addresses.split('\n')
|
20 |
return matcher1.geocode(address_list)
|
21 |
|
22 |
+
# the gradio interface
|
23 |
+
with gr.Blocks() as demo:
|
24 |
+
gr.Markdown("# whereabouts")
|
25 |
+
gr.HTML("""
|
26 |
+
<div style="display:flex;column-gap:4px;">
|
27 |
+
<a href='https://github.com/ajl2718/whereabouts'>
|
28 |
+
<img src='https://img.shields.io/badge/Code-github-blue'>
|
29 |
+
</a>
|
30 |
+
</div>
|
31 |
+
""")
|
32 |
+
gr.Markdown("Fast, accurate open source geocoding in Python")
|
33 |
+
gr.Markdown("""
|
34 |
+
[whereabouts](https://www.github.com/ajl2718/whereabouts) is an open source package for Python for fast and accurate geocoding within
|
35 |
+
your own environment. It currently supports geocoding for Australia but with more countries coming soon. It uses duckDB to geocode up to 1000s of addresses per second based on an algorithm from [this paper](https://arxiv.org/abs/1708.01402)""")
|
36 |
+
gr.Markdown("""
|
|
|
|
|
37 |
```
|
38 |
pip install whereabouts
|
39 |
python -m whereabouts download au_all_sm
|
40 |
```
|
41 |
+
This demo shows whereabouts in action, using the small version of the Australian database. This is faster at the expense of accuracy. Running in your own environment speeds things up too.
|
42 |
+
""")
|
43 |
+
with gr.Row():
|
44 |
+
with gr.Column():
|
45 |
+
text_input = gr.Textbox(lines=2, label="Addresses to geocode (one row per address)")
|
46 |
+
geocode_button = gr.Button()
|
47 |
+
json_output = gr.JSON(label="Output JSON data")
|
48 |
+
geocode_button.click(fn=geocode, inputs=inp, outputs=out, api_name="whereabouts_geocoder")
|
49 |
demo.launch()
|