dem.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * Copyright (c) 1997 Regents of the University of California.
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 1. Redistributions of source code must retain the above copyright
  10.  *    notice, this list of conditions and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. All advertising materials mentioning features or use of this software
  15.  *    must display the following acknowledgement:
  16.  * This product includes software developed by the Computer Systems
  17.  * Engineering Group at Lawrence Berkeley Laboratory.
  18.  * 4. Neither the name of the University nor of the Laboratory may be used
  19.  *    to endorse or promote products derived from this software without
  20.  *    specific prior written permission.
  21.  *
  22.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  23.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  26.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  28.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32.  * SUCH DAMAGE.
  33.  */
  34. /* Ported from CMU/Monarch's code, nov'98 -Padma.*/
  35. #ifndef __dem_h__
  36. #define __dem_h__
  37. #ifndef __PRETTY_FUNCTION__
  38. #define __PRETTY_FUNCTION__ ("")
  39. #endif /* !__PRETTY_FUNCTION__ */
  40. struct ARecord {
  41. char q_name[145];
  42. int dl_code;
  43. int p_code;
  44. int pr_code;
  45. int z_code;
  46. float p_parm[15];
  47. int g_units; /* ground planimetric coordinates */
  48. int e_units; /* elevation coordinates */
  49. int sides;
  50. float corners[4][2];
  51. float min_elevation; /* minimum and maximum elevations */
  52. float max_elevation;
  53. float angle;
  54. int a_code; /* Accuracy code */
  55. float x_res; /* Spatial Resolution */
  56. float y_res;
  57. float z_res;
  58. int rows; /* number of rows and columns of profiles */
  59. int cols;
  60. };
  61. struct BRecord {
  62. int row_id;
  63. int col_id;
  64. int rows;
  65. int cols;
  66. float x_gpc;
  67. float y_gpc;
  68. float elevation;
  69. float min_elevation;
  70. float max_elevation;
  71. };
  72. class DEMFile {
  73. public:
  74. DEMFile(char *s) : fname(s), demfile(0) { }
  75. ~DEMFile() { if(demfile) fclose(demfile); }
  76. int* process(void);
  77. void dump_ARecord(void);
  78. void dump_BRecord(void);
  79. void dump_grid(void);
  80. void range(double &x, double &y);
  81. void resolution(double &r);
  82. private:
  83. int open(void);
  84. int read_int(void);
  85. float read_float(void);
  86. void read_field(void);
  87. char *fname;
  88. FILE *demfile;
  89. struct ARecord a;
  90. struct BRecord b;
  91. int *grid;
  92. char tempbuf[1024];
  93. };
  94. #endif /* __dem_h__ */