00001 /* 00002 * Copyright (c) 1999-2003 Bert Kampes 00003 * Copyright (c) 1999-2003 Delft University of Technology, The Netherlands 00004 * 00005 * This file is part of Doris, the Delft o-o radar interferometric software. 00006 * 00007 * Doris program is free software; you can redistribute it and/or modify 00008 * it under the terms of the GNU General Public License as published by 00009 * the Free Software Foundation; either version 2 of the License, or 00010 * (at your option) any later version. 00011 * 00012 * Doris is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU General Public License 00018 * along with this program; if not, write to the Free Software 00019 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00020 * 00021 * Publications that contain results produced by the Doris software should 00022 * contain an acknowledgment. (For example: The interferometric processing 00023 * was performed using the freely available Doris software package developed 00024 * by the Delft Institute for Earth-Oriented Space Research (DEOS), Delft 00025 * University of Technology, or include a reference to: Bert Kampes and 00026 * Stefania Usai. \"Doris: The Delft Object-oriented Radar Interferometric 00027 * software.\" In: proceedings 2nd ITC ORS symposium, August 1999. (cdrom)). 00028 * 00029 */ 00030 /**************************************************************** 00031 * $Source: /users/kampes/DEVELOP/DORIS/doris/src/RCS/step1routines.hh,v $ 00032 * $Revision: 3.11 $ 00033 * $Date: 2005/04/13 11:12:23 $ 00034 * $Author: kampes $ 00035 * 00036 * routines for reading and logging volumefile, 00037 * leaderfile, nullfile and datafile. 00038 * writing of data to raw format outputfile. 00039 ****************************************************************/ 00040 00041 00042 #ifndef STEP1ROUTINES_H 00043 #define STEP1ROUTINES_H 00044 00045 #include "constants.hh" // typedefs 00046 #include "readinput.hh" // input structs 00047 00048 // ______prototypes______ 00049 void readvolume( 00050 input_readfiles &readfiles_arg, 00051 const char *chk1, 00052 const char *chk2, 00053 const char *chk3); 00054 00055 void readleader( 00056 input_readfiles &readfiles_arg, 00057 const int32 check); // process leader file 00058 00059 void readnull( 00060 const input_readfiles &readfiles_arg); // process null file 00061 00062 void readdat( 00063 input_readfiles &readfiles_arg, 00064 const int32 check); 00065 00066 void writeslc( 00067 const input_gen &generalinput, // mem/ overwrite 00068 const input_crop &writeslc_arg, 00069 const int32 check); // process data file 00070 00071 void envisat_dump_data( 00072 const input_crop &writeslc_arg); 00073 00074 //____RaffaeleNutricato START MODIFICATION SECTION 1 00075 void OversampleSLC( 00076 const input_gen &generalinput, 00077 const slcimage &imageinfo, 00078 const input_oversample &oversampleinput, 00079 const int16 fileid); 00080 //____RaffaeleNutricato END MODIFICATION SECTION 1 00081 00082 void radarsat_dump_data( 00083 const input_gen &generalinput, // mem/ overwrite 00084 const input_crop &writeslc_arg); 00085 00086 #endif // STEP1ROUTINES_H 00087 00088 00089