I think you configured it correctly. Although the MG4 lidar SDK can be made to read .las files, the GDAL MG4Lidar driver only knows how to read .sid files (and .view files - see docs).
I don't believe there is a way to read .las files using GDAL right now. You'll probably need lasinfo from liblas or lidarinfo from the MG4 SDK, but these will be giving you different types of information... From: [email protected] [mailto:[email protected]] On Behalf Of Paul Meems Sent: mardi 17 mai 2011 18:05 To: [email protected] Subject: Re: [gdal-dev] Having trouble compiling MrSid in GDALv1.8 Thanks Kirk and Chaitanya, It was indeed GDAL_HOME. I used double quotes around it and after removing it it is working. LizardTeck provided some sample data. And I'm using it to check if my version of GDAL is correct. I use gdalinfo to check the .sid file and it works. When I do a gdalinfo on the .las file it is not recognized. When I do a gdalinfo --formats I see MG4Lidar, but the description states .sid Does this mean I didn't configure it right after all? Thanks, Paul 2011/5/18 Kirk McKelvey <[email protected]<mailto:[email protected]>> The line it is complaining about is almost certainly the following line, where MRSID_DIR is used for the first time. Not sure how it gets 72. What is your value for GDAL_HOME? There might be some kind of quoting issue going on. Also, I'm not sure I ever tested it with relative paths, so that could be it as well. From: [email protected]<mailto:[email protected]> [mailto:[email protected]<mailto:[email protected]>] On Behalf Of Paul Meems Sent: mardi 17 mai 2011 17:19 To: [email protected]<mailto:[email protected]> Subject: [gdal-dev] Having trouble compiling MrSid in GDALv1.8 Hi all, I'm trying to compile GDALv1.8 on Win7 using VS2008Pro. So far I've added successfully GEOS, cUrl, ECW, Proj.4 and Xerces. I'm now trying to add MrSid support. I've downloaded the Unified Decode SDK v8 from LizardTech and changed this in my nmake.opt: MRSID_DIR = $(GDAL_HOME)\..\LizardTech-SDK\Win32 When I compile I get an error in line 72: fatal error U1023: syntax error in expression \GDAL\gdal18\frmts\mrsid\nmake.opt I didn't changed this file. Lines 64 - 80 are: !IF DEFINED(MRSID_DIR) # Guard against conflicting configuration. !IF DEFINED(MRSID_RASTER_DIR) && DEFINED(MRSID_LIDAR_DIR) !ERROR The MRSID_DIR value is redundant or conflicts with the values of MRSID_RASTER_DIR and MRSID_LIDAR_DIR. Please remove one of these values from the build configuration. !ENDIF # If a raster path was not explicitly set, see if MRSID_DIR is one. !IF !DEFINED(MRSID_RASTER_DIR) !IF EXIST("$(MRSID_DIR)\Raster_ESDK\include\lt_base.h") MRSID_RASTER_DIR = $(MRSID_DIR)\Raster_ESDK !ELSE IF EXIST("$(MRSID_DIR)\Raster_DSDK\include\lt_base.h") MRSID_RASTER_DIR = $(MRSID_DIR)\Raster_DSDK !ELSE IF EXIST("$(MRSID_DIR)\include\lt_base.h") || EXIST("$(MRSID_DIR)\include\support\lt_base.h") MRSID_RASTER_DIR = $(MRSID_DIR) !ENDIF !ENDIF Line 72 is !IF !DEFINED(MRSID_RASTER_DIR) What do I need to do to enable MrSid? Thanks, Paul Paul Meems Release manager, configuration manager and forum moderator of MapWindow GIS. www.mapwindow.org<http://www.mapwindow.org/> Owner of MapWindow.nl - Support for Dutch speaking users. www.mapwindow.nl<http://www.mapwindow.nl/>
_______________________________________________ gdal-dev mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/gdal-dev
