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 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
|
/******************************************************************************
* $Id: landataset.cpp 23033 2011-09-03 18:46:11Z rouault $
*
* Project: eCognition
* Purpose: Implementation of Erdas .LAN / .GIS format.
* Author: Frank Warmerdam, warmerdam@pobox.com
*
******************************************************************************
* Copyright (c) 2004, Frank Warmerdam
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#include "rawdataset.h"
#include "cpl_string.h"
#include "ogr_spatialref.h"
CPL_CVSID("$Id: landataset.cpp 23033 2011-09-03 18:46:11Z rouault $");
CPL_C_START
void GDALRegister_LAN(void);
CPL_C_END
/**
Erdas Header format: "HEAD74"
Offset Size Type Description
------ ---- ---- -----------
0 6 char magic cookie / version (ie. HEAD74).
6 2 Int16 Pixel type, 0=8bit, 1=4bit, 2=16bit
8 2 Int16 Number of Bands.
10 6 char Unknown.
16 4 Int32 Width
20 4 Int32 Height
24 4 Int32 X Start (offset in original file?)
28 4 Int32 Y Start (offset in original file?)
32 56 char Unknown.
88 2 Int16 0=LAT, 1=UTM, 2=StatePlane, 3- are projections?
90 2 Int16 Classes in coverage.
92 14 char Unknown.
106 2 Int16 Area Unit (0=none, 1=Acre, 2=Hectare, 3=Other)
108 4 Float32 Pixel area.
112 4 Float32 Upper Left corner X (center of pixel?)
116 4 Float32 Upper Left corner Y (center of pixel?)
120 4 Float32 Width of a pixel.
124 4 Float32 Height of a pixel.
Erdas Header format: "HEADER"
Offset Size Type Description
------ ---- ---- -----------
0 6 char magic cookie / version (ie. HEAD74).
6 2 Int16 Pixel type, 0=8bit, 1=4bit, 2=16bit
8 2 Int16 Number of Bands.
10 6 char Unknown.
16 4 Float32 Width
20 4 Float32 Height
24 4 Int32 X Start (offset in original file?)
28 4 Int32 Y Start (offset in original file?)
32 56 char Unknown.
88 2 Int16 0=LAT, 1=UTM, 2=StatePlane, 3- are projections?
90 2 Int16 Classes in coverage.
92 14 char Unknown.
106 2 Int16 Area Unit (0=none, 1=Acre, 2=Hectare, 3=Other)
108 4 Float32 Pixel area.
112 4 Float32 Upper Left corner X (center of pixel?)
116 4 Float32 Upper Left corner Y (center of pixel?)
120 4 Float32 Width of a pixel.
124 4 Float32 Height of a pixel.
All binary fields are in the same byte order but it may be big endian or
little endian depending on what platform the file was written on. Usually
this can be checked against the number of bands though this test won't work
if there are more than 255 bands.
There is also some information on .STA and .TRL files at:
http://www.pcigeomatics.com/cgi-bin/pcihlp/ERDASWR%7CTRAILER+FORMAT
**/
#define ERD_HEADER_SIZE 128
/************************************************************************/
/* ==================================================================== */
/* LAN4BitRasterBand */
/* ==================================================================== */
/************************************************************************/
class LANDataset;
class LAN4BitRasterBand : public GDALPamRasterBand
{
GDALColorTable *poCT;
GDALColorInterp eInterp;
public:
LAN4BitRasterBand( LANDataset *, int );
~LAN4BitRasterBand();
virtual GDALColorTable *GetColorTable();
virtual GDALColorInterp GetColorInterpretation();
virtual CPLErr SetColorTable( GDALColorTable * );
virtual CPLErr SetColorInterpretation( GDALColorInterp );
virtual CPLErr IReadBlock( int, int, void * );
};
/************************************************************************/
/* ==================================================================== */
/* LANDataset */
/* ==================================================================== */
/************************************************************************/
class LANDataset : public RawDataset
{
public:
VSILFILE *fpImage; // image data file.
char pachHeader[ERD_HEADER_SIZE];
char *pszProjection;
double adfGeoTransform[6];
CPLString osSTAFilename;
void CheckForStatistics(void);
virtual char **GetFileList();
public:
LANDataset();
~LANDataset();
virtual CPLErr GetGeoTransform( double * padfTransform );
virtual CPLErr SetGeoTransform( double * padfTransform );
virtual const char *GetProjectionRef();
virtual CPLErr SetProjection( const char * );
static GDALDataset *Open( GDALOpenInfo * );
static GDALDataset *Create( const char * pszFilename,
int nXSize, int nYSize, int nBands,
GDALDataType eType, char ** papszOptions );
};
/************************************************************************/
/* ==================================================================== */
/* LAN4BitRasterBand */
/* ==================================================================== */
/************************************************************************/
/************************************************************************/
/* LAN4BitRasterBand() */
/************************************************************************/
LAN4BitRasterBand::LAN4BitRasterBand( LANDataset *poDS, int nBandIn )
{
this->poDS = poDS;
this->nBand = nBandIn;
this->eDataType = GDT_Byte;
nBlockXSize = poDS->GetRasterXSize();;
nBlockYSize = 1;
poCT = NULL;
eInterp = GCI_Undefined;
}
/************************************************************************/
/* ~LAN4BitRasterBand() */
/************************************************************************/
LAN4BitRasterBand::~LAN4BitRasterBand()
{
if( poCT )
delete poCT;
}
/************************************************************************/
/* IReadBlock() */
/************************************************************************/
CPLErr LAN4BitRasterBand::IReadBlock( int nBlockXOff, int nBlockYOff,
void * pImage )
{
LANDataset *poLAN_DS = (LANDataset *) poDS;
CPLAssert( nBlockXOff == 0 );
/* -------------------------------------------------------------------- */
/* Seek to profile. */
/* -------------------------------------------------------------------- */
int nOffset;
nOffset =
ERD_HEADER_SIZE
+ (nBlockYOff * nRasterXSize * poLAN_DS->GetRasterCount()) / 2
+ ((nBand - 1) * nRasterXSize) / 2;
if( VSIFSeekL( poLAN_DS->fpImage, nOffset, SEEK_SET ) != 0 )
{
CPLError( CE_Failure, CPLE_FileIO,
"LAN Seek failed:%s", VSIStrerror( errno ) );
return CE_Failure;
}
/* -------------------------------------------------------------------- */
/* Read the profile. */
/* -------------------------------------------------------------------- */
if( VSIFReadL( pImage, 1, nRasterXSize/2, poLAN_DS->fpImage ) !=
(size_t) nRasterXSize / 2 )
{
CPLError( CE_Failure, CPLE_FileIO,
"LAN Read failed:%s", VSIStrerror( errno ) );
return CE_Failure;
}
/* -------------------------------------------------------------------- */
/* Convert 4bit to 8bit. */
/* -------------------------------------------------------------------- */
int i;
for( i = nRasterXSize-1; i >= 0; i-- )
{
if( (i & 0x01) != 0 )
((GByte *) pImage)[i] = ((GByte *) pImage)[i/2] & 0x0f;
else
((GByte *) pImage)[i] = (((GByte *) pImage)[i/2] & 0xf0)/16;
}
return CE_None;
}
/************************************************************************/
/* SetColorTable() */
/************************************************************************/
CPLErr LAN4BitRasterBand::SetColorTable( GDALColorTable *poNewCT )
{
if( poCT )
delete poCT;
if( poNewCT == NULL )
poCT = NULL;
else
poCT = poNewCT->Clone();
return CE_None;
}
/************************************************************************/
/* GetColorTable() */
/************************************************************************/
GDALColorTable *LAN4BitRasterBand::GetColorTable()
{
if( poCT != NULL )
return poCT;
else
return GDALPamRasterBand::GetColorTable();
}
/************************************************************************/
/* SetColorInterpretation() */
/************************************************************************/
CPLErr LAN4BitRasterBand::SetColorInterpretation( GDALColorInterp eNewInterp )
{
eInterp = eNewInterp;
return CE_None;
}
/************************************************************************/
/* GetColorInterpretation() */
/************************************************************************/
GDALColorInterp LAN4BitRasterBand::GetColorInterpretation()
{
return eInterp;
}
/************************************************************************/
/* ==================================================================== */
/* LANDataset */
/* ==================================================================== */
/************************************************************************/
/************************************************************************/
/* LANDataset() */
/************************************************************************/
LANDataset::LANDataset()
{
fpImage = NULL;
pszProjection = NULL;
}
/************************************************************************/
/* ~LANDataset() */
/************************************************************************/
LANDataset::~LANDataset()
{
FlushCache();
if( fpImage != NULL )
VSIFCloseL( fpImage );
CPLFree( pszProjection );
}
/************************************************************************/
/* Open() */
/************************************************************************/
GDALDataset *LANDataset::Open( GDALOpenInfo * poOpenInfo )
{
/* -------------------------------------------------------------------- */
/* We assume the user is pointing to the header (.pcb) file. */
/* Does this appear to be a pcb file? */
/* -------------------------------------------------------------------- */
if( poOpenInfo->nHeaderBytes < ERD_HEADER_SIZE )
return NULL;
if( !EQUALN((const char *)poOpenInfo->pabyHeader,"HEADER",6)
&& !EQUALN((const char *)poOpenInfo->pabyHeader,"HEAD74",6) )
return NULL;
/* -------------------------------------------------------------------- */
/* Create a corresponding GDALDataset. */
/* -------------------------------------------------------------------- */
LANDataset *poDS;
poDS = new LANDataset();
poDS->eAccess = poOpenInfo->eAccess;
/* -------------------------------------------------------------------- */
/* Adopt the openinfo file pointer for use with this file. */
/* -------------------------------------------------------------------- */
if( poOpenInfo->eAccess == GA_ReadOnly )
poDS->fpImage = VSIFOpenL( poOpenInfo->pszFilename, "rb" );
else
poDS->fpImage = VSIFOpenL( poOpenInfo->pszFilename, "rb+" );
if( poDS->fpImage == NULL )
return NULL;
/* -------------------------------------------------------------------- */
/* Do we need to byte swap the headers to local machine order? */
/* -------------------------------------------------------------------- */
int bBigEndian = poOpenInfo->pabyHeader[8] == 0;
int bNeedSwap;
memcpy( poDS->pachHeader, poOpenInfo->pabyHeader, ERD_HEADER_SIZE );
#ifdef CPL_LSB
bNeedSwap = bBigEndian;
#else
bNeedSwap = !bBigEndian;
#endif
if( bNeedSwap )
{
CPL_SWAP16PTR( poDS->pachHeader + 6 );
CPL_SWAP16PTR( poDS->pachHeader + 8 );
CPL_SWAP32PTR( poDS->pachHeader + 16 );
CPL_SWAP32PTR( poDS->pachHeader + 20 );
CPL_SWAP32PTR( poDS->pachHeader + 24 );
CPL_SWAP32PTR( poDS->pachHeader + 28 );
CPL_SWAP16PTR( poDS->pachHeader + 88 );
CPL_SWAP16PTR( poDS->pachHeader + 90 );
CPL_SWAP16PTR( poDS->pachHeader + 106 );
CPL_SWAP32PTR( poDS->pachHeader + 108 );
CPL_SWAP32PTR( poDS->pachHeader + 112 );
CPL_SWAP32PTR( poDS->pachHeader + 116 );
CPL_SWAP32PTR( poDS->pachHeader + 120 );
CPL_SWAP32PTR( poDS->pachHeader + 124 );
}
/* -------------------------------------------------------------------- */
/* Capture some information from the file that is of interest. */
/* -------------------------------------------------------------------- */
int nBandCount, nPixelOffset;
GDALDataType eDataType;
if( EQUALN(poDS->pachHeader,"HEADER",7) )
{
poDS->nRasterXSize = (int) *((float *) (poDS->pachHeader + 16));
poDS->nRasterYSize = (int) *((float *) (poDS->pachHeader + 20));
}
else
{
poDS->nRasterXSize = *((GInt32 *) (poDS->pachHeader + 16));
poDS->nRasterYSize = *((GInt32 *) (poDS->pachHeader + 20));
}
if( *((GInt16 *) (poDS->pachHeader + 6)) == 0 )
{
eDataType = GDT_Byte;
nPixelOffset = 1;
}
else if( *((GInt16 *) (poDS->pachHeader + 6)) == 1 ) /* 4bit! */
{
eDataType = GDT_Byte;
nPixelOffset = -1;
}
else if( *((GInt16 *) (poDS->pachHeader + 6)) == 2 )
{
nPixelOffset = 2;
eDataType = GDT_Int16;
}
else
{
CPLError( CE_Failure, CPLE_AppDefined,
"Unsupported pixel type (%d).",
*((GInt16 *) (poDS->pachHeader + 6)) );
delete poDS;
return NULL;
}
nBandCount = *((GInt16 *) (poDS->pachHeader + 8));
if (!GDALCheckDatasetDimensions(poDS->nRasterXSize, poDS->nRasterYSize) ||
!GDALCheckBandCount(nBandCount, FALSE))
{
delete poDS;
return NULL;
}
/* -------------------------------------------------------------------- */
/* Create band information object. */
/* -------------------------------------------------------------------- */
for( int iBand = 1; iBand <= nBandCount; iBand++ )
{
if( nPixelOffset == -1 ) /* 4 bit case */
poDS->SetBand( iBand,
new LAN4BitRasterBand( poDS, iBand ) );
else
poDS->SetBand(
iBand,
new RawRasterBand( poDS, iBand, poDS->fpImage,
ERD_HEADER_SIZE + (iBand-1)
* nPixelOffset * poDS->nRasterXSize,
nPixelOffset,
poDS->nRasterXSize*nPixelOffset*nBandCount,
eDataType, !bNeedSwap, TRUE ));
}
/* -------------------------------------------------------------------- */
/* Initialize any PAM information. */
/* -------------------------------------------------------------------- */
poDS->SetDescription( poOpenInfo->pszFilename );
poDS->CheckForStatistics();
poDS->TryLoadXML();
/* -------------------------------------------------------------------- */
/* Check for overviews. */
/* -------------------------------------------------------------------- */
poDS->oOvManager.Initialize( poDS, poOpenInfo->pszFilename );
/* -------------------------------------------------------------------- */
/* Try to interprete georeferencing. */
/* -------------------------------------------------------------------- */
poDS->adfGeoTransform[0] = *((float *) (poDS->pachHeader + 112));
poDS->adfGeoTransform[1] = *((float *) (poDS->pachHeader + 120));
poDS->adfGeoTransform[2] = 0.0;
poDS->adfGeoTransform[3] = *((float *) (poDS->pachHeader + 116));
poDS->adfGeoTransform[4] = 0.0;
poDS->adfGeoTransform[5] = - *((float *) (poDS->pachHeader + 124));
// adjust for center of pixel vs. top left corner of pixel.
poDS->adfGeoTransform[0] -= poDS->adfGeoTransform[1] * 0.5;
poDS->adfGeoTransform[3] -= poDS->adfGeoTransform[5] * 0.5;
/* -------------------------------------------------------------------- */
/* If we didn't get any georeferencing, try for a worldfile. */
/* -------------------------------------------------------------------- */
if( poDS->adfGeoTransform[1] == 0.0
|| poDS->adfGeoTransform[5] == 0.0 )
{
if( !GDALReadWorldFile( poOpenInfo->pszFilename, NULL,
poDS->adfGeoTransform ) )
GDALReadWorldFile( poOpenInfo->pszFilename, ".wld",
poDS->adfGeoTransform );
}
/* -------------------------------------------------------------------- */
/* Try to come up with something for the coordinate system. */
/* -------------------------------------------------------------------- */
int nCoordSys = *((GInt16 *) (poDS->pachHeader + 88));
if( nCoordSys == 0 )
{
poDS->pszProjection = CPLStrdup(SRS_WKT_WGS84);
}
else if( nCoordSys == 1 )
{
poDS->pszProjection =
CPLStrdup("LOCAL_CS[\"UTM - Zone Unknown\",UNIT[\"Meter\",1]]");
}
else if( nCoordSys == 2 )
{
poDS->pszProjection = CPLStrdup("LOCAL_CS[\"State Plane - Zone Unknown\",UNIT[\"US survey foot\",0.3048006096012192]]");
}
else
{
poDS->pszProjection =
CPLStrdup("LOCAL_CS[\"Unknown\",UNIT[\"Meter\",1]]");
}
/* -------------------------------------------------------------------- */
/* Check for a trailer file with a colormap in it. */
/* -------------------------------------------------------------------- */
char *pszPath = CPLStrdup(CPLGetPath(poOpenInfo->pszFilename));
char *pszBasename = CPLStrdup(CPLGetBasename(poOpenInfo->pszFilename));
const char *pszTRLFilename =
CPLFormCIFilename( pszPath, pszBasename, "trl" );
VSILFILE *fpTRL;
fpTRL = VSIFOpenL( pszTRLFilename, "rb" );
if( fpTRL != NULL )
{
char szTRLData[896];
int iColor;
GDALColorTable *poCT;
VSIFReadL( szTRLData, 1, 896, fpTRL );
VSIFCloseL( fpTRL );
poCT = new GDALColorTable();
for( iColor = 0; iColor < 256; iColor++ )
{
GDALColorEntry sEntry;
sEntry.c2 = ((GByte *) szTRLData)[iColor+128];
sEntry.c1 = ((GByte *) szTRLData)[iColor+128+256];
sEntry.c3 = ((GByte *) szTRLData)[iColor+128+512];
sEntry.c4 = 255;
poCT->SetColorEntry( iColor, &sEntry );
// only 16 colors in 4bit files.
if( nPixelOffset == -1 && iColor == 15 )
break;
}
poDS->GetRasterBand(1)->SetColorTable( poCT );
poDS->GetRasterBand(1)->SetColorInterpretation( GCI_PaletteIndex );
delete poCT;
}
CPLFree( pszPath );
CPLFree( pszBasename );
return( poDS );
}
/************************************************************************/
/* GetGeoTransform() */
/************************************************************************/
CPLErr LANDataset::GetGeoTransform( double * padfTransform )
{
if( adfGeoTransform[1] != 0.0 && adfGeoTransform[5] != 0.0 )
{
memcpy( padfTransform, adfGeoTransform, sizeof(double)*6 );
return CE_None;
}
else
return GDALPamDataset::GetGeoTransform( padfTransform );
}
/************************************************************************/
/* SetGeoTransform() */
/************************************************************************/
CPLErr LANDataset::SetGeoTransform( double * padfTransform )
{
unsigned char abyHeader[128];
memcpy( adfGeoTransform, padfTransform, sizeof(double) * 6 );
VSIFSeekL( fpImage, 0, SEEK_SET );
VSIFReadL( abyHeader, 128, 1, fpImage );
// Upper Left X
float f32Val;
f32Val = (float) (adfGeoTransform[0] + 0.5 * adfGeoTransform[1]);
memcpy( abyHeader + 112, &f32Val, 4 );
// Upper Left Y
f32Val = (float) (adfGeoTransform[3] + 0.5 * adfGeoTransform[5]);
memcpy( abyHeader + 116, &f32Val, 4 );
// width of pixel
f32Val = (float) adfGeoTransform[1];
memcpy( abyHeader + 120, &f32Val, 4 );
// height of pixel
f32Val = (float) fabs(adfGeoTransform[5]);
memcpy( abyHeader + 124, &f32Val, 4 );
if( VSIFSeekL( fpImage, 0, SEEK_SET ) != 0
|| VSIFWriteL( abyHeader, 128, 1, fpImage ) != 1 )
{
CPLError( CE_Failure, CPLE_FileIO,
"File IO Error writing header with new geotransform." );
return CE_Failure;
}
else
return CE_None;
}
/************************************************************************/
/* GetProjectionRef() */
/* */
/* Use PAM coordinate system if available in preference to the */
/* generally poor value derived from the file itself. */
/************************************************************************/
const char *LANDataset::GetProjectionRef()
{
const char* pszPamPrj = GDALPamDataset::GetProjectionRef();
if( pszProjection != NULL && strlen(pszPamPrj) == 0 )
return pszProjection;
else
return pszPamPrj;
}
/************************************************************************/
/* SetProjection() */
/************************************************************************/
CPLErr LANDataset::SetProjection( const char * pszWKT )
{
unsigned char abyHeader[128];
VSIFSeekL( fpImage, 0, SEEK_SET );
VSIFReadL( abyHeader, 128, 1, fpImage );
OGRSpatialReference oSRS( pszWKT );
GUInt16 nProjCode = 0;
if( oSRS.IsGeographic() )
nProjCode = 0;
else if( oSRS.GetUTMZone() != 0 )
nProjCode = 1;
// Too bad we have no way of recognising state plane projections.
else
{
const char *pszProjection = oSRS.GetAttrValue("PROJECTION");
if( pszProjection == NULL )
;
else if( EQUAL(pszProjection,
SRS_PT_ALBERS_CONIC_EQUAL_AREA) )
nProjCode = 3;
else if( EQUAL(pszProjection,
SRS_PT_LAMBERT_CONFORMAL_CONIC_1SP) )
nProjCode = 4;
else if( EQUAL(pszProjection,
SRS_PT_MERCATOR_1SP) )
nProjCode = 5;
else if( EQUAL(pszProjection,
SRS_PT_POLAR_STEREOGRAPHIC) )
nProjCode = 6;
else if( EQUAL(pszProjection,
SRS_PT_POLYCONIC) )
nProjCode = 7;
else if( EQUAL(pszProjection,
SRS_PT_EQUIDISTANT_CONIC) )
nProjCode = 8;
else if( EQUAL(pszProjection,
SRS_PT_TRANSVERSE_MERCATOR) )
nProjCode = 9;
else if( EQUAL(pszProjection,
SRS_PT_STEREOGRAPHIC) )
nProjCode = 10;
else if( EQUAL(pszProjection,
SRS_PT_LAMBERT_AZIMUTHAL_EQUAL_AREA) )
nProjCode = 11;
else if( EQUAL(pszProjection,
SRS_PT_AZIMUTHAL_EQUIDISTANT) )
nProjCode = 12;
else if( EQUAL(pszProjection,
SRS_PT_GNOMONIC) )
nProjCode = 13;
else if( EQUAL(pszProjection,
SRS_PT_ORTHOGRAPHIC) )
nProjCode = 14;
// we don't have GVNP.
else if( EQUAL(pszProjection,
SRS_PT_SINUSOIDAL) )
nProjCode = 16;
else if( EQUAL(pszProjection,
SRS_PT_EQUIRECTANGULAR) )
nProjCode = 17;
else if( EQUAL(pszProjection,
SRS_PT_MILLER_CYLINDRICAL) )
nProjCode = 18;
else if( EQUAL(pszProjection,
SRS_PT_VANDERGRINTEN) )
nProjCode = 19;
else if( EQUAL(pszProjection,
SRS_PT_HOTINE_OBLIQUE_MERCATOR) )
nProjCode = 20;
}
memcpy( abyHeader + 88, &nProjCode, 2 );
VSIFSeekL( fpImage, 0, SEEK_SET );
VSIFWriteL( abyHeader, 128, 1, fpImage );
return GDALPamDataset::SetProjection( pszWKT );
}
/************************************************************************/
/* GetFileList() */
/************************************************************************/
char **LANDataset::GetFileList()
{
char **papszFileList = NULL;
// Main data file, etc.
papszFileList = GDALPamDataset::GetFileList();
if( strlen(osSTAFilename) > 0 )
papszFileList = CSLAddString( papszFileList, osSTAFilename );
return papszFileList;
}
/************************************************************************/
/* CheckForStatistics() */
/************************************************************************/
void LANDataset::CheckForStatistics()
{
/* -------------------------------------------------------------------- */
/* Do we have a statistics file? */
/* -------------------------------------------------------------------- */
osSTAFilename = CPLResetExtension(GetDescription(),"sta");
VSILFILE *fpSTA = VSIFOpenL( osSTAFilename, "r" );
if( fpSTA == NULL && VSIIsCaseSensitiveFS(osSTAFilename) )
{
osSTAFilename = CPLResetExtension(GetDescription(),"STA");
fpSTA = VSIFOpenL( osSTAFilename, "r" );
}
if( fpSTA == NULL )
{
osSTAFilename = "";
return;
}
/* -------------------------------------------------------------------- */
/* Read it one band at a time. */
/* -------------------------------------------------------------------- */
GByte abyBandInfo[1152];
int iBand;
for( iBand = 0; iBand < nBands; iBand++ )
{
if( VSIFReadL( abyBandInfo, 1152, 1, fpSTA ) != 1 )
break;
int nBandNumber = abyBandInfo[7];
GDALRasterBand *poBand = GetRasterBand(nBandNumber);
if( poBand == NULL )
break;
float fMean, fStdDev;
GInt16 nMin, nMax;
if( poBand->GetRasterDataType() != GDT_Byte )
{
memcpy( &nMin, abyBandInfo + 28, 2 );
memcpy( &nMax, abyBandInfo + 30, 2 );
CPL_LSBPTR16( &nMin );
CPL_LSBPTR16( &nMax );
}
else
{
nMin = abyBandInfo[9];
nMax = abyBandInfo[8];
}
memcpy( &fMean, abyBandInfo + 12, 4 );
memcpy( &fStdDev, abyBandInfo + 24, 4 );
CPL_LSBPTR32( &fMean );
CPL_LSBPTR32( &fStdDev );
poBand->SetStatistics( nMin, nMax, fMean, fStdDev );
}
VSIFCloseL( fpSTA );
}
/************************************************************************/
/* Create() */
/************************************************************************/
GDALDataset *LANDataset::Create( const char * pszFilename,
int nXSize, int nYSize, int nBands,
GDALDataType eType,
char ** papszOptions )
{
if( eType != GDT_Byte && eType != GDT_Int16 )
{
CPLError( CE_Failure, CPLE_AppDefined,
"Attempt to create .GIS file with unsupported data type '%s'.",
GDALGetDataTypeName( eType ) );
return NULL;
}
/* -------------------------------------------------------------------- */
/* Try to create the file. */
/* -------------------------------------------------------------------- */
VSILFILE *fp;
fp = VSIFOpenL( pszFilename, "wb" );
if( fp == NULL )
{
CPLError( CE_Failure, CPLE_OpenFailed,
"Attempt to create file `%s' failed.\n",
pszFilename );
return NULL;
}
/* -------------------------------------------------------------------- */
/* Write out the header. */
/* -------------------------------------------------------------------- */
unsigned char abyHeader[128];
GInt16 n16Val;
GInt32 n32Val;
memset( abyHeader, 0, sizeof(abyHeader) );
memcpy( abyHeader + 0, "HEAD74", 6 );
// Pixel type
if( eType == GDT_Byte ) // do we want 4bit?
n16Val = 0;
else
n16Val = 2;
memcpy( abyHeader + 6, &n16Val, 2 );
// Number of Bands.
n16Val = (GInt16) nBands;
memcpy( abyHeader + 8, &n16Val, 2 );
// Unknown (6)
// Width
n32Val = nXSize;
memcpy( abyHeader + 16, &n32Val, 4 );
// Height
n32Val = nYSize;
memcpy( abyHeader + 20, &n32Val, 4 );
// X Start (4)
// Y Start (4)
// Unknown (56)
// Coordinate System
n16Val = 0;
memcpy( abyHeader + 88, &n16Val, 2 );
// Classes in coverage
n16Val = 0;
memcpy( abyHeader + 90, &n16Val, 2 );
// Unknown (14)
// Area Unit
n16Val = 0;
memcpy( abyHeader + 106, &n16Val, 2 );
// Pixel Area
float f32Val;
f32Val = 0.0f;
memcpy( abyHeader + 108, &f32Val, 4 );
// Upper Left X
f32Val = 0.5f;
memcpy( abyHeader + 112, &f32Val, 4 );
// Upper Left Y
f32Val = (float) (nYSize - 0.5);
memcpy( abyHeader + 116, &f32Val, 4 );
// width of pixel
f32Val = 1.0f;
memcpy( abyHeader + 120, &f32Val, 4 );
// height of pixel
f32Val = 1.0f;
memcpy( abyHeader + 124, &f32Val, 4 );
VSIFWriteL( abyHeader, sizeof(abyHeader), 1, fp );
/* -------------------------------------------------------------------- */
/* Extend the file to the target size. */
/* -------------------------------------------------------------------- */
vsi_l_offset nImageBytes;
if( eType != GDT_Byte )
nImageBytes = nXSize * (vsi_l_offset) nYSize * 2;
else
nImageBytes = nXSize * (vsi_l_offset) nYSize;
memset( abyHeader, 0, sizeof(abyHeader) );
while( nImageBytes > 0 )
{
vsi_l_offset nWriteThisTime = MIN(nImageBytes,sizeof(abyHeader));
if( VSIFWriteL( abyHeader, 1, (size_t)nWriteThisTime, fp )
!= nWriteThisTime )
{
VSIFCloseL( fp );
CPLError( CE_Failure, CPLE_FileIO,
"Failed to write whole Istar file." );
return NULL;
}
nImageBytes -= nWriteThisTime;
}
VSIFCloseL( fp );
return (GDALDataset *) GDALOpen( pszFilename, GA_Update );
}
/************************************************************************/
/* GDALRegister_LAN() */
/************************************************************************/
void GDALRegister_LAN()
{
GDALDriver *poDriver;
if( GDALGetDriverByName( "LAN" ) == NULL )
{
poDriver = new GDALDriver();
poDriver->SetDescription( "LAN" );
poDriver->SetMetadataItem( GDAL_DMD_LONGNAME,
"Erdas .LAN/.GIS" );
poDriver->SetMetadataItem( GDAL_DMD_HELPTOPIC,
"frmt_various.html#LAN" );
poDriver->SetMetadataItem( GDAL_DCAP_VIRTUALIO, "YES" );
poDriver->SetMetadataItem( GDAL_DMD_CREATIONDATATYPES,
"Byte Int16" );
poDriver->pfnOpen = LANDataset::Open;
poDriver->pfnCreate = LANDataset::Create;
GetGDALDriverManager()->RegisterDriver( poDriver );
}
}
|