#include <KML_LineString.h>
|
| KML_LineString () |
|
| ~KML_LineString () |
|
void | Echo () |
|
void | DeepEcho () |
|
void | DeepEcho (const char *indent) |
|
void | Write (FILE *fid, const char *indent) |
|
void | Read (FILE *fid, char *kstr) |
|
void | WriteExp (FILE *fid, const char *nstr, int sgn, double cm, double sp) |
|
int | Id () |
|
int | ObjectEnum () |
|
Object * | copy () |
|
void | Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction) |
|
| KML_Geometry () |
|
| ~KML_Geometry () |
|
| KML_Object () |
|
| ~KML_Object () |
|
int | Id () |
|
int | ObjectEnum () |
|
Object * | copy () |
|
void | Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction) |
|
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) |
|
virtual | ~Object () |
|
Definition at line 16 of file KML_LineString.h.
◆ KML_LineString()
KML_LineString::KML_LineString |
( |
| ) |
|
◆ ~KML_LineString()
KML_LineString::~KML_LineString |
( |
| ) |
|
◆ Echo()
void KML_LineString::Echo |
( |
void |
| ) |
|
|
virtual |
◆ DeepEcho() [1/2]
void KML_LineString::DeepEcho |
( |
void |
| ) |
|
|
virtual |
◆ DeepEcho() [2/2]
void KML_LineString::DeepEcho |
( |
const char * |
indent | ) |
|
|
virtual |
◆ Write()
void KML_LineString::Write |
( |
FILE * |
fid, |
|
|
const char * |
indent |
|
) |
| |
|
virtual |
Reimplemented from KML_Geometry.
Definition at line 83 of file KML_LineString.cpp.
87 fprintf(filout,
"%s<LineString",indent);
89 fprintf(filout,
">\n");
94 fprintf(filout,
"%s <extrude>%d</extrude>\n",indent,(
extrude ? 1 : 0));
95 fprintf(filout,
"%s <tessellate>%d</tessellate>\n",indent,(
tessellate ? 1 : 0));
96 fprintf(filout,
"%s <altitudeMode>%s</altitudeMode>\n",indent,
altmode);
97 fprintf(filout,
"%s <coordinates>\n",indent);
102 fprintf(filout,
"%s %0.16g,%0.16g,%0.16g\n",indent,
coords[3*i+0],
coords[3*i+1],
coords[3*i+2]);
104 fprintf(filout,
"%s </coordinates>\n",indent);
105 fprintf(filout,
"%s</LineString>\n",indent);
◆ Read()
void KML_LineString::Read |
( |
FILE * |
fid, |
|
|
char * |
kstr |
|
) |
| |
|
virtual |
Reimplemented from KML_Geometry.
Definition at line 110 of file KML_LineString.cpp.
125 if (!strncmp(kstri,
"</LineString",12)) {
126 xDelete<char>(kstri);
129 else if (!strncmp(kstri,
"</",2))
130 {
_error_(
"KML_LineString::Read -- Unexpected closing tag " << kstri <<
".\n");}
131 else if (strncmp(kstri,
"<",1))
132 {
_error_(
"KML_LineString::Read -- Unexpected field \"" << kstri <<
"\".\n");}
134 else if (!strcmp(kstri,
"<extrude>"))
138 else if (!strcmp(kstri,
"<tessellate>"))
142 else if (!strcmp(kstri,
"<altitudeMode>"))
146 else if (!strcmp(kstri,
"<coordinates>"))
151 else if (!strncmp(kstri,
"<",1))
154 xDelete<char>(kstri);
159 for (ncom=ncom; ncom>0; ncom--)
160 xDelete<char>(pcom[ncom-1]);
161 xDelete<char*>(pcom);
◆ WriteExp()
void KML_LineString::WriteExp |
( |
FILE * |
fid, |
|
|
const char * |
nstr, |
|
|
int |
sgn, |
|
|
double |
cm, |
|
|
double |
sp |
|
) |
| |
|
virtual |
Reimplemented from KML_Object.
Definition at line 166 of file KML_LineString.cpp.
169 double *lat,*lon,*x,*y;
174 lat=xNew<IssmPDouble>(
ncoord);
175 lon=xNew<IssmPDouble>(
ncoord);
176 for (i=0; i<
ncoord; i++) {
183 x =xNew<IssmPDouble>(
ncoord);
184 y =xNew<IssmPDouble>(
ncoord);
195 memcpy(nstr2,nstr,(strlen(nstr)+1)*
sizeof(
char));
197 for (i=0; i<strlen(nstr2); i++)
198 if ((nstr2[i] ==
' ') || (nstr2[i] ==
'\t'))
200 fprintf(fid,
"## Name:%s\n",nstr2);
201 fprintf(fid,
"## Icon:0\n");
202 fprintf(fid,
"# Points Count Value\n");
203 fprintf(fid,
"%u %s\n",
ncoord ,
"1.");
204 fprintf(fid,
"# X pos Y pos\n");
209 fprintf(fid,
"%lf\t%lf\n",x[i],y[i]);
215 xDelete<IssmPDouble>(y);
216 xDelete<IssmPDouble>(x);
217 xDelete<IssmPDouble>(lon);
218 xDelete<IssmPDouble>(lat);
◆ Id()
int KML_LineString::Id |
( |
void |
| ) |
|
|
inlinevirtual |
◆ ObjectEnum()
int KML_LineString::ObjectEnum |
( |
void |
| ) |
|
|
inlinevirtual |
◆ copy()
Object* KML_LineString::copy |
( |
void |
| ) |
|
|
inlinevirtual |
◆ Marshall()
void KML_LineString::Marshall |
( |
char ** |
pmarshalled_data, |
|
|
int * |
pmarshalled_data_size, |
|
|
int |
marshall_direction |
|
) |
| |
|
inlinevirtual |
◆ extrude
bool KML_LineString::extrude |
◆ tessellate
bool KML_LineString::tessellate |
◆ altmode
◆ ncoord
int KML_LineString::ncoord |
◆ coords
double* KML_LineString::coords |
The documentation for this class was generated from the following files:
int Ll2xyx(double *x, double *y, double *lat, double *lon, int ncoord, int sgn)