Generate files in Makefile (WIP)

This commit is contained in:
Rafa de la Torre
2015-11-18 16:17:36 +01:00
parent 68dba7136b
commit c82359f7d7
14 changed files with 26 additions and 230 deletions

10
interface.csv Normal file
View File

@@ -0,0 +1,10 @@
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"
1 function_name result_data_type argument_data_types
2 geocode_admin0_polygon Geometry country_name text
3 geocode_admin1_polygon Geometry admin1_name text
4 geocode_admin1_polygon Geometry admin1_name text, country_name text
5 geocode_namedplace_point Geometry city_name text
6 geocode_namedplace_point Geometry city_name text, country_name text
7 geocode_namedplace_point Geometry city_name text, admin1_name text, country_name text
8 geocode_postalcode_polygon Geometry postal_code text, country_name text
9 geocode_postalcode_point Geometry postal_code text, country_name text
10 geocode_ipaddress_point Geometry ip_address text