示例#1
0
文件: srs.py 项目: JMassapina/lettuce
 def units(self):
     """
     Returns a 2-tuple of the units value and the units name, 
     and will automatically determines whether to return the linear
     or angular units.
     """
     if self.projected or self.local:
         return capi.linear_units(self.ptr, byref(c_char_p()))
     elif self.geographic:
         return capi.angular_units(self.ptr, byref(c_char_p()))
     else:
         return (None, None)
示例#2
0
 def units(self):
     """
     Returns a 2-tuple of the units value and the units name, 
     and will automatically determines whether to return the linear
     or angular units.
     """
     if self.projected or self.local:
         return capi.linear_units(self.ptr, byref(c_char_p()))
     elif self.geographic:
         return capi.angular_units(self.ptr, byref(c_char_p()))
     else:
         return (None, None)
示例#3
0
文件: srs.py 项目: ahlan90/ginvix
 def units(self):
     """
     Return a 2-tuple of the units value and the units name. Automatically
     determine whether to return the linear or front units.
     """
     units, name = None, None
     if self.projected or self.local:
         units, name = capi.linear_units(self.ptr, byref(c_char_p()))
     elif self.geographic:
         units, name = capi.angular_units(self.ptr, byref(c_char_p()))
     if name is not None:
         name = force_text(name)
     return (units, name)
示例#4
0
 def units(self):
     """
     Return a 2-tuple of the units value and the units name. Automatically
     determine whether to return the linear or angular units.
     """
     units, name = None, None
     if self.projected or self.local:
         units, name = capi.linear_units(self.ptr, byref(c_char_p()))
     elif self.geographic:
         units, name = capi.angular_units(self.ptr, byref(c_char_p()))
     if name is not None:
         name = force_text(name)
     return (units, name)
示例#5
0
 def units(self):
     """
     Returns a 2-tuple of the units value and the units name,
     and will automatically determines whether to return the linear
     or angular units.
     """
     units, name = None, None
     if self.projected or self.local:
         units, name = capi.linear_units(self.ptr, byref(c_char_p()))
     elif self.geographic:
         units, name = capi.angular_units(self.ptr, byref(c_char_p()))
     if name is not None:
         name.decode()
     return (units, name)
示例#6
0
    def units(self):
        """
<<<<<<< HEAD
        Returns a 2-tuple of the units value and the units name,
        and will automatically determines whether to return the linear
        or angular units.
=======
        Return a 2-tuple of the units value and the units name. Automatically
        determine whether to return the linear or angular units.
>>>>>>> 37c99181c9a6b95433d60f8c8ef9af5731096435
        """
        units, name = None, None
        if self.projected or self.local:
            units, name = capi.linear_units(self.ptr, byref(c_char_p()))
        elif self.geographic:
            units, name = capi.angular_units(self.ptr, byref(c_char_p()))
        if name is not None:
            name = force_text(name)
        return (units, name)
示例#7
0
文件: srs.py 项目: JMassapina/lettuce
 def angular_units(self):
     "Returns the value of the angular units."
     units, name = capi.angular_units(self.ptr, byref(c_char_p()))
     return units
示例#8
0
 def angular_units(self):
     "Returns the value of the angular units."
     units, name = capi.angular_units(self.ptr, byref(c_char_p()))
     return units
示例#9
0
文件: srs.py 项目: ahlan90/ginvix
 def angular_name(self):
     "Return the name of the front units."
     units, name = capi.angular_units(self.ptr, byref(c_char_p()))
     return name
示例#10
0
"""
示例#11
0
 def angular_name(self):
     "Return the name of the angular units."
     units, name = capi.angular_units(self.ptr, byref(c_char_p()))
     return name
示例#12
0
<<<<<<< HEAD
        "Returns the value of the linear units."
=======
        "Return the value of the linear units."
>>>>>>> 37c99181c9a6b95433d60f8c8ef9af5731096435
        units, name = capi.linear_units(self.ptr, byref(c_char_p()))
        return units

    @property
    def angular_name(self):
<<<<<<< HEAD
        "Returns the name of the angular units."
=======
        "Return the name of the angular units."
>>>>>>> 37c99181c9a6b95433d60f8c8ef9af5731096435
        units, name = capi.angular_units(self.ptr, byref(c_char_p()))
        return name

    @property
    def angular_units(self):
<<<<<<< HEAD
        "Returns the value of the angular units."
=======
        "Return the value of the angular units."
>>>>>>> 37c99181c9a6b95433d60f8c8ef9af5731096435
        units, name = capi.angular_units(self.ptr, byref(c_char_p()))
        return units

    @property
    def units(self):
        """