We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 9d3f9f8 commit e99592fCopy full SHA for e99592f
python/core/qgis.sip
@@ -70,14 +70,19 @@ public:
70
//! description strings for feature types
71
//static const char *qgisFeatureTypes[];
72
73
- //! map units that qgis supports
+ /** Map units that qgis supports
74
+ * @note that QGIS < 1.4 api had only Meters, Feet, Degrees and UnknownUnit
75
+ */
76
enum UnitType
77
{
- Meters,
- Feet,
78
- Degrees,
79
- UnknownUnit
80
- };
+ Meters = 0,
+ Feet = 1,
+ Degrees = 2, //for 1.0 api backwards compatibility
81
+ DecimalDegrees = 2,
82
+ DegreesMinutesSeconds = 4,
83
+ DegreesDecimalMinutes = 5,
84
+ UnknownUnit = 3
85
+ } ;
86
87
//! User defined event types
88
enum UserEvent
0 commit comments