File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,13 @@ public:
4949 WKBMultiPoint,
5050 WKBMultiLineString,
5151 WKBMultiPolygon,
52- WKBUnknown
52+ WKBUnknown,
53+ WKBPoint25D = 0x80000001,
54+ WKBLineString25D,
55+ WKBPolygon25D,
56+ WKBMultiPoint25D,
57+ WKBMultiLineString25D,
58+ WKBMultiPolygon25D
5359 };
5460 enum GeometryType
5561 {
@@ -104,6 +110,8 @@ public:
104110 const int PROJ_PREFIX_LEN;
105111 /** The length of teh string "+ellps=" */
106112 const int ELLPS_PREFIX_LEN;
113+ /** The length of the string "+lat_1=" */
114+ const int LAT_PREFIX_LEN;
107115 /** Magick number that determins whether a projection srsid is a system (srs.db)
108116 * or user (~/.qgis.qgis.db) defined projection. */
109117 const int USER_CRS_START_ID;
@@ -116,3 +124,5 @@ public:
116124 const float MINIMUM_POINT_SIZE;
117125 /** Magic number that determines the minimum allowable point size for point symbols */
118126 const float DEFAULT_POINT_SIZE;
127+ const double DEFAULT_LINE_WIDTH;
128+
You can’t perform that action at this time.
0 commit comments