ajl2718 commited on
Commit
a2f46b5
·
1 Parent(s): 0fda97d

Fix bug in geocoding function

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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(address)
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 or upload a CSV file 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"])