2 |
* Copyright (c) 2009 Martin O. J. Schmitz. |
* Copyright (c) 2009 Martin O. J. Schmitz. |
3 |
* |
* |
4 |
* This file is part of the SCHMITZM library - a collection of utility |
* This file is part of the SCHMITZM library - a collection of utility |
5 |
* classes based on Java 1.6, focussing (not only) on Java Swing |
* classes based on Java 1.6, focusing (not only) on Java Swing |
6 |
* and the Geotools library. |
* and the Geotools library. |
7 |
* |
* |
8 |
* The SCHMITZM project is hosted at: |
* The SCHMITZM project is hosted at: |
30 |
package skrueger.geotools; |
package skrueger.geotools; |
31 |
|
|
32 |
import java.io.File; |
import java.io.File; |
|
import java.io.FileNotFoundException; |
|
33 |
import java.io.IOException; |
import java.io.IOException; |
34 |
import java.net.URL; |
import java.net.URL; |
35 |
import java.util.Date; |
import java.util.Date; |
|
import java.util.HashMap; |
|
|
import java.util.Map; |
|
36 |
import java.util.Random; |
import java.util.Random; |
37 |
|
|
38 |
import javax.swing.ImageIcon; |
import javax.swing.ImageIcon; |
40 |
|
|
41 |
import org.apache.log4j.Logger; |
import org.apache.log4j.Logger; |
42 |
import org.geotools.data.FeatureSource; |
import org.geotools.data.FeatureSource; |
|
import org.geotools.feature.AttributeType; |
|
43 |
import org.geotools.feature.FeatureCollection; |
import org.geotools.feature.FeatureCollection; |
44 |
|
import org.geotools.feature.NameImpl; |
45 |
import org.geotools.styling.Style; |
import org.geotools.styling.Style; |
46 |
|
import org.opengis.feature.simple.SimpleFeature; |
47 |
|
import org.opengis.feature.simple.SimpleFeatureType; |
48 |
|
import org.opengis.feature.type.AttributeDescriptor; |
49 |
|
import org.opengis.filter.Filter; |
50 |
import org.opengis.referencing.crs.CoordinateReferenceSystem; |
import org.opengis.referencing.crs.CoordinateReferenceSystem; |
51 |
|
|
52 |
|
import schmitzm.geotools.io.GeoImportUtil; |
53 |
import schmitzm.geotools.styling.StylingUtil; |
import schmitzm.geotools.styling.StylingUtil; |
54 |
import skrueger.AttributeMetaData; |
import skrueger.AttributeMetadataImpl; |
55 |
import skrueger.i8n.Translation; |
import skrueger.i8n.Translation; |
56 |
|
|
57 |
import com.vividsolutions.jts.geom.Envelope; |
import com.vividsolutions.jts.geom.Envelope; |
61 |
* {@link JPanel} as a {@link MapContextManagerInterface} |
* {@link JPanel} as a {@link MapContextManagerInterface} |
62 |
* |
* |
63 |
* @author <a href="mailto:[email protected]">Stefan Alfons Krüger</a> |
* @author <a href="mailto:[email protected]">Stefan Alfons Krüger</a> |
64 |
|
* |
65 |
|
* TODO Rename to StyledShapefile |
66 |
*/ |
*/ |
67 |
public class StyledFS implements StyledFeatureSourceInterface { |
public class StyledFS implements StyledFeatureSourceInterface { |
68 |
private static final Logger LOGGER = Logger.getLogger(StyledFS.class); |
private static final Logger LOGGER = Logger.getLogger(StyledFS.class); |
69 |
|
|
70 |
private final FeatureSource fs; |
private final FeatureSource<SimpleFeatureType, SimpleFeature> fs; |
71 |
|
|
72 |
|
/** Caching the CRS of the layer **/ |
73 |
|
CoordinateReferenceSystem crs = null; |
74 |
|
|
75 |
/** |
/** |
76 |
* A unique ID which identifies the Layer in the Atlas. It's more important |
* A unique ID which identifies the Layer in the Atlas. It's more important |
86 |
|
|
87 |
private File sldFile; |
private File sldFile; |
88 |
|
|
89 |
private HashMap<Integer, AttributeMetaData> map; |
private AttributeMetadataMap map; |
90 |
|
|
91 |
|
private Filter filter = Filter.INCLUDE; |
92 |
|
|
93 |
/** |
/** |
94 |
* This class enables a non Atlas context to use the Atlas LayerPanel |
* This class enables a non Atlas context to use the Atlas LayerPanel |
101 |
* may be <code>null</code>. Otherwise the SLD {@link File} to |
* may be <code>null</code>. Otherwise the SLD {@link File} to |
102 |
* import and associate with this {@link StyledFS} |
* import and associate with this {@link StyledFS} |
103 |
*/ |
*/ |
104 |
public StyledFS(FeatureSource fs, File sldFile) { |
public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs, |
105 |
|
File sldFile) { |
106 |
|
|
107 |
this.fs = fs; |
this.fs = fs; |
108 |
|
|
109 |
id = StyledFS.class.getSimpleName() |
id = StyledFS.class.getSimpleName() |
110 |
+ new Random(new Date().getTime()).nextInt(10000000); |
+ new Random(new Date().getTime()).nextInt(10000000); |
111 |
|
|
112 |
this.sldFile = sldFile; |
this.sldFile = sldFile; |
113 |
|
|
114 |
if ((sldFile != null) && (sldFile.exists())) { |
// datei existiert, dann lesen |
115 |
|
if (sldFile != null && sldFile.exists()) { |
116 |
try { |
try { |
117 |
style = StylingUtil.loadSLD(sldFile)[0]; |
style = StylingUtil.loadSLD(sldFile)[0]; |
|
} catch (FileNotFoundException e) { |
|
|
LOGGER |
|
|
.debug("The SLD file passed was empty. Leaving the Style untouched. (We are in the constructor.. so its null"); |
|
118 |
} catch (Exception e) { |
} catch (Exception e) { |
119 |
LOGGER.warn("Reading SLD failed: " + sldFile, e); |
LOGGER.warn("Reading SLD failed: " + sldFile, e); |
120 |
|
style = null; |
121 |
} |
} |
122 |
} |
} |
|
title = new Translation(); |
|
|
title.fromOneLine(sldFile.getName()); |
|
123 |
|
|
124 |
|
title = new Translation(); |
125 |
desc = new Translation(); |
desc = new Translation(); |
126 |
desc.fromOneLine(sldFile.getAbsolutePath()); |
|
127 |
|
if (sldFile != null) { |
128 |
|
title.fromOneLine(sldFile.getName()); |
129 |
|
desc.fromOneLine(sldFile.getAbsolutePath()); |
130 |
|
} |
131 |
|
|
132 |
|
} |
133 |
|
|
134 |
|
public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs) { |
135 |
|
this(fs, null); |
136 |
} |
} |
137 |
|
|
138 |
public void dispose() { |
public void dispose() { |
139 |
} |
} |
140 |
|
|
141 |
/** |
/** |
142 |
* Returnes human readable {@link String} of the CRS natively used by this |
* Returns human readable {@link String} of the CRS natively used by this |
143 |
* {@link DpLayer} |
* {@link DpLayer} |
144 |
* |
* |
145 |
* If crs == null, it will call {@link #getGeoObject()} |
* If CRS == null, it will call {@link #getGeoObject()} |
146 |
* |
* |
147 |
*/ |
*/ |
148 |
public String getCRSString() { |
public String getCRSString() { |
153 |
} |
} |
154 |
|
|
155 |
public CoordinateReferenceSystem getCrs() { |
public CoordinateReferenceSystem getCrs() { |
156 |
return fs.getSchema().getDefaultGeometry().getCoordinateSystem(); |
if (crs == null) { |
157 |
|
crs = fs.getSchema() |
158 |
|
.getCoordinateReferenceSystem(); |
159 |
|
if (fs.getSchema().getCoordinateReferenceSystem() == null) { |
160 |
|
LOGGER.warn("Could not determine the CRS of " + getTitle() |
161 |
|
+ ". Using default " + GeoImportUtil.getDefaultCRS()); |
162 |
|
crs = GeoImportUtil.getDefaultCRS(); |
163 |
|
} |
164 |
|
} |
165 |
|
return crs; |
166 |
} |
} |
167 |
|
|
168 |
public Translation getDesc() { |
public Translation getDesc() { |
178 |
} |
} |
179 |
} |
} |
180 |
|
|
181 |
public FeatureSource getGeoObject() { |
public FeatureSource<SimpleFeatureType, SimpleFeature> getGeoObject() { |
182 |
return fs; |
return fs; |
183 |
} |
} |
184 |
|
|
251 |
/** |
/** |
252 |
* |
* |
253 |
*/ |
*/ |
254 |
public Map<Integer, AttributeMetaData> getAttributeMetaDataMap() { |
public AttributeMetadataMap getAttributeMetaDataMap() { |
255 |
if (map == null) { |
if (map == null) { |
256 |
|
|
257 |
map = new HashMap<Integer, AttributeMetaData>(); |
map = new AttributeMetadataImplMap(); |
258 |
|
|
259 |
// Leaving out the first one, it will be the_geom |
// Leaving out the first one, it will be the_geom |
260 |
for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) { |
for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) { |
261 |
AttributeType att = fs.getSchema().getAttributeType(i); |
AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i); |
262 |
|
|
263 |
AttributeMetaData attMetaData = new AttributeMetaData(i, att |
AttributeMetadataImpl attMetaData = new AttributeMetadataImpl( new NameImpl(attDesc |
264 |
.getLocalName()); |
.getName().getNamespaceURI(), attDesc |
265 |
map.put(i, attMetaData); |
.getName().getLocalPart()), map.getLanguages()); |
266 |
|
map.put(attDesc.getName(), attMetaData); |
267 |
} |
} |
268 |
} |
} |
269 |
return map; |
return map; |
271 |
|
|
272 |
/** |
/** |
273 |
* @return The {@link File} where the SLD was loaded from or |
* @return The {@link File} where the SLD was loaded from or |
274 |
* <code>null</code> if there didn't exist a {@link File}. |
* <code>null</code> if there didn't exist a {@link File}. |
275 |
* |
* |
276 |
* @author <a href="mailto:[email protected]">Stefan Alfons |
* @author <a href="mailto:[email protected]">Stefan Alfons |
277 |
* Krüger</a> |
* Krüger</a> |
279 |
public File getSldFile() { |
public File getSldFile() { |
280 |
return sldFile; |
return sldFile; |
281 |
} |
} |
282 |
|
|
283 |
public void setSldFile(File sldFile) { |
public void setSldFile(File sldFile) { |
284 |
this.sldFile = sldFile; |
this.sldFile = sldFile; |
285 |
} |
} |
290 |
* @see {@link StyledFeaturesInterface} |
* @see {@link StyledFeaturesInterface} |
291 |
*/ |
*/ |
292 |
@Override |
@Override |
293 |
public FeatureCollection getFeatureCollection() { |
public FeatureCollection<SimpleFeatureType, SimpleFeature> getFeatureCollection() { |
294 |
FeatureCollection features; |
FeatureCollection<SimpleFeatureType, SimpleFeature> features; |
295 |
try { |
try { |
296 |
features = getGeoObject().getFeatures(); |
features = getGeoObject().getFeatures(); |
297 |
} catch (IOException e) { |
} catch (IOException e) { |
308 |
* @see {@link StyledFeaturesInterface} |
* @see {@link StyledFeaturesInterface} |
309 |
*/ |
*/ |
310 |
@Override |
@Override |
311 |
public FeatureSource getFeatureSource() { |
public FeatureSource<SimpleFeatureType, SimpleFeature> getFeatureSource() { |
312 |
return getGeoObject(); |
return getGeoObject(); |
313 |
} |
} |
314 |
|
|
315 |
|
@Override |
316 |
|
public FeatureCollection<SimpleFeatureType, SimpleFeature> getFeatureCollectionFiltered() { |
317 |
|
// final FeatureCollection<SimpleFeatureType, SimpleFeature> fc = |
318 |
|
// getFeatureCollection(); |
319 |
|
// if (filter == Filter.EXCLUDE) |
320 |
|
// return new EmptyFeatureCollection(fc.getSchema()); |
321 |
|
// if (filter == Filter.INCLUDE) |
322 |
|
// return fc; |
323 |
|
// return fc.subCollection(filter); |
324 |
|
|
325 |
|
try { |
326 |
|
return getFeatureSource().getFeatures(filter); |
327 |
|
} catch (IOException e) { |
328 |
|
throw new RuntimeException(e); |
329 |
|
} |
330 |
|
} |
331 |
|
|
332 |
|
@Override |
333 |
|
public Filter getFilter() { |
334 |
|
return filter; |
335 |
|
} |
336 |
|
|
337 |
|
@Override |
338 |
|
public void setFilter(Filter filter) { |
339 |
|
this.filter = filter; |
340 |
|
} |
341 |
|
|
342 |
|
@Override |
343 |
|
public SimpleFeatureType getSchema() { |
344 |
|
return getGeoObject().getSchema(); |
345 |
|
} |
346 |
|
|
347 |
} |
} |