Package pygeodesy :: Module units :: Class Band
[frames] | no frames]

Class Band

  object --+            
           |            
  basestring --+        
               |        
             str --+    
                   |    
  object --+       |    
           |       |    
named._Named --+   |    
               |   |    
      _NamedUnit --+    
                   |    
                 Str --+
                       |
                      Band

Named str representing a UTM/UPS band letter, unchecked.

Instance Methods

Inherited from Str: __repr__, __str__, toRepr, toStr

Inherited from str: __add__, __contains__, __eq__, __format__, __ge__, __getattribute__, __getitem__, __getnewargs__, __getslice__, __gt__, __hash__, __le__, __len__, __lt__, __mod__, __mul__, __ne__, __rmod__, __rmul__, __sizeof__, capitalize, center, count, decode, encode, endswith, expandtabs, find, format, index, isalnum, isalpha, isdigit, islower, isspace, istitle, isupper, join, ljust, lower, lstrip, partition, replace, rfind, rindex, rjust, rpartition, rsplit, rstrip, split, splitlines, startswith, strip, swapcase, title, translate, upper, zfill

Inherited from named._Named: _dot_, attrs, classof, copy, toStr2

Inherited from object: __delattr__, __init__, __reduce__, __reduce_ex__, __setattr__, __subclasshook__

Static Methods
a new object with type S, a subtype of T
__new__(cls, arg, name='band', Error=<class 'pygeodesy.units.UnitError'>)
See Str.
Properties

Inherited from _NamedUnit: std_repr, units

Inherited from named._Named: classname, classnaming, name, named, named2

Inherited from object: __class__

Method Details

__new__ (cls, arg, name='band', Error=<class 'pygeodesy.units.UnitError'>)
Static Method

 

See Str.

Arguments:
  • arg - The value (any type convertable to str).
  • name - Optional instance name (str).
  • Error - Optional error to raise, overriding the default (ValueError).
Returns: a new object with type S, a subtype of T
A Str instance.
Raises:
  • Error - Invalid arg.
Overrides: object.__new__