Advertisement
xunilk

QgsCoordinateReferenceSystem Class (PyQGIS)

Aug 4th, 2014
545
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.98 KB | None | 0 0
  1. Python 2.7.4 (default, Apr 6 2013, 19:54:46) [MSC v.1500 32 bit (Intel)] on zeito
  2. ## Type help(iface) for more info and list of methods.
  3. help(QgsCoordinateReferenceSystem)
  4. Help on class QgsCoordinateReferenceSystem in module qgis.core:
  5.  
  6. class QgsCoordinateReferenceSystem(sip.wrapper)
  7. | QgsCoordinateReferenceSystem()
  8. | QgsCoordinateReferenceSystem(QString)
  9. | QgsCoordinateReferenceSystem(int, QgsCoordinateReferenceSystem.CrsType theType=QgsCoordinateReferenceSystem.PostgisCrsId)
  10. | QgsCoordinateReferenceSystem(QgsCoordinateReferenceSystem)
  11. |
  12. | Method resolution order:
  13. | QgsCoordinateReferenceSystem
  14. | sip.wrapper
  15. | sip.simplewrapper
  16. | __builtin__.object
  17. |
  18. | Methods defined here:
  19. |
  20. | __eq__(...)
  21. | x.__eq__(y) <==> x==y
  22. |
  23. | __ge__(...)
  24. | x.__ge__(y) <==> x>=y
  25. |
  26. | __gt__(...)
  27. | x.__gt__(y) <==> x>y
  28. |
  29. | __le__(...)
  30. | x.__le__(y) <==> x<=y
  31. |
  32. | __lt__(...)
  33. | x.__lt__(y) <==> x<y
  34. |
  35. | __ne__(...)
  36. | x.__ne__(y) <==> x!=y
  37. |
  38. | authid(...)
  39. | QgsCoordinateReferenceSystem.authid() -> QString
  40. |
  41. | axisInverted(...)
  42. | QgsCoordinateReferenceSystem.axisInverted() -> bool
  43. |
  44. | createFromId(...)
  45. | QgsCoordinateReferenceSystem.createFromId(int, QgsCoordinateReferenceSystem.CrsType theType=QgsCoordinateReferenceSystem.PostgisCrsId) -> bool
  46. |
  47. | createFromOgcWmsCrs(...)
  48. | QgsCoordinateReferenceSystem.createFromOgcWmsCrs(QString) -> bool
  49. |
  50. | createFromProj4(...)
  51. | QgsCoordinateReferenceSystem.createFromProj4(QString) -> bool
  52. |
  53. | createFromSrid(...)
  54. | QgsCoordinateReferenceSystem.createFromSrid(int) -> bool
  55. |
  56. | createFromSrsId(...)
  57. | QgsCoordinateReferenceSystem.createFromSrsId(int) -> bool
  58. |
  59. | createFromString(...)
  60. | QgsCoordinateReferenceSystem.createFromString(QString) -> bool
  61. |
  62. | createFromUserInput(...)
  63. | QgsCoordinateReferenceSystem.createFromUserInput(QString) -> bool
  64. |
  65. | createFromWkt(...)
  66. | QgsCoordinateReferenceSystem.createFromWkt(QString) -> bool
  67. |
  68. | description(...)
  69. | QgsCoordinateReferenceSystem.description() -> QString
  70. |
  71. | ellipsoidAcronym(...)
  72. | QgsCoordinateReferenceSystem.ellipsoidAcronym() -> QString
  73. |
  74. | findMatchingProj(...)
  75. | QgsCoordinateReferenceSystem.findMatchingProj() -> int
  76. |
  77. | geographicCRSAuthId(...)
  78. | QgsCoordinateReferenceSystem.geographicCRSAuthId() -> QString
  79. |
  80. | geographicFlag(...)
  81. | QgsCoordinateReferenceSystem.geographicFlag() -> bool
  82. |
  83. | isValid(...)
  84. | QgsCoordinateReferenceSystem.isValid() -> bool
  85. |
  86. | mapUnits(...)
  87. | QgsCoordinateReferenceSystem.mapUnits() -> QGis.UnitType
  88. |
  89. | postgisSrid(...)
  90. | QgsCoordinateReferenceSystem.postgisSrid() -> int
  91. |
  92. | projectionAcronym(...)
  93. | QgsCoordinateReferenceSystem.projectionAcronym() -> QString
  94. |
  95. | readXML(...)
  96. | QgsCoordinateReferenceSystem.readXML(QDomNode) -> bool
  97. |
  98. | saveAsUserCRS(...)
  99. | QgsCoordinateReferenceSystem.saveAsUserCRS(QString) -> bool
  100. |
  101. | setValidationHint(...)
  102. | QgsCoordinateReferenceSystem.setValidationHint(QString)
  103. |
  104. | setupESRIWktFix(...)
  105. | QgsCoordinateReferenceSystem.setupESRIWktFix()
  106. |
  107. | srsid(...)
  108. | QgsCoordinateReferenceSystem.srsid() -> int
  109. |
  110. | syncDb(...)
  111. | QgsCoordinateReferenceSystem.syncDb() -> int
  112. |
  113. | toProj4(...)
  114. | QgsCoordinateReferenceSystem.toProj4() -> QString
  115. |
  116. | toWkt(...)
  117. | QgsCoordinateReferenceSystem.toWkt() -> QString
  118. |
  119. | validate(...)
  120. | QgsCoordinateReferenceSystem.validate()
  121. |
  122. | validationHint(...)
  123. | QgsCoordinateReferenceSystem.validationHint() -> QString
  124. |
  125. | writeXML(...)
  126. | QgsCoordinateReferenceSystem.writeXML(QDomNode, QDomDocument) -> bool
  127. |
  128. | ----------------------------------------------------------------------
  129. | Data descriptors defined here:
  130. |
  131. | __weakref__
  132. | list of weak references to the object (if defined)
  133. |
  134. | ----------------------------------------------------------------------
  135. | Data and other attributes defined here:
  136. |
  137. | CrsType = <class 'qgis.core.CrsType'>
  138. |
  139. |
  140. | EpsgCrsId = 2
  141. |
  142. | InternalCrsId = 0
  143. |
  144. | PostgisCrsId = 1
  145. |
  146. | ----------------------------------------------------------------------
  147. | Methods inherited from sip.simplewrapper:
  148. |
  149. | __init__(...)
  150. | x.__init__(...) initializes x; see help(type(x)) for signature
  151. |
  152. | ----------------------------------------------------------------------
  153. | Data descriptors inherited from sip.simplewrapper:
  154. |
  155. | __dict__
  156. |
  157. | ----------------------------------------------------------------------
  158. | Data and other attributes inherited from sip.simplewrapper:
  159. |
  160. | __new__ = <built-in method __new__ of sip.wrappertype object>
  161. | T.__new__(S, ...) -> a new object with type S, a subtype of T
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement