s57dump.cpp

来自「支持各种栅格图像和矢量图像读取的库」· C++ 代码 · 共 208 行

CPP
208
字号
/****************************************************************************** * $Id: s57dump.cpp 10646 2007-01-18 02:38:10Z warmerdam $ * * Project:  OpenGIS Simple Features Reference Implementation * Purpose:  Simple client for viewing S57 driver data. * Author:   Frank Warmerdam, warmerdam@pobox.com * ****************************************************************************** * Copyright (c) 1999, 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 "s57.h"#include "cpl_conv.h"#include "cpl_string.h"CPL_CVSID("$Id: s57dump.cpp 10646 2007-01-18 02:38:10Z warmerdam $");/************************************************************************//*                                main()                                *//************************************************************************/int main( int nArgc, char ** papszArgv ){    char        **papszOptions = NULL;    int         bUpdate = TRUE;    int         bReturnPrimitives = FALSE;    char       *pszDataPath = NULL;        if( nArgc < 2 )    {        printf( "Usage: s57dump [-pen] [-split] [-lnam] [-return-prim] [-no-update]\n"                "               [-return-link] [-data <dirpath>] filename\n" );        exit( 1 );    }/* -------------------------------------------------------------------- *//*      Process commandline arguments.                                  *//* -------------------------------------------------------------------- */    for( int iArg = 1; iArg < nArgc-1; iArg++ )    {        if( EQUAL(papszArgv[iArg],"-split") )            papszOptions =                CSLSetNameValue( papszOptions, S57O_SPLIT_MULTIPOINT, "ON" );        else if( EQUAL(papszArgv[iArg],"-data") )            pszDataPath = papszArgv[++iArg];        else if( EQUAL(papszArgv[iArg],"-no-update") )            bUpdate = FALSE;        else if( EQUAL(papszArgv[iArg],"-pen") )            papszOptions =                CSLSetNameValue( papszOptions, S57O_PRESERVE_EMPTY_NUMBERS,                                 "ON" );        else if( EQUALN(papszArgv[iArg],"-return-prim",12) )        {            papszOptions =                CSLSetNameValue( papszOptions, S57O_RETURN_PRIMITIVES,                                 "ON" );            bReturnPrimitives = TRUE;        }        else if( EQUALN(papszArgv[iArg],"-lnam",4) )            papszOptions =                CSLSetNameValue( papszOptions, S57O_LNAM_REFS, "ON" );        else if( EQUALN(papszArgv[iArg],"-return-link",12) )            papszOptions =                CSLSetNameValue( papszOptions, S57O_RETURN_LINKAGES, "ON" );    }    /* -------------------------------------------------------------------- *//*      Load the class definitions into the registrar.                  *//* -------------------------------------------------------------------- */    S57ClassRegistrar   oRegistrar;    int                 bRegistrarLoaded;    bRegistrarLoaded = oRegistrar.LoadInfo( pszDataPath, NULL, TRUE );/* -------------------------------------------------------------------- *//*      Get a list of candidate files.                                  *//* -------------------------------------------------------------------- */    char        **papszFiles;    int         iFile;    papszFiles = S57FileCollector( papszArgv[nArgc-1] );    for( iFile = 0; papszFiles != NULL && papszFiles[iFile] != NULL; iFile++ )    {        printf( "Found: %s\n", papszFiles[iFile] );    }    for( iFile = 0; papszFiles != NULL && papszFiles[iFile] != NULL; iFile++ )    {        printf( "<------------------------------------------------------------------------->\n" );        printf( "\nFile: %s\n\n", papszFiles[iFile] );                S57Reader       oReader( papszFiles[iFile] );        oReader.SetOptions( papszOptions );                int             nOptionFlags = oReader.GetOptionFlags();        if( !oReader.Open( FALSE ) )            continue;        if( bRegistrarLoaded )        {            int i, anClassList[MAX_CLASSES], bGeneric = FALSE;                        for( i = 0; i < MAX_CLASSES; i++ )                anClassList[i] = 0;                    oReader.CollectClassList(anClassList, MAX_CLASSES);            oReader.SetClassBased( &oRegistrar );            printf( "Classes found:\n" );            for( i = 0; i < MAX_CLASSES; i++ )            {                if( anClassList[i] == 0 )                    continue;                                if( oRegistrar.SelectClass( i ) )                {                    printf( "%d: %s/%s\n",                            i,                            oRegistrar.GetAcronym(),                            oRegistrar.GetDescription() );                                        oReader.AddFeatureDefn(                        S57GenerateObjectClassDefn( &oRegistrar, i,                                                     nOptionFlags ) );                }                else                {                    printf( "%d: unrecognised ... treat as generic.\n", i );                    bGeneric = TRUE;                }            }            if( bGeneric )            {                oReader.AddFeatureDefn(                    S57GenerateGeomFeatureDefn( wkbUnknown, nOptionFlags ) );            }        }        else        {            oReader.AddFeatureDefn(                S57GenerateGeomFeatureDefn( wkbPoint, nOptionFlags ) );            oReader.AddFeatureDefn(                S57GenerateGeomFeatureDefn( wkbLineString, nOptionFlags ) );            oReader.AddFeatureDefn(                S57GenerateGeomFeatureDefn( wkbPolygon, nOptionFlags ) );            oReader.AddFeatureDefn(                S57GenerateGeomFeatureDefn( wkbNone, nOptionFlags ) );        }        if( bReturnPrimitives )        {            oReader.AddFeatureDefn(                 S57GenerateVectorPrimitiveFeatureDefn( RCNM_VI, nOptionFlags));            oReader.AddFeatureDefn(                 S57GenerateVectorPrimitiveFeatureDefn( RCNM_VC, nOptionFlags));            oReader.AddFeatureDefn(                 S57GenerateVectorPrimitiveFeatureDefn( RCNM_VE, nOptionFlags));            oReader.AddFeatureDefn(                 S57GenerateVectorPrimitiveFeatureDefn( RCNM_VF, nOptionFlags));        }            oReader.AddFeatureDefn( S57GenerateDSIDFeatureDefn() );        OGRFeature      *poFeature;        int             nFeatures = 0;        DDFModule       oUpdate;        if( bUpdate )            oReader.FindAndApplyUpdates(papszFiles[iFile]);            while( (poFeature = oReader.ReadNextFeature()) != NULL )        {            poFeature->DumpReadable( stdout );            nFeatures++;            delete poFeature;        }        printf( "Feature Count: %d\n", nFeatures );    }    return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?