Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
ajl2718
commited on
Commit
·
a2f46b5
1
Parent(s):
0fda97d
Fix bug in geocoding function
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ matcher = Matcher('au_all_sm')
|
|
13 |
|
14 |
# function to geocode results
|
15 |
def geocode(addresses):
|
16 |
-
return matcher.geocode(
|
17 |
|
18 |
text_input = gr.Textbox(lines=2, label="Addresses to geocode (one row per address)")
|
19 |
json_output = gr.JSON(label="Output JSON data")
|
@@ -23,7 +23,7 @@ interface_geocoder = gr.Interface(
|
|
23 |
inputs=[text_input],
|
24 |
outputs=[json_output],
|
25 |
title="Geocoder",
|
26 |
-
description="Enter a list of addresses
|
27 |
)
|
28 |
|
29 |
demo = gr.TabbedInterface([interface_geocoder], ["Geocoding"])
|
|
|
13 |
|
14 |
# function to geocode results
|
15 |
def geocode(addresses):
|
16 |
+
return matcher.geocode(addresses)
|
17 |
|
18 |
text_input = gr.Textbox(lines=2, label="Addresses to geocode (one row per address)")
|
19 |
json_output = gr.JSON(label="Output JSON data")
|
|
|
23 |
inputs=[text_input],
|
24 |
outputs=[json_output],
|
25 |
title="Geocoder",
|
26 |
+
description="Enter a list of addresses"
|
27 |
)
|
28 |
|
29 |
demo = gr.TabbedInterface([interface_geocoder], ["Geocoding"])
|