![]() |
TerraLib 4.1
|
00001 /************************************************************************************ 00002 TerraLib - a library for developing GIS applications. 00003 Copyright © 2001-2007 INPE and Tecgraf/PUC-Rio. 00004 00005 This code is part of the TerraLib library. 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Lesser General Public 00008 License as published by the Free Software Foundation; either 00009 version 2.1 of the License, or (at your option) any later version. 00010 00011 You should have received a copy of the GNU Lesser General Public 00012 License along with this library. 00013 00014 The authors reassure the license terms regarding the warranties. 00015 They specifically disclaim any warranties, including, but not limited to, 00016 the implied warranties of merchantability and fitness for a particular purpose. 00017 The library provided hereunder is on an "as is" basis, and the authors have no 00018 obligation to provide maintenance, support, updates, enhancements, or modifications. 00019 In no event shall INPE and Tecgraf / PUC-Rio be held liable to any party for direct, 00020 indirect, special, incidental, or consequential damages arising out of the use 00021 of this library and its documentation. 00022 *************************************************************************************/ 00026 #ifndef __TERRALIB_INTERNAL_DECODERASCIIGrid_H 00027 #define __TERRALIB_INTERNAL_DECODERASCIIGrid_H 00028 00029 #include "TeDecoder.h" 00030 00031 class TeAsciiFile; 00032 00034 00037 class TL_DLL TeDecoderASCIIGrid : public TeDecoder 00038 { 00039 public: 00041 TeDecoderASCIIGrid(); 00042 00044 TeDecoderASCIIGrid(const TeRasterParams& par); 00045 00047 ~TeDecoderASCIIGrid(); 00048 00050 void init(); 00051 00053 bool clear(); 00054 00056 bool setElement(int col,int lin, double val, int band=0); 00057 00059 bool getElement(int col,int lin, double &val,int band=0); 00060 00061 private: 00062 00063 bool isModified_; 00064 long size_; 00065 double* myData_; 00066 00068 bool readFile(const string& filename); 00069 00071 bool readParameters(); 00072 00074 bool writeParameters(TeAsciiFile& pFile); 00075 00077 bool saveData(TeAsciiFile& pFile); 00078 00079 }; 00080 00082 class TL_DLL TeDecoderASCIIGridFactory : public TeDecoderFactory 00083 { 00084 public: 00086 TeDecoderASCIIGridFactory(const string& name); 00087 00089 00093 TeDecoder* build (const TeRasterParams& arg) 00094 { return new TeDecoderASCIIGrid(arg); } 00095 00096 }; 00097 #endif