Changeset 16560 for issm/trunk/src/c/modules/Shp2Kmlx/Shp2Kmlx.cpp
- Timestamp:
- 10/28/13 14:43:03 (11 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 16138-16453,16455-16554
- Property svn:mergeinfo changed
-
issm/trunk/src
- Property svn:mergeinfo changed
-
issm/trunk/src/c/modules/Shp2Kmlx/Shp2Kmlx.cpp
r15396 r16560 8 8 #include "../../kml/kmlobjects.h" 9 9 10 int Shp2Kmlx(char* filshp,char* filkml, 11 int sgn){ 10 int Shp2Kmlx(char* filshp,char* filkml,int sgn){ 12 11 13 12 #ifdef _HAVE_SHAPELIB_ //only works if Shapelib library has been compiled in. 14 13 15 14 double cm,sp; 16 17 if (sgn) 18 Xy2lldef(&cm,&sp,sgn); 19 20 return(Shp2Kmlx(filshp,filkml, 21 sgn,cm,sp)); 15 Xy2lldef(&cm,&sp,sgn); 16 17 return(Shp2Kmlx(filshp,filkml,sgn,cm,sp)); 22 18 23 19 #else //ifdef _HAVE_SHAPELIB_ … … 26 22 } 27 23 28 int Shp2Kmlx(char* filshp,char* filkml, 29 int sgn,double cm,double sp){ 24 int Shp2Kmlx(char* filshp,char* filkml,int sgn,double cm,double sp){ 30 25 31 26 #ifdef _HAVE_SHAPELIB_ //only works if Shapelib library has been compiled in. … … 103 98 pshapm=xNew<double*>(nshape); 104 99 105 /* loop over the list of shapes */ 106 107 for( i = 0; i < nEntities; i++ ) 108 { 109 // int j; 100 /* loop over the list of shapes */ 101 for(i=0;i<nEntities;i++ ){ 110 102 SHPObject *psShape; 111 103 … … 231 223 sprintf(klsty->color ,"ff000000"); 232 224 sprintf(klsty->colormode ,"normal"); 233 klsty->width ,lwidth;225 klsty->width =lwidth; 234 226 kpsty =new KML_PolyStyle(); 235 227 sprintf(kpsty->color ,"00ffffff");
Note:
See TracChangeset
for help on using the changeset viewer.