001 //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/branches/2.2_testing/src/org/deegree/tools/shape/GML2Shape_new.java $
002 /*---------------- FILE HEADER ------------------------------------------
003
004 This file is part of deegree.
005 Copyright (C) 2001-2008 by:
006 EXSE, Department of Geography, University of Bonn
007 http://www.giub.uni-bonn.de/deegree/
008 lat/lon GmbH
009 http://www.lat-lon.de
010
011 This library is free software; you can redistribute it and/or
012 modify it under the terms of the GNU Lesser General Public
013 License as published by the Free Software Foundation; either
014 version 2.1 of the License, or (at your option) any later version.
015
016 This library is distributed in the hope that it will be useful,
017 but WITHOUT ANY WARRANTY; without even the implied warranty of
018 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
019 Lesser General Public License for more details.
020
021 You should have received a copy of the GNU Lesser General Public
022 License along with this library; if not, write to the Free Software
023 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
024
025 Contact:
026
027 Andreas Poth
028 lat/lon GmbH
029 Aennchenstr. 19
030 53115 Bonn
031 Germany
032 E-Mail: poth@lat-lon.de
033
034 Prof. Dr. Klaus Greve
035 Department of Geography
036 University of Bonn
037 Meckenheimer Allee 166
038 53115 Bonn
039 Germany
040 E-Mail: greve@giub.uni-bonn.de
041
042
043 ---------------------------------------------------------------------------*/
044 package org.deegree.tools.shape;
045
046 import java.io.File;
047 import java.io.IOException;
048 import java.net.MalformedURLException;
049 import java.net.URL;
050
051 import org.deegree.framework.log.ILogger;
052 import org.deegree.framework.log.LoggerFactory;
053 import org.deegree.framework.xml.XMLParsingException;
054 import org.deegree.io.dbaseapi.DBaseException;
055 import org.deegree.io.shpapi.shape_new.ShapeFile;
056 import org.deegree.io.shpapi.shape_new.ShapeFileWriter;
057 import org.deegree.model.feature.FeatureCollection;
058 import org.deegree.model.feature.GMLFeatureCollectionDocument;
059 import org.deegree.model.spatialschema.GeometryException;
060 import org.xml.sax.SAXException;
061
062 /**
063 *
064 *
065 * @version $Revision: 9346 $
066 * @author <a href="mailto:poth@lat-lon.de">Andreas Poth</a>
067 * @author last edited by: $Author: apoth $
068 *
069 * @version 1.0. $Revision: 9346 $, $Date: 2007-12-27 17:39:07 +0100 (Do, 27 Dez 2007) $
070 *
071 * @since 1.1
072 */
073 public class GML2Shape_new {
074
075 private static final ILogger LOG = LoggerFactory.getLogger( GML2Shape_new.class );
076
077 private FeatureCollection fc = null;
078
079 private String inName = null;
080
081 private String outName = null;
082
083 /**
084 * @param inName
085 * @param outName
086 */
087 public GML2Shape_new( String inName, String outName ) {
088 if ( outName.endsWith( ".shp" ) ) {
089 outName = outName.substring( 0, outName.lastIndexOf( "." ) );
090 }
091 this.inName = inName;
092 this.outName = outName;
093 }
094
095 /**
096 * @throws IOException
097 * @throws SAXException
098 * @throws XMLParsingException
099 */
100 public void read()
101 throws IOException, SAXException, XMLParsingException {
102 LOG.logInfo( "Reading " + inName + " ... " );
103 GMLFeatureCollectionDocument doc = new GMLFeatureCollectionDocument();
104 URL url;
105 try {
106 url = new URL( inName );
107 } catch ( MalformedURLException e ) {
108 url = new File( inName ).toURL();
109 }
110 doc.load( url.openStream(), url.toString() );
111 fc = doc.parse();
112 }
113
114 /**
115 * @throws GeometryException
116 * @throws DBaseException
117 * @throws IOException
118 *
119 */
120 public void write()
121 throws DBaseException, GeometryException, IOException {
122 LOG.logInfo( "Writing " + outName + " ... " );
123 ShapeFile sf = new ShapeFile( fc, outName );
124 ShapeFileWriter writer = new ShapeFileWriter( sf );
125 writer.write( outName );
126 LOG.logInfo( "Done." );
127 }
128
129 /**
130 * This is a command line tool.
131 *
132 * @param args
133 */
134 public static void main( String[] args ) {
135 try {
136
137 if ( args == null || args.length < 2 ) {
138 System.out.println( "Usage: java -cp ... ...GML2Shape_new <inputfile/URL> <outputfile basename>" );
139 System.exit( 1 );
140 }
141
142 GML2Shape_new rws = new GML2Shape_new( args[0], args[1] );
143 rws.read();
144 rws.write();
145
146 } catch ( IOException e ) {
147 LOG.logError( "IO error occured.", e );
148 } catch ( SAXException e ) {
149 LOG.logError( "The GML file could not be parsed.", e );
150 } catch ( XMLParsingException e ) {
151 LOG.logError( "The GML file could not be parsed.", e );
152 } catch ( DBaseException e ) {
153 LOG.logError( "Could not create .dbf for shapefile.", e );
154 } catch ( GeometryException e ) {
155 LOG.logError( "A geometry was faulty.", e );
156 }
157 }
158 }