~ubuntu-branches/debian/sid/gdal/sid

« back to all changes in this revision

Viewing changes to frmts/sdts/sdtsdataset.cpp

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2012-05-07 15:04:42 UTC
  • mfrom: (5.5.16 experimental)
  • Revision ID: package-import@ubuntu.com-20120507150442-2eks97loeh6rq005
Tags: 1.9.0-1
* Ready for sid, starting transition.
* All symfiles updated to latest builds.
* Added dh_numpy call in debian/rules to depend on numpy ABI.
* Policy bumped to 3.9.3, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/******************************************************************************
2
 
 * $Id: sdtsdataset.cpp 17664 2009-09-21 21:16:45Z rouault $
 
2
 * $Id: sdtsdataset.cpp 23060 2011-09-05 17:58:30Z rouault $
3
3
 *
4
4
 * Project:  SDTS Translator
5
5
 * Purpose:  GDALDataset driver for SDTS Raster translator.
31
31
#include "gdal_pam.h"
32
32
#include "ogr_spatialref.h"
33
33
 
34
 
CPL_CVSID("$Id: sdtsdataset.cpp 17664 2009-09-21 21:16:45Z rouault $");
 
34
CPL_CVSID("$Id: sdtsdataset.cpp 23060 2011-09-05 17:58:30Z rouault $");
35
35
 
36
36
/**
37
37
 \file sdtsdataset.cpp
285
285
    poDS->SetDescription( poOpenInfo->pszFilename );
286
286
    poDS->TryLoadXML();
287
287
 
 
288
/* -------------------------------------------------------------------- */
 
289
/*      Check for external overviews.                                   */
 
290
/* -------------------------------------------------------------------- */
 
291
    poDS->oOvManager.Initialize( poDS, poOpenInfo->pszFilename, poOpenInfo->papszSiblingFiles );
 
292
 
288
293
    return( poDS );
289
294
}
290
295
 
399
404
        poDriver->SetMetadataItem( GDAL_DMD_HELPTOPIC, 
400
405
                                   "frmt_various.html#SDTS" );
401
406
        poDriver->SetMetadataItem( GDAL_DMD_EXTENSION, "ddf" );
 
407
        poDriver->SetMetadataItem( GDAL_DCAP_VIRTUALIO, "YES" );
402
408
 
403
409
        poDriver->pfnOpen = SDTSDataset::Open;
404
410