Beispiel #1
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)
Beispiel #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)
Beispiel #3
0
 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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #7
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
Beispiel #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
Beispiel #9
0
 def angular_name(self):
     "Return the name of the front units."
     units, name = capi.angular_units(self.ptr, byref(c_char_p()))
     return name
Beispiel #10
0
"""
Beispiel #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
Beispiel #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):
        """