ajl2718 commited on
Commit
55d1ec4
·
1 Parent(s): 78f857f

Modify interface to make it prettier

Browse files
Files changed (1) hide show
  1. app.py +23 -23
app.py CHANGED
@@ -19,31 +19,31 @@ def geocode(addresses):
19
  address_list = addresses.split('\n')
20
  return matcher1.geocode(address_list)
21
 
22
- text_input = gr.Textbox(lines=2, label="Addresses to geocode (one row per address)")
23
- json_output = gr.JSON(label="Output JSON data")
24
-
25
- interface_geocoder = gr.Interface(
26
- fn=geocode,
27
- inputs=[text_input],
28
- outputs=[json_output],
29
- title="Geocode addresses using whereabouts",
30
- description="""
31
- Whereabouts is a freely available open-source geocoding package for Python.
32
-
33
- Currently it supports geocoding of Australian addresses, with more countries being added.
34
-
35
- The code is available on github:
36
- https://www.github.com/ajl2718/whereabouts
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
- This demo shows whereabouts in action, using the small version of the Australian database. This is faster at the expense of accuracy.
45
- """
46
- )
47
-
48
- demo = gr.TabbedInterface([interface_geocoder], ["Geocoding"])
 
 
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()