OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
Functions
ossimNadconGridHeader.cpp File Reference
#include <fstream>
#include <iostream>
#include <ossim/base/ossimNadconGridHeader.h>
#include <ossim/base/ossimEndian.h>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &out, const ossimNadconGridHeader &rhs)
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  out,
const ossimNadconGridHeader rhs 
)

Definition at line 13 of file ossimNadconGridHeader.cpp.

References ossimNadconGridHeader::getBoundingRect(), ossimNadconGridHeader::theCols, ossimNadconGridHeader::theDx, ossimNadconGridHeader::theDy, ossimNadconGridHeader::theMinX, ossimNadconGridHeader::theMinY, ossimNadconGridHeader::theRows, and ossimNadconGridHeader::theZ.

14 {
15  out << "theCols: " << rhs.theCols
16  << "\ntheRows: " << rhs.theRows
17  << "\ntheZ: " << rhs.theZ
18  << "\ntheMinX: " << rhs.theMinX
19  << "\ntheDx: " << rhs.theDx
20  << "\ntheMinY: " << rhs.theMinY
21  << "\ntheDy: " << rhs.theDy
22  << "\nBounds: " << rhs.getBoundingRect() << std::endl;
23  return out;
24 }
ossimDrect getBoundingRect() const