Changeset 14473
- Timestamp:
- 05/16/08 15:47:55 (2 months ago)
- Files:
-
- trunk/gdal/frmts/formats_list.html (modified) (1 diff)
- trunk/gdal/frmts/gdalallregister.cpp (modified) (1 diff)
- trunk/gdal/frmts/raw/GNUmakefile (modified) (1 diff)
- trunk/gdal/frmts/raw/frmt_lcp.html (added)
- trunk/gdal/frmts/raw/lcpdataset.cpp (added)
- trunk/gdal/frmts/raw/makefile.vc (modified) (1 diff)
- trunk/gdal/gcore/gdal_frmts.h (modified) (1 diff)
- trunk/gdal/port/cpl_port.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/gdal/frmts/formats_list.html
r14382 r14473 375 375 </td></tr> 376 376 377 <tr><td> <a href="frmt_leveller.html">Daylon Leveller Heightfield</a> 378 </td><td> Leveller 377 <tr><td> <a href="frmt_various.html#LAN">Erdas 7.x .LAN and .GIS</a> 378 </td><td> LAN 379 </td><td> No 380 </td><td> Yes 381 </td><td> 2GB 382 </td></tr> 383 384 <tr><td> <a href="frmt_lcp.html">FARSITE v.4 LCP Format</a> 385 </td><td> LCP 379 386 </td><td> No 380 387 </td><td> Yes trunk/gdal/frmts/gdalallregister.cpp
r14029 r14473 342 342 GDALRegister_NDF(); 343 343 GDALRegister_DIPEx(); 344 GDALRegister_LCP(); 344 345 #endif 345 346 trunk/gdal/frmts/raw/GNUmakefile
r12700 r14473 7 7 fujibasdataset.o envidataset.o gscdataset.o fastdataset.o \ 8 8 atlsci_spheroid.o btdataset.o landataset.o cpgdataset.o \ 9 idadataset.o ndfdataset.o dipxdataset.o genbindataset.o 9 idadataset.o ndfdataset.o dipxdataset.o genbindataset.o \ 10 lcpdataset.o 10 11 11 12 CPPFLAGS := $(GDAL_INCLUDE) $(CPPFLAGS) trunk/gdal/frmts/raw/makefile.vc
r12700 r14473 5 5 gscdataset.obj fastdataset.obj atlsci_spheroid.obj \ 6 6 btdataset.obj landataset.obj cpgdataset.obj idadataset.obj \ 7 ndfdataset.obj dipxdataset.obj genbindataset.obj 7 ndfdataset.obj dipxdataset.obj genbindataset.obj \ 8 lcpdataset.obj 8 9 9 10 GDAL_ROOT = ..\.. trunk/gdal/gcore/gdal_frmts.h
r14029 r14473 129 129 void CPL_DLL GDALRegister_COASP(void); 130 130 void CPL_DLL GDALRegister_BLX(void); 131 void CPL_DLL GDALRegister_LCP(void); 131 132 CPL_C_END 132 133 trunk/gdal/port/cpl_port.h
r13858 r14473 430 430 #endif 431 431 432 /** Return a Int16 from the 2 bytes ordered in LSB order at address x */ 433 #define CPL_LSBINT16PTR(x) ((*(GByte*)(x)) | ((*(GByte*)((x)+1)) << 8)) 434 435 /** Return a Int32 from the 4 bytes ordered in LSB order at address x */ 436 #define CPL_LSBINT32PTR(x) ((*(GByte*)(x)) | ((*(GByte*)((x)+1)) << 8) | \ 437 ((*(GByte*)((x)+2)) << 16) | ((*(GByte*)((x)+1)) << 24)) 438 439 432 440 /*********************************************************************** 433 441 * Define CPL_CVSID() macro. It can be disabled during a build by
