|
1
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
|
|
|
2
|
|
|
|
|
3
|
|
|
POI_COLS = ['poi_code', 'poi_postcode', 'poi_city', 'poi_name', 'poi_branch', 'poi_website', 'poi_description', |
|
|
|
|
|
|
4
|
|
|
'poi_fuel_adblue', 'poi_fuel_octane_100', 'poi_fuel_octane_98', 'poi_fuel_octane_95', 'poi_fuel_diesel_gtl', |
|
|
|
|
|
|
5
|
|
|
'poi_fuel_diesel', 'poi_fuel_lpg', 'poi_fuel_e85', 'poi_rent_lpg_bottles', 'poi_compressed_air', |
|
|
|
|
|
|
6
|
|
|
'poi_restaurant', 'poi_food', 'poi_truck', |
|
7
|
|
|
'poi_authentication_app', 'poi_authentication_membership_card', 'poi_capacity', 'poi_fee', |
|
|
|
|
|
|
8
|
|
|
'poi_parking_fee', 'poi_motorcar', 'poi_socket_chademo', 'poi_socket_chademo_output', |
|
9
|
|
|
'poi_socket_type2_combo', 'poi_socket_type2_combo_output', |
|
10
|
|
|
'poi_socket_type2_cable', 'poi_socket_type2_cable_output', |
|
11
|
|
|
'poi_socket_type2', 'poi_socket_type2_output', |
|
12
|
|
|
'poi_manufacturer', 'poi_model', |
|
13
|
|
|
'original', 'poi_addr_street', 'poi_addr_housenumber', 'poi_conscriptionnumber', |
|
14
|
|
|
'poi_ref', 'poi_phone', 'poi_email', |
|
15
|
|
|
'poi_geom', |
|
16
|
|
|
'poi_opening_hours_nonstop', |
|
17
|
|
|
'poi_opening_hours_mo_open', |
|
18
|
|
|
'poi_opening_hours_tu_open', |
|
19
|
|
|
'poi_opening_hours_we_open', |
|
20
|
|
|
'poi_opening_hours_th_open', |
|
21
|
|
|
'poi_opening_hours_fr_open', |
|
22
|
|
|
'poi_opening_hours_sa_open', |
|
23
|
|
|
'poi_opening_hours_su_open', |
|
24
|
|
|
'poi_opening_hours_mo_close', |
|
25
|
|
|
'poi_opening_hours_tu_close', |
|
26
|
|
|
'poi_opening_hours_we_close', |
|
27
|
|
|
'poi_opening_hours_th_close', |
|
28
|
|
|
'poi_opening_hours_fr_close', |
|
29
|
|
|
'poi_opening_hours_sa_close', |
|
30
|
|
|
'poi_opening_hours_su_close', |
|
31
|
|
|
'poi_opening_hours_summer_mo_open', |
|
32
|
|
|
'poi_opening_hours_summer_tu_open', |
|
33
|
|
|
'poi_opening_hours_summer_we_open', |
|
34
|
|
|
'poi_opening_hours_summer_th_open', |
|
35
|
|
|
'poi_opening_hours_summer_fr_open', |
|
36
|
|
|
'poi_opening_hours_summer_sa_open', |
|
37
|
|
|
'poi_opening_hours_summer_su_open', |
|
38
|
|
|
'poi_opening_hours_summer_mo_close', |
|
39
|
|
|
'poi_opening_hours_summer_tu_close', |
|
40
|
|
|
'poi_opening_hours_summer_we_close', |
|
41
|
|
|
'poi_opening_hours_summer_th_close', |
|
42
|
|
|
'poi_opening_hours_summer_fr_close', |
|
43
|
|
|
'poi_opening_hours_summer_sa_close', |
|
44
|
|
|
'poi_opening_hours_summer_su_close', |
|
45
|
|
|
'poi_opening_hours_lunch_break_start', 'poi_opening_hours_lunch_break_stop', 'poi_public_holiday_open', 'poi_opening_hours', |
|
|
|
|
|
|
46
|
|
|
'poi_good', 'poi_bad' |
|
47
|
|
|
] |
|
48
|
|
|
|
|
49
|
|
|
POI_ADDR_COLS = ['poi_postcode', 'poi_city', 'poi_addr_street', 'poi_addr_housenumber', |
|
50
|
|
|
'poi_addr_conscriptionnumber' |
|
51
|
|
|
] |
|
52
|
|
|
OSM_ADDR_COLS = ['addr:postcode', 'addr:city', 'addr:street', 'addr:housenumber', 'addr:conscriptionnumber'] |
|
|
|
|
|
|
53
|
|
|
|