(INTERNAL) Base class for Numpy2LatLon or Tuple2LatLon.
|
__init__(self,
array,
ilat=0,
ilon=1,
LatLon=None,
shape=( ) )
Handle a NumPy or Tuple array as a sequence
of LatLon points. |
|
|
|
__contains__(self,
latlon)
Check for a specific lat-/longitude. |
|
|
|
|
|
|
|
__len__(self)
Return the number of rows. |
|
|
|
__repr__(self)
Return a string representation. |
|
|
|
|
|
__str__(self)
Return a string representation. |
|
|
integer
|
count(self,
latlon)
Count the number of rows with a specific lat-/longitude. |
|
|
|
find(self,
latlon,
*start_end)
Find the first row with a specific lat-/longitude. |
|
|
|
findall(self,
latlon,
*start_end)
Yield indices of all rows with a specific lat-/longitude. |
|
|
integer
|
index(self,
latlon,
*start_end)
Find index of the first row with a specific lat-/longitude. |
|
|
|
point(self,
row)
Instantiate a point LatLon . |
|
|
|
rfind(self,
latlon,
*start_end)
Find the last row with a specific lat-/longitude. |
|
|
|
subset(self,
indices)
Return a subset of the NumPy array. |
|
|
Inherited from _Basequence :
copy ,
dup
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__
|