Adapt interface to yaml (WIP)
This commit is contained in:
parent
716b8dc43e
commit
81356ca92c
@ -1,10 +0,0 @@
|
||||
function_name,result_data_type,argument_data_types
|
||||
geocode_admin0_polygon,Geometry,"country_name text"
|
||||
geocode_admin1_polygon,Geometry,"admin1_name text"
|
||||
geocode_admin1_polygon,Geometry,"admin1_name text, country_name text"
|
||||
geocode_namedplace_point,Geometry,"city_name text"
|
||||
geocode_namedplace_point,Geometry,"city_name text, country_name text"
|
||||
geocode_namedplace_point,Geometry,"city_name text, admin1_name text, country_name text"
|
||||
geocode_postalcode_polygon,Geometry,"postal_code text, country_name text"
|
||||
geocode_postalcode_point,Geometry,"postal_code text, country_name text"
|
||||
geocode_ipaddress_point,Geometry,"ip_address text"
|
|
@ -13,4 +13,33 @@
|
||||
return_type: Geometry
|
||||
params:
|
||||
- { name: admin1_name, type: text }
|
||||
- { name: country_name, type: text }
|
||||
- { name: country_name, type: text }
|
||||
|
||||
- name: geocode_namedplace_point
|
||||
return_type: Geometry
|
||||
params:
|
||||
- { name: city_name, type: text}
|
||||
|
||||
- name: geocode_namedplace_point
|
||||
return_type: Geometry
|
||||
params:
|
||||
- { name: city_name, type: text}
|
||||
- { name: country_name, type: text}
|
||||
|
||||
- name: geocode_postalcode_polygon
|
||||
return_type: Geometry
|
||||
params:
|
||||
- { name: postal_code, type: text}
|
||||
- { name: country_name, type: text}
|
||||
|
||||
- name: geocode_postalcode_point
|
||||
return_type: Geometry
|
||||
params:
|
||||
- { name: postal_code, type: text}
|
||||
- { name: country_name, type: text}
|
||||
|
||||
- name: geocode_ipaddress_point
|
||||
return_type: Geometry
|
||||
params:
|
||||
- { name: ip_address, type: text}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user