Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Data Fields
KML_LatLonBox Class Reference

#include <KML_LatLonBox.h>

Inheritance diagram for KML_LatLonBox:
KML_Object Object

Public Member Functions

 KML_LatLonBox ()
 
 ~KML_LatLonBox ()
 
void Echo ()
 
void DeepEcho ()
 
void DeepEcho (const char *indent)
 
void Write (FILE *fid, const char *indent)
 
void Read (FILE *fid, char *kstr)
 
int Id ()
 
int ObjectEnum ()
 
Objectcopy ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
- Public Member Functions inherited from KML_Object
 KML_Object ()
 
 ~KML_Object ()
 
int Id ()
 
int ObjectEnum ()
 
Objectcopy ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
virtual void WriteExp (FILE *fid, const char *nstr, int sgn, double cm, double sp)
 
virtual void AddAttrib (const char *name, const char *value)
 
virtual void WriteAttrib (FILE *fid, const char *indent)
 
virtual void AddCommnt (int ncom, char **pcom)
 
virtual void AddCommnt (char *value)
 
virtual void WriteCommnt (FILE *fid, const char *indent)
 
- Public Member Functions inherited from Object
virtual ~Object ()
 

Data Fields

double north
 
double south
 
double east
 
double west
 
double rotation
 
- Data Fields inherited from KML_Object
DataSetattrib
 
DataSetcommnt
 
DataSetkmlobj
 

Detailed Description

Definition at line 14 of file KML_LatLonBox.h.

Constructor & Destructor Documentation

◆ KML_LatLonBox()

KML_LatLonBox::KML_LatLonBox ( )

Definition at line 19 of file KML_LatLonBox.cpp.

19  {/*{{{*/
20 
21  north = 0.;
22  south = 0.;
23  east = 0.;
24  west = 0.;
25  rotation = 0.;
26 
27 }

◆ ~KML_LatLonBox()

KML_LatLonBox::~KML_LatLonBox ( )

Definition at line 29 of file KML_LatLonBox.cpp.

29  {/*{{{*/
30 
31  ;
32 
33 }

Member Function Documentation

◆ Echo()

void KML_LatLonBox::Echo ( void  )
virtual

Reimplemented from KML_Object.

Definition at line 37 of file KML_LatLonBox.cpp.

37  {/*{{{*/
38 
39  _printf_("KML_LatLonBox:\n");
41 
42  _printf_(" north: " << north << "\n");
43  _printf_(" south: " << south << "\n");
44  _printf_(" east: " << east << "\n");
45  _printf_(" west: " << west << "\n");
46  _printf_(" rotation: " << rotation << "\n");
47 }

◆ DeepEcho() [1/2]

void KML_LatLonBox::DeepEcho ( void  )
virtual

Reimplemented from KML_Object.

Definition at line 49 of file KML_LatLonBox.cpp.

49  {/*{{{*/
50 
51  char indent[81]="";
52 
54 
55  return;
56 }

◆ DeepEcho() [2/2]

void KML_LatLonBox::DeepEcho ( const char *  indent)
virtual

Reimplemented from KML_Object.

Definition at line 58 of file KML_LatLonBox.cpp.

58  {/*{{{*/
59 
60  _printf_(indent << "KML_LatLonBox:\n");
61  KML_Object::DeepEcho(indent);
62 
63  _printf_(" north: " << north << "\n");
64  _printf_(" south: " << south << "\n");
65  _printf_(" east: " << east << "\n");
66  _printf_(" west: " << west << "\n");
67  _printf_(" rotation: " << rotation << "\n");
68 }

◆ Write()

void KML_LatLonBox::Write ( FILE *  fid,
const char *  indent 
)
virtual

Implements KML_Object.

Definition at line 70 of file KML_LatLonBox.cpp.

70  {/*{{{*/
71 
72  fprintf(filout,"%s<LatLonBox",indent);
73  WriteAttrib(filout," ");
74  fprintf(filout,">\n");
75  WriteCommnt(filout,indent);
76 
77  KML_Object::Write(filout,indent);
78 
79  fprintf(filout,"%s <north>%0.16g</north>\n",indent,north);
80  fprintf(filout,"%s <south>%0.16g</south>\n",indent,south);
81  fprintf(filout,"%s <east>%0.16g</east>\n",indent,east);
82  fprintf(filout,"%s <west>%0.16g</west>\n",indent,west);
83  fprintf(filout,"%s <rotation>%0.16g</rotation>\n",indent,rotation);
84 
85  fprintf(filout,"%s</LatLonBox>\n",indent);
86 
87  return;
88 }

◆ Read()

void KML_LatLonBox::Read ( FILE *  fid,
char *  kstr 
)
virtual

Implements KML_Object.

Definition at line 90 of file KML_LatLonBox.cpp.

90  {/*{{{*/
91 
92  char* kstri;
93  int ncom=0;
94  char** pcom=NULL;
95 
96 /* get object attributes and check for solo tag */
97 
98  if (KMLFileTagAttrib(this,
99  kstr))
100  return;
101 
102 /* loop over and process fields within opening and closing tags */
103 
104  while((kstri=KMLFileToken(fid, &ncom,&pcom))){
105  if (!strncmp(kstri,"</LatLonBox",11)) {
106  xDelete<char>(kstri);
107  break;
108  }
109  else if (!strncmp(kstri,"</",2))
110  {_error_("KML_LatLonBox::Read -- Unexpected closing tag " << kstri << ".\n");}
111  else if (strncmp(kstri,"<",1))
112  {_error_("KML_LatLonBox::Read -- Unexpected field \"" << kstri << "\".\n");}
113 
114  else if (!strcmp(kstri,"<north>"))
116  kstri,
117  fid);
118  else if (!strcmp(kstri,"<south>"))
120  kstri,
121  fid);
122  else if (!strcmp(kstri,"<east>"))
124  kstri,
125  fid);
126  else if (!strcmp(kstri,"<west>"))
128  kstri,
129  fid);
130  else if (!strcmp(kstri,"<rotation>"))
132  kstri,
133  fid);
134 
135  else if (!strncmp(kstri,"<",1))
136  KML_Object::Read(fid,kstri);
137 
138  xDelete<char>(kstri);
139  }
140 
141  this->AddCommnt(ncom,pcom);
142 
143  for (ncom=ncom; ncom>0; ncom--)
144  xDelete<char>(pcom[ncom-1]);
145  xDelete<char*>(pcom);
146 
147  return;
148 }

◆ Id()

int KML_LatLonBox::Id ( void  )
inlinevirtual

Implements Object.

Definition at line 34 of file KML_LatLonBox.h.

34 {_error_("Not implemented yet.");};

◆ ObjectEnum()

int KML_LatLonBox::ObjectEnum ( void  )
inlinevirtual

Implements Object.

Definition at line 35 of file KML_LatLonBox.h.

35 {_error_("Not implemented yet.");};

◆ copy()

Object* KML_LatLonBox::copy ( void  )
inlinevirtual

Implements Object.

Definition at line 36 of file KML_LatLonBox.h.

36 {_error_("Not implemented yet.");};

◆ Marshall()

void KML_LatLonBox::Marshall ( char **  pmarshalled_data,
int *  pmarshalled_data_size,
int  marshall_direction 
)
inlinevirtual

Implements Object.

Definition at line 37 of file KML_LatLonBox.h.

37 { _error_("not implemented yet!");};

Field Documentation

◆ north

double KML_LatLonBox::north

Definition at line 18 of file KML_LatLonBox.h.

◆ south

double KML_LatLonBox::south

Definition at line 19 of file KML_LatLonBox.h.

◆ east

double KML_LatLonBox::east

Definition at line 20 of file KML_LatLonBox.h.

◆ west

double KML_LatLonBox::west

Definition at line 21 of file KML_LatLonBox.h.

◆ rotation

double KML_LatLonBox::rotation

Definition at line 22 of file KML_LatLonBox.h.


The documentation for this class was generated from the following files:
KML_Object::WriteAttrib
virtual void WriteAttrib(FILE *fid, const char *indent)
Definition: KML_Object.cpp:288
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
KMLFileTagAttrib
int KMLFileTagAttrib(KML_Object *kobj, char *ktag)
Definition: KMLFileReadUtils.cpp:287
KML_LatLonBox::rotation
double rotation
Definition: KML_LatLonBox.h:22
KML_Object::Read
virtual void Read(FILE *fid, char *kstr)=0
Definition: KML_Object.cpp:143
KMLFileToken
char * KMLFileToken(FILE *fid, int *pncom=NULL, char ***ppcom=NULL)
Definition: KMLFileReadUtils.cpp:18
KML_LatLonBox::west
double west
Definition: KML_LatLonBox.h:21
KML_Object::Write
virtual void Write(FILE *fid, const char *indent)=0
Definition: KML_Object.cpp:122
KML_LatLonBox::east
double east
Definition: KML_LatLonBox.h:20
KML_Object::DeepEcho
virtual void DeepEcho()
Definition: KML_Object.cpp:72
KMLFileTokenParse
int KMLFileTokenParse(int *pival, char *ktag, FILE *fid)
Definition: KMLFileReadUtils.cpp:335
KML_LatLonBox::DeepEcho
void DeepEcho()
Definition: KML_LatLonBox.cpp:49
KML_LatLonBox::south
double south
Definition: KML_LatLonBox.h:19
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
KML_Object::Echo
virtual void Echo()
Definition: KML_Object.cpp:61
KML_Object::AddCommnt
virtual void AddCommnt(int ncom, char **pcom)
Definition: KML_Object.cpp:301
KML_Object::WriteCommnt
virtual void WriteCommnt(FILE *fid, const char *indent)
Definition: KML_Object.cpp:326
KML_LatLonBox::north
double north
Definition: KML_LatLonBox.h:18