Log of /branches/1.8-gt2-2.6/src
Directory Listing
Revision
67 -
Directory Listing
Modified
Mon Nov 23 15:49:35 2009 UTC
(15 years ago)
by
alfonx
Renamed XMapPane getContext to getMapContext (as in JMapPane)
Revision
66 -
Directory Listing
Modified
Thu Nov 19 09:57:42 2009 UTC
(15 years ago)
by
alfonx
Moved XMapPane from gtmig to skrueger.geotools in schmitzm
Revision
64 -
Directory Listing
Modified
Thu Nov 5 08:53:41 2009 UTC
(15 years, 1 month ago)
by
alfonx
new XMapPane and SelectableMapPane to replace and restructure JMapPanes
Revision
61 -
Directory Listing
Modified
Wed Oct 14 08:31:55 2009 UTC
(15 years, 2 months ago)
by
alfonx
* Removed some JavaVisualEditor annotations not used anymore.
Revision
60 -
Directory Listing
Modified
Sun Oct 4 16:54:52 2009 UTC
(15 years, 2 months ago)
by
alfonx
* organized imports
Revision
52 -
Directory Listing
Modified
Fri Sep 4 12:56:44 2009 UTC
(15 years, 3 months ago)
by
mojays
Geotools 2.6 migration. ArcGridRaster now taken from "gtmig" package in SCHMITZM.
ColorMap-type can be specified in GTVisualisationColorMapPlugin color map file.
NOW STABLE!
Revision
51 -
Directory Listing
Modified
Mon Aug 31 18:21:09 2009 UTC
(15 years, 3 months ago)
by
mojays
geotools 2.6 migration. NOT STABLE!
Revision
47 -
Directory Listing
Modified
Mon Aug 31 14:23:19 2009 UTC
(15 years, 3 months ago)
by
mojays
Branch 1.8-gt2-2.6 (from rev 45) for geotools 2.6 migration
Revision
45 -
Directory Listing
Modified
Mon Aug 31 14:20:01 2009 UTC
(15 years, 3 months ago)
by
mojays
Original Path:
trunk/src
Version 1.8
Revision
37 -
Directory Listing
Modified
Thu Jul 16 07:37:53 2009 UTC
(15 years, 5 months ago)
by
alfonx
Original Path:
trunk/src
* Created a new ManageChartsForMapDialog that allows to manage charts and define which chart is visible in which map. Besides, that saving the ChartSTyles is not implemented, you can now basically define and use the charts.
* Created a TransitionShapefileRenderer in schmitzm. It's a copy (extend was not possible) of a normal ShapefileRenderer class, but extended by a hack to fall back to the normal StreamingRenderer if a FeatureOperationTreeFilter is applied to a MapLayer.
* I have set this TransitionShapefileRenderer as default in JMapPane & Co.
* It's called "transition", because we will remove it as soon as we moved to GT 2.6 and switched the filters to eCQL.
Revision
36 -
Directory Listing
Modified
Tue Jul 14 15:46:14 2009 UTC
(15 years, 5 months ago)
by
alfonx
Original Path:
trunk/src
* big biG BIG refactoring: StyledMap[Interface,Util,Style] never dealt with Maps (=Orchestrations of layers), but always only with single Layers. Now it has been refactored to StyledLayer[Interface,Util,Style].
* Some variable names and methodNames have been corrected also, but many StyledLayer
* New JARs committed
Revision
35 -
Directory Listing
Modified
Mon Jul 6 10:40:01 2009 UTC
(15 years, 5 months ago)
by
alfonx
Original Path:
trunk/src
* Refactored
public static String getBaseFileName(File file) {
int extIdx = getFileExtIdx(file);
to
public static String getBaseFilePath(File file) {
int extIdx = getFileExtIdx(file);
because not only the name (as in File.getName() ) was returned, but the File.getPath() without the postfix. As i did refactoring, all references in Atlas, ISDSS, XULU and schmitzm should be changed to getBaseFilePath automatically.
* Created a method getBaseFileName(File file) that really just return the filename without it's extension.
Revision
34 -
Directory Listing
Modified
Mon Jun 22 10:23:25 2009 UTC
(15 years, 5 months ago)
by
mojays
Original Path:
trunk/src
missing constructor parameter added for GeoMapPane
Revision
33 -
Directory Listing
Modified
Fri Jun 19 14:20:37 2009 UTC
(15 years, 5 months ago)
by
alfonx
Original Path:
trunk/src
* Renamed classes:
LayerPanel to MapLegend (works on StyledObj)
AtlasLayerPanel to AtlasMapLegend (works on DpLayer)
LayerPanelGroup to MapLayerLegend (works on StyledObj)
AtlasLayerPanelGroup to AtlasMapLayerLegend (works on DpLayer)
Updated all JARs and committed them.
TODO: Some "ISDSS person" might want to rename:
de.isdss.util.framework.ui.panel.LayerPanelScrollPane to something like MapLegendScrollPane.java or FWMapLegendScrollPane.java
* Also committing some substitutions of "@returns" with "@return"
* Removed testsomethong.java from xulu
Revision
23 -
Directory Listing
Modified
Sat Mar 28 16:42:16 2009 UTC
(15 years, 8 months ago)
by
alfonx
Original Path:
trunk/src
The old code must have been a mistake, because it would have led to a NullPointerException. Eclipse showed me these...
Old:
if ( sfc != null || sfc.getFeatureCollection().size() > 0 ) {
FeatureCollection fc = sfc.getFeatureCollection();
New:
if ( sfc != null && sfc.getFeatureCollection().size() > 0 ) {
FeatureCollection fc = sfc.getFeatureCollection();
Revision
22 -
Directory Listing
Modified
Wed Mar 11 12:29:25 2009 UTC
(15 years, 9 months ago)
by
mojays
Original Path:
trunk/src
dependency of ADAGIOS library removed
Revision
21 -
Directory Listing
Modified
Thu Mar 5 17:17:15 2009 UTC
(15 years, 9 months ago)
by
mojays
Original Path:
trunk/src
GPL, LGLP copied to source folder
Revision
2 -
Directory Listing
Added
Wed Feb 25 11:54:01 2009 UTC
(15 years, 9 months ago)
by
mojays
Original Path:
trunk/src
First Commit, corresponds to Revision 1008 of Wikisquare-SVN