This class is the base for implementing ways to navigate over the band with spatial restriction, e.g. through a line, inside a bounding box or polygon, etc. More...
#include <PositionIterator.h>
  
 Public Member Functions | |
| virtual unsigned int | getColumn () const =0 | 
| Returns the current column in iterator.  More... | |
| virtual unsigned int | getRow () const =0 | 
| Returns the current row in iterator.  More... | |
| virtual bool | operator!= (const AbstractPositionIterator< T > &rhs) const =0 | 
| Difference operator.  More... | |
| virtual std::complex< T > | operator() (const unsigned int i) const =0 | 
| Returns the complex value in current position (column, row, band) from iterator.  More... | |
| virtual const std::vector< T > | operator* () const =0 | 
| Returns a vector of the values in current position (column, row) from iterator.  More... | |
| virtual void | operator++ ()=0 | 
| Advances to the next position.  More... | |
| virtual void | operator-- ()=0 | 
| Returns to the previous position.  More... | |
| virtual AbstractPositionIterator< T > & | operator= (const AbstractPositionIterator< T > &rhs) | 
| Assignment operator.  More... | |
| virtual T | operator[] (const unsigned int i) const =0 | 
| Returns the real value in current position (column, row, band) from iterator.  More... | |
| virtual void | setEnd ()=0 | 
| Sets the iterator position to the end of the current band.  More... | |
| virtual | ~AbstractPositionIterator () | 
| Destructor.  More... | |
Protected Member Functions | |
| AbstractPositionIterator () | |
| Constructor.  More... | |
| AbstractPositionIterator (const AbstractPositionIterator &rhs) | |
| Copy constructor.  More... | |
This class is the base for implementing ways to navigate over the band with spatial restriction, e.g. through a line, inside a bounding box or polygon, etc.
Definition at line 65 of file PositionIterator.h.
      
  | 
  virtual | 
Destructor.
Definition at line 464 of file PositionIterator.h.
      
  | 
  protected | 
Constructor.
Definition at line 456 of file PositionIterator.h.
      
  | 
  protected | 
Copy constructor.
| rhs | The right-hand-side copy used to copy from. | 
Definition at line 460 of file PositionIterator.h.
      
  | 
  pure virtual | 
Returns the current column in iterator.
Implemented in te::rst::PointSetIterator< T >, te::rst::LineIterator< T >, and te::rst::PolygonIterator< T >.
      
  | 
  pure virtual | 
Returns the current row in iterator.
Implemented in te::rst::PointSetIterator< T >, te::rst::LineIterator< T >, and te::rst::PolygonIterator< T >.
      
  | 
  pure virtual | 
Difference operator.
| rhs | The right-hand side to compare. | 
Implemented in te::rst::PointSetIterator< T >, te::rst::LineIterator< T >, and te::rst::PolygonIterator< T >.
      
  | 
  pure virtual | 
Returns the complex value in current position (column, row, band) from iterator.
| i | The band index. | 
Implemented in te::rst::PointSetIterator< T >, te::rst::LineIterator< T >, and te::rst::PolygonIterator< T >.
      
  | 
  pure virtual | 
Returns a vector of the values in current position (column, row) from iterator.
Implemented in te::rst::PointSetIterator< T >, te::rst::LineIterator< T >, and te::rst::PolygonIterator< T >.
      
  | 
  pure virtual | 
Advances to the next position.
Implemented in te::rst::PointSetIterator< T >, te::rst::LineIterator< T >, and te::rst::PolygonIterator< T >.
      
  | 
  pure virtual | 
Returns to the previous position.
Implemented in te::rst::PointSetIterator< T >, te::rst::LineIterator< T >, and te::rst::PolygonIterator< T >.
      
  | 
  virtual | 
Assignment operator.
| rhs | The right-hand-side copy used to copy from. | 
Reimplemented in te::rst::PointSetIterator< T >, te::rst::LineIterator< T >, and te::rst::PolygonIterator< T >.
Definition at line 469 of file PositionIterator.h.
Referenced by te::rst::PolygonIterator< T >::operator=(), te::rst::LineIterator< T >::operator=(), and te::rst::PointSetIterator< T >::operator=().
      
  | 
  pure virtual | 
Returns the real value in current position (column, row, band) from iterator.
| i | The band index. | 
Implemented in te::rst::PointSetIterator< T >, te::rst::LineIterator< T >, and te::rst::PolygonIterator< T >.
      
  | 
  pure virtual | 
Sets the iterator position to the end of the current band.
| b | The band to retrieve the end information. | 
Implemented in te::rst::PointSetIterator< T >, te::rst::LineIterator< T >, and te::rst::PolygonIterator< T >.