⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 s57dump.cpp

📁 GIS系统支持库Geospatial Data Abstraction Library代码.GDAL is a translator library for raster geospatial dat
💻 CPP
字号:
/****************************************************************************** * $Id: s57dump.cpp,v 1.16 2003/11/12 21:23:12 warmerda Exp $ * * Project:  OpenGIS Simple Features Reference Implementation * Purpose:  Simple client for viewing S57 driver data. * Author:   Frank Warmerdam, warmerda@home.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. ****************************************************************************** * * $Log: s57dump.cpp,v $ * Revision 1.16  2003/11/12 21:23:12  warmerda * updates to new featuredefn generators * * Revision 1.15  2003/09/15 20:53:06  warmerda * fleshed out feature writing * * Revision 1.14  2003/09/05 19:12:05  warmerda * added RETURN_PRIMITIVES support to get low level prims * * Revision 1.13  2002/05/14 21:33:30  warmerda * use macros for options, pass PRESERVE_EMPTY_NUMBERS opt * * Revision 1.12  2001/08/30 21:06:55  warmerda * expand tabs * * Revision 1.11  2001/08/30 21:05:32  warmerda * added support for generic object if not recognised * * Revision 1.10  2001/08/30 03:48:43  warmerda * preliminary implementation of S57 Update Support * * Revision 1.9  2001/07/18 04:55:16  warmerda * added CPL_CSVID * * Revision 1.8  2000/06/16 18:10:05  warmerda * expanded tabs * * Revision 1.7  1999/11/26 15:17:01  warmerda * fixed lname to lnam * * Revision 1.6  1999/11/26 15:08:38  warmerda * added setoptions, and LNAM support * * Revision 1.5  1999/11/18 19:01:25  warmerda * expanded tabs * * Revision 1.4  1999/11/18 18:57:45  warmerda * utilize s57filecollector * * Revision 1.3  1999/11/16 21:47:32  warmerda * updated class occurance collection * * Revision 1.2  1999/11/08 22:23:00  warmerda * added object class support * * Revision 1.1  1999/11/03 22:12:43  warmerda * New * */#include "s57.h"#include "cpl_conv.h"#include "cpl_string.h"CPL_CVSID("$Id: s57dump.cpp,v 1.16 2003/11/12 21:23:12 warmerda Exp $");/************************************************************************//*                                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, 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));        }            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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -