📄 shapefileurlresourceinfo.java
字号:
/*
* GeoTools - OpenSource mapping toolkit
* http://geotools.org
* (C) 2002-2008, Geotools Project Managment Committee (PMC)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
package org.geotools.data.shapefile;
import java.net.URI;
import java.util.HashSet;
import java.util.Set;
import javax.swing.Icon;
import org.geotools.data.DataSourceException;
import org.geotools.data.ResourceInfo;
import org.geotools.feature.FeatureTypes;
import org.geotools.geometry.jts.ReferencedEnvelope;
import org.opengis.referencing.crs.CoordinateReferenceSystem;
/**
* Information about the contents of a shapefile.
*
* @author Jody Garnett (Refractions Reserach Inc)
*/
public class ShapefileURLResourceInfo implements ResourceInfo {
private ShapefileDataStore shapefile;
public ShapefileURLResourceInfo( ShapefileDataStore shapefile ) {
this.shapefile = shapefile;
}
public ReferencedEnvelope getBounds() {
try {
return shapefile.getBounds();
} catch (DataSourceException e) {
return new ReferencedEnvelope( getCRS() );
}
}
public CoordinateReferenceSystem getCRS() {
return shapefile.schema.getCRS();
}
public String getDescription() {
return "Contents of shapefile";
}
public Set<String> getKeywords() {
Set<String> words = new HashSet<String>();
words.add( shapefile.getCurrentTypeName() );
words.add( "features" );
// it would be nice to list the geometry type here...
return words;
}
public String getName() {
return shapefile.getCurrentTypeName();
}
public URI getSchema() {
return FeatureTypes.DEFAULT_NAMESPACE; // we have features?
// url to shp (as the header is our schema)
}
public String getTitle() {
return shapefile.getCurrentTypeName();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -