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

    @property
    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