Skip to content

Commit

Permalink
PyQGIS: another missing bits
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9711 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed Nov 26, 2008
1 parent fda285a commit 630ddb7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion python/core/qgis.sip
Expand Up @@ -49,7 +49,13 @@ public:
WKBMultiPoint,
WKBMultiLineString,
WKBMultiPolygon,
WKBUnknown
WKBUnknown,
WKBPoint25D = 0x80000001,
WKBLineString25D,
WKBPolygon25D,
WKBMultiPoint25D,
WKBMultiLineString25D,
WKBMultiPolygon25D
};
enum GeometryType
{
Expand Down Expand Up @@ -104,6 +110,8 @@ public:
const int PROJ_PREFIX_LEN;
/** The length of teh string "+ellps=" */
const int ELLPS_PREFIX_LEN;
/** The length of the string "+lat_1=" */
const int LAT_PREFIX_LEN;
/** Magick number that determins whether a projection srsid is a system (srs.db)
* or user (~/.qgis.qgis.db) defined projection. */
const int USER_CRS_START_ID;
Expand All @@ -116,3 +124,5 @@ public:
const float MINIMUM_POINT_SIZE;
/** Magic number that determines the minimum allowable point size for point symbols */
const float DEFAULT_POINT_SIZE;
const double DEFAULT_LINE_WIDTH;

0 comments on commit 630ddb7

Please sign in to comment.