コード例 #1
0
ファイル: srs.py プロジェクト: JMassapina/lettuce
 def local(self):
     "Returns True if this SpatialReference is local (root node is LOCAL_CS)."
     return bool(capi.islocal(self.ptr))
コード例 #2
0
ファイル: srs.py プロジェクト: letouriste001/SmartForest_2.0
"""
コード例 #3
0
 def local(self):
     "Returns True if this SpatialReference is local (root node is LOCAL_CS)."
     return bool(capi.islocal(self.ptr))
コード例 #4
0
        Returns True if this SpatialReference is geographic
=======
        Return True if this SpatialReference is geographic
>>>>>>> 37c99181c9a6b95433d60f8c8ef9af5731096435
         (root node is GEOGCS).
        """
        return bool(capi.isgeographic(self.ptr))

    @property
    def local(self):
<<<<<<< HEAD
        "Returns True if this SpatialReference is local (root node is LOCAL_CS)."
=======
        "Return True if this SpatialReference is local (root node is LOCAL_CS)."
>>>>>>> 37c99181c9a6b95433d60f8c8ef9af5731096435
        return bool(capi.islocal(self.ptr))

    @property
    def projected(self):
        """
<<<<<<< HEAD
        Returns True if this SpatialReference is a projected coordinate system
=======
        Return True if this SpatialReference is a projected coordinate system
>>>>>>> 37c99181c9a6b95433d60f8c8ef9af5731096435
         (root node is PROJCS).
        """
        return bool(capi.isprojected(self.ptr))

    # #### Import Routines #####
    def import_epsg(self, epsg):