forked from osm2pgsql-dev/osm2pgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtagtransform.h
More file actions
29 lines (21 loc) · 784 Bytes
/
tagtransform.h
File metadata and controls
29 lines (21 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef TAGTRANSFORM_H
#define TAGTRANSFORM_H
#ifdef HAVE_LUA
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
#endif
#include "output.h"
#ifdef __cplusplus
extern "C" {
#endif
unsigned int tagtransform_filter_node_tags(struct keyval *tags);
unsigned int tagtransform_filter_way_tags(struct keyval *tags, int * polygon, int * roads);
unsigned int tagtransform_filter_rel_tags(struct keyval *tags);
unsigned int tagtransform_filter_rel_member_tags(struct keyval *rel_tags, int member_count, struct keyval *member_tags,const char **member_role, int * member_superseeded, int * make_boundary, int * make_polygon, int * roads);
int tagtransform_init(const struct output_options *options);
void tagtransform_shutdown();
#ifdef __cplusplus
}
#endif
#endif //TAGTRANSFORM_H