示例#1
0
文件: srs.py 项目: JMassapina/lettuce
 def semi_minor(self):
     "Returns the Semi Minor Axis for this Spatial Reference."
     return capi.semi_minor(self.ptr, byref(c_int()))
示例#2
0
"""
示例#3
0
 def semi_minor(self):
     "Returns the Semi Minor Axis for this Spatial Reference."
     return capi.semi_minor(self.ptr, byref(c_int()))
示例#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