2017-07-14 23:56:23 +00:00
|
|
|
#ifndef OPTIONS_HPP
|
|
|
|
#define OPTIONS_HPP
|
|
|
|
|
2016-04-27 22:09:06 +00:00
|
|
|
#define A_COALESCE ((int) 'c')
|
|
|
|
#define A_REVERSE ((int) 'r')
|
|
|
|
#define A_REORDER ((int) 'o')
|
|
|
|
#define A_LINE_DROP ((int) 'l')
|
2016-11-04 19:26:13 +00:00
|
|
|
#define A_DEBUG_POLYGON ((int) 'D')
|
2016-04-27 22:09:06 +00:00
|
|
|
#define A_POLYGON_DROP ((int) 'p')
|
2016-10-06 23:16:51 +00:00
|
|
|
#define A_DETECT_SHARED_BORDERS ((int) 'b')
|
2016-04-27 22:09:06 +00:00
|
|
|
#define A_PREFER_RADIX_SORT ((int) 'R')
|
2016-05-27 23:25:40 +00:00
|
|
|
#define A_CALCULATE_FEATURE_DENSITY ((int) 'g')
|
2016-10-24 19:29:36 +00:00
|
|
|
#define A_INCREASE_GAMMA_AS_NEEDED ((int) 'G')
|
2016-10-24 23:27:00 +00:00
|
|
|
#define A_MERGE_POLYGONS_AS_NEEDED ((int) 'm')
|
2016-11-17 20:40:11 +00:00
|
|
|
#define A_DROP_DENSEST_AS_NEEDED ((int) 's')
|
2016-11-04 19:26:13 +00:00
|
|
|
#define A_DROP_FRACTION_AS_NEEDED ((int) 'd')
|
2016-11-10 00:32:40 +00:00
|
|
|
#define A_DROP_SMALLEST_AS_NEEDED ((int) 'n')
|
2017-10-07 01:01:08 +00:00
|
|
|
#define A_COALESCE_SMALLEST_AS_NEEDED ((int) 'N')
|
2016-11-28 22:55:22 +00:00
|
|
|
#define A_GRID_LOW_ZOOMS ((int) 'L')
|
2017-03-15 20:35:41 +00:00
|
|
|
#define A_DETECT_WRAPAROUND ((int) 'w')
|
2017-05-31 17:41:23 +00:00
|
|
|
#define A_EXTEND_ZOOMS ((int) 'e')
|
2017-12-14 22:30:08 +00:00
|
|
|
#define A_CLUSTER_DENSEST_AS_NEEDED ((int) 'C')
|
2016-04-27 22:09:06 +00:00
|
|
|
|
|
|
|
#define P_SIMPLIFY ((int) 's')
|
|
|
|
#define P_SIMPLIFY_LOW ((int) 'S')
|
|
|
|
#define P_FEATURE_LIMIT ((int) 'f')
|
|
|
|
#define P_KILOBYTE_LIMIT ((int) 'k')
|
|
|
|
#define P_DYNAMIC_DROP ((int) 'd')
|
|
|
|
#define P_INPUT_ORDER ((int) 'i')
|
|
|
|
#define P_POLYGON_SPLIT ((int) 'p')
|
|
|
|
#define P_CLIPPING ((int) 'c')
|
|
|
|
#define P_DUPLICATION ((int) 'D')
|
2016-11-21 19:26:37 +00:00
|
|
|
#define P_TINY_POLYGON_REDUCTION ((int) 't')
|
2017-04-07 12:33:01 +00:00
|
|
|
#define P_TILE_COMPRESSION ((int) 'C')
|
2017-08-15 17:35:41 +00:00
|
|
|
#define P_TILE_STATS ((int) 'g')
|
2016-05-25 18:38:52 +00:00
|
|
|
|
|
|
|
extern int prevent[256];
|
|
|
|
extern int additional[256];
|
2017-07-14 23:56:23 +00:00
|
|
|
|
|
|
|
#endif
|