1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
|
/**********************************************************************
*
* geo_print.c -- Key-dumping routines for GEOTIFF files.
*
* Written By: Niles D. Ritter.
*
* copyright (c) 1995 Niles D. Ritter
*
* Permission granted to use this software, so long as this copyright
* notice accompanies any products derived therefrom.
*
* Revision History;
*
* 20 June, 1995 Niles D. Ritter New
* 7 July, 1995 NDR Fix indexing
* 27 July, 1995 NDR Added Import utils
* 28 July, 1995 NDR Made parser more strict.
* 29 Sep, 1995 NDR Fixed matrix printing.
*
**********************************************************************/
#include "geotiff.h" /* public interface */
#include "geo_tiffp.h" /* external TIFF interface */
#include "geo_keyp.h" /* private interface */
#include "geokeys.h"
#include <stdio.h> /* for sprintf */
#define FMT_GEOTIFF "Geotiff_Information:"
#define FMT_VERSION "Version: %hd"
#define FMT_REV "Key_Revision: %1hd.%hd"
#define FMT_TAGS "Tagged_Information:"
#define FMT_TAGEND "End_Of_Tags."
#define FMT_KEYS "Keyed_Information:"
#define FMT_KEYEND "End_Of_Keys."
#define FMT_GEOEND "End_Of_Geotiff."
#define FMT_DOUBLE "%-17.15g"
#define FMT_SHORT "%-11hd"
static void DefaultPrint(char *string, void *aux);
static void PrintKey(GeoKey *key, GTIFPrintMethod print,void *aux);
static void PrintGeoTags(GTIF *gtif,GTIFReadMethod scan,void *aux);
static void PrintTag(int tag, int nrows, double *data, int ncols,
GTIFPrintMethod print,void *aux);
static void DefaultRead(char *string, void *aux);
static int ReadKey(GTIF *gt, GTIFReadMethod scan, void *aux);
static int ReadTag(GTIF *gt,GTIFReadMethod scan,void *aux);
/*
* Print off the directory info, using whatever method is specified
* (defaults to fprintf if null). The "aux" parameter is provided for user
* defined method for passing parameters or whatever.
*
* The output format is a "GeoTIFF meta-data" file, which may be
* used to import information with the GTIFFImport() routine.
*/
void GTIFPrint(GTIF *gtif, GTIFPrintMethod print,void *aux)
{
int i;
int numkeys = gtif->gt_num_keys;
GeoKey *key = gtif->gt_keys;
char message[1024];
if (!print) print = (GTIFPrintMethod) &DefaultPrint;
if (!aux) aux=stdout;
sprintf(message,FMT_GEOTIFF "\n");
print(message,aux);
sprintf(message, "Version: %hd" ,gtif->gt_version);
sprintf(message, FMT_VERSION,gtif->gt_version);
print(" ",aux); print(message,aux); print("\n",aux);
sprintf(message, FMT_REV,gtif->gt_rev_major,
gtif->gt_rev_minor);
print(" ",aux); print(message,aux); print("\n",aux);
sprintf(message," %s\n",FMT_TAGS); print(message,aux);
PrintGeoTags(gtif,print,aux);
sprintf(message," %s\n",FMT_TAGEND); print(message,aux);
sprintf(message," %s\n",FMT_KEYS); print(message,aux);
for (i=0; i<numkeys; i++)
PrintKey(++key,print,aux);
sprintf(message," %s\n",FMT_KEYEND); print(message,aux);
sprintf(message," %s\n",FMT_GEOEND); print(message,aux);
}
static void PrintGeoTags(GTIF *gt, GTIFPrintMethod print,void *aux)
{
double *data;
int count;
tiff_t *tif=gt->gt_tif;
if( tif == NULL )
return;
if ((gt->gt_methods.get)(tif, GTIFF_TIEPOINTS, &count, &data ))
PrintTag(GTIFF_TIEPOINTS,count/3, data, 3, print, aux);
if ((gt->gt_methods.get)(tif, GTIFF_PIXELSCALE, &count, &data ))
PrintTag(GTIFF_PIXELSCALE,count/3, data, 3, print, aux);
if ((gt->gt_methods.get)(tif, GTIFF_TRANSMATRIX, &count, &data ))
PrintTag(GTIFF_TRANSMATRIX,count/4, data, 4, print, aux);
}
static void PrintTag(int tag, int nrows, double *dptr, int ncols,
GTIFPrintMethod print,void *aux)
{
int i,j;
double *data=dptr;
char message[1024];
print(" ",aux);
print(GTIFTagName(tag),aux);
sprintf(message," (%d,%d):\n",nrows,ncols);
print(message,aux);
for (i=0;i<nrows;i++)
{
print(" ",aux);
for (j=0;j<ncols;j++)
{
sprintf(message,FMT_DOUBLE,*data++);
print(message,aux);
if( j < ncols-1 )
print(" ",aux);
}
print("\n",aux);
}
_GTIFFree(dptr); /* free up the allocated memory */
}
static void PrintKey(GeoKey *key, GTIFPrintMethod print, void *aux)
{
char *data;
geokey_t keyid = (geokey_t) key->gk_key;
int count = key->gk_count;
int vals_now,i;
pinfo_t *sptr;
double *dptr;
char message[40];
print(" ",aux);
print(GTIFKeyName(keyid),aux);
sprintf(message," (%s,%d): ",GTIFTypeName(key->gk_type),count);
print(message,aux);
if (key->gk_type==TYPE_SHORT && count==1)
data = (char *)&key->gk_data;
else
data = key->gk_data;
switch (key->gk_type)
{
case TYPE_ASCII:
{
int in_char, out_char;
print("\"",aux);
in_char = 0;
out_char = 0;
while( in_char < count-1 )
{
char ch = ((char *) data)[in_char++];
if( ch == '\n' )
{
message[out_char++] = '\\';
message[out_char++] = 'n';
}
else if( ch == '\\' )
{
message[out_char++] = '\\';
message[out_char++] = '\\';
}
else
message[out_char++] = ch;
/* flush message if buffer full */
if( out_char >= sizeof(message)-3 )
{
message[out_char] = '\0';
print(message,aux);
out_char = 0;
}
}
message[out_char]='\0';
print(message,aux);
print("\"\n",aux);
}
break;
case TYPE_DOUBLE:
for (dptr = (double *)data; count > 0; count-= vals_now)
{
vals_now = count > 3? 3: count;
for (i=0; i<vals_now; i++,dptr++)
{
sprintf(message,FMT_DOUBLE ,*dptr);
print(message,aux);
}
print("\n",aux);
}
break;
case TYPE_SHORT:
sptr = (pinfo_t *)data;
if (count==1)
{
print( GTIFValueName(keyid,*sptr), aux );
print( "\n", aux );
}
else
for (; count > 0; count-= vals_now)
{
vals_now = count > 3? 3: count;
for (i=0; i<vals_now; i++,sptr++)
{
sprintf(message,FMT_SHORT,*sptr);
print(message,aux);
}
print("\n",aux);
}
break;
default:
sprintf(message, "Unknown Type (%d)\n",key->gk_type);
print(message,aux);
break;
}
}
static void DefaultPrint(char *string, void *aux)
{
/* Pretty boring */
fprintf((FILE *)aux,"%s",string);
}
/*
* Importing metadata file
*/
/*
* Import the directory info, using whatever method is specified
* (defaults to fscanf if null). The "aux" parameter is provided for user
* defined method for passing file or whatever.
*
* The input format is a "GeoTIFF meta-data" file, which may be
* generated by the GTIFFPrint() routine.
*/
int GTIFImport(GTIF *gtif, GTIFReadMethod scan,void *aux)
{
int status;
char message[1024];
if (!scan) scan = (GTIFReadMethod) &DefaultRead;
if (!aux) aux=stdin;
scan(message,aux);
if (strncmp(message,FMT_GEOTIFF,8)) return 0;
scan(message,aux);
if (!sscanf(message,FMT_VERSION,(short int*)>if->gt_version)) return 0;
scan(message,aux);
if (sscanf(message,FMT_REV,(short int*)>if->gt_rev_major,
(short int*)>if->gt_rev_minor) !=2) return 0;
scan(message,aux);
if (strncmp(message,FMT_TAGS,8)) return 0;
while ((status=ReadTag(gtif,scan,aux))>0);
if (status < 0) return 0;
scan(message,aux);
if (strncmp(message,FMT_KEYS,8)) return 0;
while ((status=ReadKey(gtif,scan,aux))>0);
return (status==0); /* success */
}
static int StringError(char *string)
{
fprintf(stderr,"Parsing Error at \'%s\'\n",string);
return -1;
}
#define SKIPWHITE(vptr) \
while (*vptr && (*vptr==' '||*vptr=='\t')) vptr++
#define FINDCHAR(vptr,c) \
while (*vptr && *vptr!=(c)) vptr++
static int ReadTag(GTIF *gt,GTIFReadMethod scan,void *aux)
{
int i,j,tag;
char *vptr;
char tagname[100];
double *data,*dptr;
int count,nrows,ncols,num;
char message[1024];
scan(message,aux);
if (!strncmp(message,FMT_TAGEND,8)) return 0;
num=sscanf(message,"%[^( ] (%d,%d):\n",tagname,&nrows,&ncols);
if (num!=3) return StringError(message);
tag = GTIFTagCode(tagname);
if (tag < 0) return StringError(tagname);
count = nrows*ncols;
data = (double *) _GTIFcalloc(count * sizeof(double));
dptr = data;
for (i=0;i<nrows;i++)
{
scan(message,aux);
vptr = message;
for (j=0;j<ncols;j++)
{
if (!sscanf(vptr,"%lg",dptr++))
return StringError(vptr);
FINDCHAR(vptr,' ');
SKIPWHITE(vptr);
}
}
(gt->gt_methods.set)(gt->gt_tif, (pinfo_t) tag, count, data );
_GTIFFree( data );
return 1;
}
static int ReadKey(GTIF *gt, GTIFReadMethod scan, void *aux)
{
tagtype_t ktype;
int count,outcount;
int vals_now,i;
geokey_t key;
int icode;
pinfo_t code;
short *sptr;
char name[1000];
char type[20];
double data[100];
double *dptr;
char *vptr;
int num;
char message[2048];
scan(message,aux);
if (!strncmp(message,FMT_KEYEND,8)) return 0;
num=sscanf(message,"%[^( ] (%[^,],%d):\n",name,type,&count);
if (num!=3) return StringError(message);
vptr = message;
FINDCHAR(vptr,':');
if (!*vptr) return StringError(message);
vptr+=2;
if( GTIFKeyCode(name) < 0 )
return StringError(name);
else
key = (geokey_t) GTIFKeyCode(name);
if( GTIFTypeCode(type) < 0 )
return StringError(type);
else
ktype = (tagtype_t) GTIFTypeCode(type);
/* skip white space */
SKIPWHITE(vptr);
if (!*vptr) return StringError(message);
switch (ktype)
{
case TYPE_ASCII:
{
char *cdata;
int out_char = 0;
FINDCHAR(vptr,'"');
if (!*vptr) return StringError(message);
cdata = (char *) _GTIFcalloc( count+1 );
vptr++;
while( out_char < count-1 )
{
if( *vptr == '\0' )
break;
else if( vptr[0] == '\\' && vptr[1] == 'n' )
{
cdata[out_char++] = '\n';
vptr += 2;
}
else if( vptr[0] == '\\' && vptr[1] == '\\' )
{
cdata[out_char++] = '\\';
vptr += 2;
}
else
cdata[out_char++] = *(vptr++);
}
if( out_char < count-1 ) return StringError(message);
if( *vptr != '"' ) return StringError(message);
cdata[count-1] = '\0';
GTIFKeySet(gt,key,ktype,count,cdata);
_GTIFFree( cdata );
}
break;
case TYPE_DOUBLE:
outcount = count;
for (dptr = data; count > 0; count-= vals_now)
{
vals_now = count > 3? 3: count;
for (i=0; i<vals_now; i++,dptr++)
{
if (!sscanf(vptr,"%lg" ,dptr))
StringError(vptr);
FINDCHAR(vptr,' ');
SKIPWHITE(vptr);
}
if (vals_now<count)
{
scan(message,aux);
vptr = message;
}
}
if (outcount==1)
GTIFKeySet(gt,key,ktype,outcount,data[0]);
else
GTIFKeySet(gt,key,ktype,outcount,data);
break;
case TYPE_SHORT:
if (count==1)
{
icode = GTIFValueCode(key,vptr);
if (icode < 0) return StringError(vptr);
code = (pinfo_t) icode;
GTIFKeySet(gt,key,ktype,count,code);
}
else /* multi-valued short - no such thing yet */
{
sptr = (short *)data;
outcount = count;
for (; count > 0; count-= vals_now)
{
vals_now = count > 3? 3: count;
for (i=0; i<vals_now; i++,sptr++)
{
int work_int;
/* note: FMT_SHORT (%11hd) not supported on IRIX */
sscanf(message,"%11d",&work_int);
*sptr = (short) work_int;
scan(message,aux);
}
if (vals_now<count)
{
scan(message,aux);
vptr = message;
}
}
GTIFKeySet(gt,key,ktype,outcount,sptr);
}
break;
default:
return -1;
}
return 1;
}
static void DefaultRead(char *string, void *aux)
{
/* Pretty boring */
fscanf((FILE *)aux,"%[^\n]\n",string);
}
|