Exemplo n.º 1
0
 def inverse_flattening(self):
     "Returns the Inverse Flattening for this Spatial Reference."
     return capi.invflattening(self.ptr, byref(c_int()))
Exemplo n.º 2
0
"""
Exemplo n.º 3
0
 def inverse_flattening(self):
     "Returns the Inverse Flattening for this Spatial Reference."
     return capi.invflattening(self.ptr, byref(c_int()))
Exemplo n.º 4
0
    def semi_minor(self):
<<<<<<< HEAD
        "Returns the Semi Minor Axis for this Spatial Reference."
=======
        "Return the Semi Minor Axis for this Spatial Reference."
>>>>>>> 37c99181c9a6b95433d60f8c8ef9af5731096435
        return capi.semi_minor(self.ptr, byref(c_int()))

    @property
    def inverse_flattening(self):
<<<<<<< HEAD
        "Returns the Inverse Flattening for this Spatial Reference."
=======
        "Return the Inverse Flattening for this Spatial Reference."
>>>>>>> 37c99181c9a6b95433d60f8c8ef9af5731096435
        return capi.invflattening(self.ptr, byref(c_int()))

    # #### Boolean Properties ####
    @property
    def geographic(self):
        """
<<<<<<< HEAD
        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