Revision 3005

View differences:

org.gvsig.raster/tags/org.gvsig.raster-2.2.5/closeVersions
1
#/bin/bash
2
#Pasos:
3
#1:Comprobar los números de versión de las variables y el password
4
#2:Comprobar que los buildnumber de los proyectos son correctos y están commitados
5
#3:Ejecutar este script
6
#4:Subir los instaladores que estarán dice $HOME/.gvsig-devel.properties
7

  
8
INCREMENT=3 #1:major number 2:minor number 3:bug number
9
USER=
10
PASS=
11

  
12
LIBRARIES="org.gvsig.raster.cache org.gvsig.toolbox"
13
MULTIPLAT_PLUGINS="org.gvsig.raster org.gvsig.raster.gdal org.gvsig.raster.ermapper org.gvsig.raster.lizardtech"
14
ALLPLAT_PLUGINS="org.gvsig.geoprocess org.gvsig.raster.tilecache org.gvsig.raster.tools org.gvsig.raster.georeferencing org.gvsig.raster.multifile org.gvsig.raster.netcdf org.gvsig.raster.osm org.gvsig.raster.postgis org.gvsig.raster.principalcomponents org.gvsig.raster.reproject org.gvsig.raster.wcs org.gvsig.raster.wms org.gvsig.raster.wmts"
15

  
16
WORKSPACE=. #QUITAR EN JENKINS
17
LOG=$HOME"/log-closeversions-"`date +%d%m%Y%H%M`".txt"
18

  
19
S0="https://devel.gvsig.org/svn/gvsig-raster"
20
S1="https://devel.gvsig.org/svn/gvsig-georeferencing"
21
S2="https://devel.gvsig.org/svn/gvsig-toolbox"
22
S3="https://devel.gvsig.org/svn/gvsig-osm"
23
S4="https://devel.gvsig.org/svn/gvsig-geoprocess"
24

  
25
PARAMETERS_LIN="-Dnative-platform=linux -Dnative-compiler=gcc4 -Dnative-arch=i386 -Dnative-distribution=all -Dlibrary-type=dynamic -Dnative_classifier=linux-all-gcc4-i386-dynamic -Dnative_classifier=linux-all-gcc4-i386-dynamic -Dmaven.test.skip"
26

  
27
PARAMETERS_WIN="-Dnative-platform=win -Dnative-compiler=vs8 -Dnative-arch=i386 -Dnative-distribution=win -Dlibrary-type=dynamic -Dnative_classifier=win-nt-vs8-i386-dynamic -Dnative_classifier=win-nt-vs8-i386-dynamic -Dmaven.test.skip"
28

  
29
PLUGINS=$MULTIPLAT_PLUGINS" "$ALLPLAT_PLUGINS
30
PROJECTS=$LIBRARIES" "$PLUGINS
31

  
32
LIBRARIES_SERVER=($S0 $S2)
33
MULTIPLAT_PLUGINS_SERVER=($S0 $S0 $S0 $S0)
34
ALLPLAT_PLUGINS_SERVER=($S4 $S0 $S0 $S1 $S0 $S0 $S3 $S0 $S0 $S0 $S0 $S0 $S0)
35
PLUGINS_SERVER=("${MULTIPLAT_PLUGINS_SERVER[@]}" "${ALLPLAT_PLUGINS_SERVER[@]}")
36
PROJECTS_SERVER=("${LIBRARIES_SERVER[@]}" "${PLUGINS_SERVER[@]}")
37

  
38

  
39
#******************************************
40
#               Checkout
41
#******************************************
42

  
43
cont=0;
44
for i in $PROJECTS;
45
do
46
#  svn checkout ${PROJECTS_SERVER[cont]}"/"$i"/trunk/"$i
47
  echo ${PROJECTS_SERVER[cont]}"/"$i"/trunk/"$i
48
#  cont=$((cont+1))
49
done
50

  
51
#exit;
52

  
53
#******************************************
54
#               Clean
55
#******************************************
56

  
57
echo "Cleaning..."$PROJECTS
58
for i in $PROJECTS;
59
do
60
  if [ ! -d $WORKSPACE/$i ];
61
  then
62
    continue;
63
  fi
64
  echo "Cambiando a..."$WORKSPACE/$i >> $LOG
65
  cd $WORKSPACE/$i
66
  #mvn clean >> $LOG
67
  #mvn release:clean >> $LOG
68
  cd ..
69
done
70

  
71
#exit;
72

  
73
#******************************************
74
#          Increase build number
75
#******************************************
76

  
77
if [ "$1" == "increasebn" ];
78
then
79
  for i in `ls`;
80
  do
81

  
82
    if [ -d $i ];
83
    then
84
      cd $i;
85
      mvn compile -Dincrease-build-number;
86
      cd ..
87
    fi
88

  
89
  done
90
fi
91

  
92
#******************************************
93
#          Commit build number
94
#******************************************
95

  
96
if [ "$1" == "commitbn" ];
97
then
98
  for i in `ls`;
99
  do
100

  
101
    if [ -d $i ];
102
    then
103
      cd $i;
104
      svn commit -m "New build number";
105
      cd ..
106
    fi
107

  
108
  done
109
fi
110

  
111
#******************************************
112
#          Get version
113
#******************************************
114

  
115
version() {
116
  VERSION_TO_FIX=`cat pom.xml | grep "<version>" | head -n 1 | sed 's/<version>//g' | sed 's/-SNAPSHOT<\/version>//g'`;
117
  MAJOR_NUMBER=`echo $VERSION_TO_FIX | cut -d"." -f 1`;
118
  MINOR_NUMBER=`echo $VERSION_TO_FIX | cut -d"." -f 2`;
119
  BUG_NUMBER=`echo $VERSION_TO_FIX | cut -d"." -f 3`;
120

  
121
  if [ $INCREMENT -eq 1 ]; then
122
    MAJOR_NUMBER=$((MAJOR_NUMBER+1));
123
  fi
124

  
125
  if [ $INCREMENT -eq 2 ]; then
126
    MINOR_NUMBER=$((MINOR_NUMBER+1));
127
  fi
128

  
129
  if [ $INCREMENT -eq 3 ]; then
130
    BUG_NUMBER=$((BUG_NUMBER+1));
131
  fi
132

  
133
  NEW_VERSION_VALUE=$MAJOR_NUMBER"."$MINOR_NUMBER"."$BUG_NUMBER"-SNAPSHOT";
134
}
135

  
136

  
137
cont=0
138
for i in $PROJECTS;
139
do
140
  if [ ! -d $WORKSPACE/$i ];
141
  then
142
    cont=$((cont+1))
143
    continue;
144
  fi
145

  
146
  cd $WORKSPACE/$i
147
  echo "Cambiando a..."$WORKSPACE/$i >> $LOG
148
  
149
  version
150
  echo $VERSION_TO_FIX
151
  echo $NEW_VERSION_VALUE
152

  
153
  #******************************************
154
  #               Prepare
155
  #******************************************
156

  
157
  mvn release:prepare -B -DdryRun=false -Dtag=$VERSION_TO_FIX -DreleaseVersion=$VERSION_TO_FIX -DdevelopmentVersion=$NEXT_VERSION_VALUE -DpreparationGoals="clean install" -Dusername=$USER -Dpassword=$PASS -DignoreSnapshots=true -Darguments=$PARAMETERS_LIN
158

  
159

  
160
  read -p "¿Prepare de $i correcto? ¿Continuar? s/n: " CONTINUE
161
  if [ "$CONTINUE" == "n" ]; then
162
    mvn release:rollback
163
    exit;
164
  fi
165
  
166
  #******************************************
167
  #               Perform
168
  #******************************************
169

  
170
  mvn release:perform -Dusername=$USER -Dpassword=$PASS -Darguments=$PARAMETERS_LIN
171

  
172
  read -p "¿Perform de $i correcto? ¿Continuar? s/n: " CONTINUE
173
  if [ "$CONTINUE" == "n" ]; then
174
    mvn release:rollback
175
    exit;
176
  fi
177

  
178
  cont=$((cont+1))
179
  cd ..
180
done
181

  
182

  
183
#******************************************
184
#            Windows Installer
185
#******************************************
186

  
187
cont=0;
188
for i in $MULTIPLAT_PLUGINS;
189
do
190
  #svn checkout ${MULTIPLAT_PLUGINS_SERVER[cont]}"/"$i"/tags/v"${MULTIPLAT_PLUGINS_VERSION[cont]}
191
  #cd v${MULTIPLAT_PLUGINS_VERSION[cont]}
192
  #mvn install $PARAMETERS_WIN
193
  #cd ..
194
  #rm v${MULTIPLAT_PLUGINS_VERSION[cont]} -rf
195
  cont=$((cont+1))
196
done
0 197

  
org.gvsig.raster/tags/org.gvsig.raster-2.2.5/distrib
1
#/bin/bash
2

  
3
#USER=
4
#PASS=
5

  
6
REPO="https://devel.gvsig.org/svn/gvsig-raster"
7

  
8
INCREMENT=3 #1:major number 2:minor number 3:bug number
9
export PARAMETERS_LIN="-Dnative-platform=linux -Dnative-compiler=gcc4 -Dnative-arch=i386 -Dnative-distribution=all -Dlibrary-type=dynamic -Dnative_classifier=linux-all-gcc4-i386-dynamic -Dnative_classifier=linux-all-gcc4-i386-dynamic -Dmaven.test.skip"
10
export PARAMETERS_LIN64="-Dnative-platform=linux64 -Dnative-compiler=gcc4 -Dnative-arch=x86_64 -Dnative-distribution=all -Dlibrary-type=dynamic -Dnative_classifier=linux-all-gcc4-X86_64-dynamic -Dnative_classifier=linux-all-gcc4-X86_64-dynamic -Dmaven.test.skip"
11
export PARAMETERS_WIN="-Dnative-platform=win -Dnative-compiler=vs8 -Dnative-arch=i386 -Dnative-distribution=win -Dlibrary-type=dynamic -Dnative_classifier=win-nt-vs8-i386-dynamic -Dnative_classifier=win-nt-vs8-i386-dynamic -Dmaven.test.skip"
12

  
13
VERSION_TO_FIX=`cat pom.xml | grep "<version>" | head -n 1 | sed 's/<version>//g' | sed 's/-SNAPSHOT<\/version>//g'`;
14
MAJOR_NUMBER=`echo $VERSION_TO_FIX | cut -d"." -f 1`;
15
MINOR_NUMBER=`echo $VERSION_TO_FIX | cut -d"." -f 2`;
16
BUG_NUMBER=`echo $VERSION_TO_FIX | cut -d"." -f 3`;
17

  
18
VERSION_TO_FIX=$MAJOR_NUMBER"."$MINOR_NUMBER"."$BUG_NUMBER
19

  
20
if [ $INCREMENT -eq 1 ]; then
21
  MAJOR_NUMBER=$((MAJOR_NUMBER+1));
22
fi
23

  
24
if [ $INCREMENT -eq 2 ]; then
25
  MINOR_NUMBER=$((MINOR_NUMBER+1));
26
fi
27

  
28
if [ $INCREMENT -eq 3 ]; then
29
  BUG_NUMBER=$((BUG_NUMBER+1));
30
fi
31

  
32
NEXT_DEV_VERSION=$MAJOR_NUMBER"."$MINOR_NUMBER"."$BUG_NUMBER"-SNAPSHOT"
33

  
34
#***********************************************
35
#       Fix version & linux 32 packaging
36
#***********************************************
37

  
38
#mvn release:prepare -B -DdryRun=false -Dtag=v$VERSION_TO_FIX -DreleaseVersion=$VERSION_TO_FIX -DdevelopmentVersion=$NEXT_DEV_VERSION -DpreparationGoals="clean install" -Dusername=$USER -Dpassword=$PASS -DignoreSnapshots=true -Darguments=$PARAMETERS_LIN
39

  
40
#read -p "¿Prepare de $i correcto? ¿Continuar? s/n: " CONTINUE
41
#if [ "$CONTINUE" == "n" ]; then
42
  #mvn release:rollback
43
  #exit;
44
#fi
45
  
46
#mvn release:perform -Dusername=$USER -Dpassword=$PASS -Darguments=$PARAMETERS_LIN
47

  
48
#read -p "¿Perform de $i correcto? ¿Continuar? s/n: " CONTINUE
49
#if [ "$CONTINUE" == "n" ]; then
50
  #mvn release:rollback
51
  #exit;
52
#fi
53

  
54
#***********************************************
55
#          Windows and Lin64 Installer
56
#***********************************************
57

  
58
svn checkout ${REPO}"/org.gvsig.raster/tags/v"${VERSION_TO_FIX}
59
cd v${VERSION_TO_FIX}
60
mvn install $PARAMETERS_WIN
61
mvn install $PARAMETERS_LIN64
62
cd ..
63
rm v${VERSION_TO_FIX} -rf
64

  
0 65

  
org.gvsig.raster/tags/org.gvsig.raster-2.2.5/org.gvsig.raster.app/org.gvsig.raster.app.lin.x86/buildNumber.properties
1
#Mon Oct 13 09:40:41 EDT 2014
2
buildNumber=14
org.gvsig.raster/tags/org.gvsig.raster-2.2.5/org.gvsig.raster.app/org.gvsig.raster.app.lin.x86/src/main/assembly/gvsig-plugin-package.xml
1
<!--
2

  
3
    gvSIG. Desktop Geographic Information System.
4

  
5
    Copyright (C) 2007-2013 gvSIG Association.
6

  
7
    This program is free software; you can redistribute it and/or
8
    modify it under the terms of the GNU General Public License
9
    as published by the Free Software Foundation; either version 3
10
    of the License, or (at your option) any later version.
11

  
12
    This program is distributed in the hope that it will be useful,
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
    GNU General Public License for more details.
16

  
17
    You should have received a copy of the GNU General Public License
18
    along with this program; if not, write to the Free Software
19
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
    MA  02110-1301, USA.
21

  
22
    For any additional information, do not hesitate to contact us
23
    at info AT gvsig.com, or visit our website www.gvsig.com.
24

  
25
-->
26
<assembly>
27
  <id>gvsig-plugin-package</id>
28
  <formats>
29
    <format>zip</format>
30
  </formats>
31
  <baseDirectory>${gvsig.package.info.code}</baseDirectory>
32
  <includeBaseDirectory>true</includeBaseDirectory>
33
  <files>
34
    <file>
35
      <source>target/package.info</source>
36
    </file>
37
  </files>
38

  
39
  <fileSets>
40
    <fileSet>
41
      <directory>target/org.gvsig.raster.app.common</directory>
42
      <outputDirectory>.</outputDirectory>
43
      <excludes>
44
      	<exclude>package.info</exclude>
45
      </excludes>
46
    </fileSet>
47
    <fileSet>
48
      <directory>target/native/lib</directory>
49
      <outputDirectory>native</outputDirectory>
50
    </fileSet>
51
    <fileSet>
52
      <directory>src/main/resources-plugin</directory>
53
      <outputDirectory>.</outputDirectory>
54
    </fileSet>
55
  </fileSets>
56

  
57

  
58
  <dependencySets>
59
    <dependencySet>
60
      <useProjectArtifact>false</useProjectArtifact>
61
      <useTransitiveDependencies>false</useTransitiveDependencies>
62
      <outputDirectory>lib</outputDirectory>
63
		<includes>
64
            <include>org.gvsig:org.gvsig.jpotrace:jar</include>
65
		</includes>
66
    </dependencySet>
67
  </dependencySets>
68

  
69
</assembly>
70

  
org.gvsig.raster/tags/org.gvsig.raster-2.2.5/org.gvsig.raster.app/org.gvsig.raster.app.lin.x86/src/main/resources-plugin/autorun.sh
1
#!/bin/sh
2
#
3
# gvSIG. Desktop Geographic Information System.
4
#
5
# Copyright (C) 2007-2013 gvSIG Association.
6
#
7
# This program is free software; you can redistribute it and/or
8
# modify it under the terms of the GNU General Public License
9
# as published by the Free Software Foundation; either version 3
10
# of the License, or (at your option) any later version.
11
#
12
# This program is distributed in the hope that it will be useful,
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
# GNU General Public License for more details.
16
#
17
# You should have received a copy of the GNU General Public License
18
# along with this program; if not, write to the Free Software
19
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
# MA  02110-1301, USA.
21
#
22
# For any additional information, do not hesitate to contact us
23
# at info AT gvsig.com, or visit our website www.gvsig.com.
24
#
25

  
26

  
27
#
28
# Plugin autorun
29
# 
30

  
31
PLUGIN_NAME=$(basename "$PLUGIN_FOLDER")
32

  
33
LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PLUGIN_FOLDER/native"
34
GVSIG_NATIVE_LIBS="$GVSIG_NATIVE_LIBS:$PLUGIN_FOLDER/native"
35

  
36

  
37

  
org.gvsig.raster/tags/org.gvsig.raster-2.2.5/org.gvsig.raster.app/org.gvsig.raster.app.lin.x86/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <artifactId>org.gvsig.raster.app.lin.x86</artifactId>
5
  <packaging>jar</packaging>
6
   
7
 	<parent>
8
		<groupId>org.gvsig</groupId>
9
		<artifactId>org.gvsig.raster.app</artifactId>
10
    <version>2.2.5</version>
11
	</parent>
12

  
13
  <properties>
14
    <gvsig.package.info.operatingSystem>lin</gvsig.package.info.operatingSystem>
15
    <gvsig.package.info.architecture>x86</gvsig.package.info.architecture>
16
    
17
    <jpotrace.classifier>linux-all-gcc4-i386-dynamic</jpotrace.classifier>
18
    <jpotrace.version>2.0.0</jpotrace.version>
19
  </properties>
20

  
21
  <dependencyManagement>
22
      <dependencies>
23
        <dependency>
24
          <groupId>org.gvsig</groupId>
25
          <artifactId>org.gvsig.jpotrace</artifactId>
26
          <classifier>${jpotrace.classifier}</classifier>
27
          <version>${jpotrace.version}</version>
28
          <type>tar.gz</type>
29
        </dependency> 
30
    </dependencies>
31
  </dependencyManagement>
32

  
33
  <dependencies>
34
        <dependency>
35
          <groupId>org.gvsig</groupId>
36
          <artifactId>org.gvsig.raster.app.common</artifactId>
37
          <type>zip</type>
38
        </dependency>
39
        <dependency>
40
          <groupId>org.gvsig</groupId>
41
          <artifactId>org.gvsig.jpotrace</artifactId>
42
          <scope>compile</scope>
43
        </dependency>
44
        <dependency>
45
          <groupId>org.gvsig</groupId>
46
          <artifactId>org.gvsig.jpotrace</artifactId>
47
          <classifier>${jpotrace.classifier}</classifier>
48
          <version>${jpotrace.version}</version>
49
          <type>tar.gz</type>
50
          <scope>runtime</scope>
51
        </dependency>
52
  </dependencies>
53

  
54
  <build>
55
    <plugins>
56
  
57
      <plugin>
58
        <groupId>org.apache.maven.plugins</groupId>
59
        <artifactId>maven-dependency-plugin</artifactId>
60
        <executions>
61
          <execution>
62
          	<id>unpack</id>
63
	        <phase>process-sources</phase>
64
	        <goals>
65
	          <goal>unpack</goal>
66
	        </goals>
67
	        <configuration>
68
	          <artifactItems>
69
	            <artifactItem>
70
		            <groupId>org.gvsig</groupId>
71
		            <artifactId>org.gvsig.raster.app.common</artifactId>
72
		            <type>zip</type>
73
					      <overWrite>true</overWrite>
74
					      <outputDirectory>target</outputDirectory>
75
	            </artifactItem>
76
	            <artifactItem>
77
		            <groupId>org.gvsig</groupId>
78
                <artifactId>org.gvsig.jpotrace</artifactId>
79
                <classifier>${jpotrace.classifier}</classifier>
80
                <version>${jpotrace.version}</version>
81
		            <type>tar.gz</type>
82
					      <overWrite>true</overWrite>
83
					      <outputDirectory>target/native</outputDirectory>
84
	            </artifactItem>
85
	          </artifactItems>
86
	        </configuration>
87
          </execution>
88
        </executions>
89
	  </plugin>
90
  
91
  
92
    </plugins>
93
  </build>
94

  
95
  <!-- 
96
  The profiles only configure the automatic deploy of gvSIG plugin in the gvSIG
97
  configured in HOME/.gvsig-devel.properties
98
  -->
99
  <profiles>
100
  
101
    <profile>
102
      <id>gvsig-plugin-install-raster-linux-x86</id>
103
      <activation>
104
         <os>
105
             <family>unix</family>
106
             <name>linux</name>
107
             <arch>x86</arch>
108
         </os>
109
      </activation>
110
	    <properties>
111
	      <gvsig.install.plugin>true</gvsig.install.plugin>
112
	    </properties>
113
    </profile>
114

  
115
    <profile>
116
      <id>gvsig-plugin-install-raster-linux-i386</id>
117
      <activation>
118
         <os>
119
             <family>unix</family>
120
             <name>linux</name>
121
             <arch>i386</arch>
122
         </os>
123
      </activation>
124
      <properties>
125
         <gvsig.install.plugin>true</gvsig.install.plugin>
126
      </properties>
127
    </profile>
128

  
129
  </profiles>
130
  
131
</project>
132

  
0 133

  
org.gvsig.raster/tags/org.gvsig.raster-2.2.5/org.gvsig.raster.app/org.gvsig.raster.app.common/buildNumber.properties
1
#Mon Oct 13 09:40:41 EDT 2014
2
buildNumber=14
org.gvsig.raster/tags/org.gvsig.raster-2.2.5/org.gvsig.raster.app/org.gvsig.raster.app.common/src/main/resources-plugin/scripting/lib/gvsig_raster.py
1
from gvsig import *
2
from org.gvsig.fmap.dal import DALLocator
3
from org.gvsig.fmap.mapcontext import MapContextLocator
4
from org.gvsig.fmap.dal.coverage import RasterLocator
5
from org.gvsig.fmap.dal.coverage.store.parameter import NewRasterStoreParameters
6
from org.gvsig.fmap.dal.coverage.dataset import Buffer
7
from org.gvsig.fmap.dal.serverexplorer.filesystem import FilesystemServerExplorer
8
from org.gvsig.raster.fmap.layers import FLyrRaster
9
from java.lang import Byte,Short,Integer,Float,Double
10
from java.io import File
11
from java.awt.geom import AffineTransform
12
import os
13

  
14
from os.path import splitext
15

  
16
global sourceFileName
17
sourceFileName = []
18
sourceFileName.append(None)
19

  
20

  
21
##
22
#
23
# Loads the raster layer given the filepath
24
#
25
# @params rasterfile the filename of the input layer
26
#
27
# @returns None loads the raster layer 
28
def loadRasterLayer (rasterfile, mode = "r" ):
29
    ## Load a Raster file in a Layer
30
    sourceFileName[0]=rasterfile
31
    if not isinstance (rasterfile,File):
32
        rasterfile = File(rasterfile)
33

  
34
    name, ext = splitext(rasterfile.getName())
35

  
36
    view = currentView()
37
  
38
    # Get the manager to use
39
    dalManager = DALLocator.getDataManager()
40
    mapContextManager = MapContextLocator.getMapContextManager()
41

  
42
    if ext.lower() == ".ecw" or ext.lower() == ".jp2" :
43
        # FIXME
44
        pass
45
    elif ext.lower() == ".mrsid":
46
        # FIXME
47
        pass
48
    else:
49
        # Create the parameters to open the raster store based in GDAL
50
        params = dalManager.createStoreParameters("Gdal Store")
51
        params.setFile(rasterfile)
52

  
53
    # Create the raster store
54
    dataStore = dalManager.createStore(params)
55

  
56
    # Create a raster layer based in this raster store
57
    layer = mapContextManager.createLayer(name, dataStore);
58

  
59
    view.addLayer(layer)
60
    return layer
61

  
62

  
63
## @cond FALSE
64
rasterLayerExtensions = dict ()
65

  
66

  
67
class RasterLayerExtensions(object):
68
    ##This class hold aditional properties and operations need to manage the scripting raster layer
69
    def __init__(self, store=None):
70
        self.store = store
71
        self.buffer = None
72
        self.query = None
73
        self.values = None
74
        self.kernel = None
75
        self.setElem = None
76
        self.getElem = None
77

  
78
    def prepareQuery(self):
79
        ## See RasterManager in javadocs for more info
80
        self.query = RasterLocator.getManager().createQuery();
81
        ## See RasterQuery in javadocs for more
82
        self.query.setAllDrawableBands()
83
        self.query.setAreaOfInterest()
84
        self.buffer = None
85
        self.values = None
86
        self.kernel = None
87

  
88
    def loadStore (self,rasterfile, mode = "r" ):
89
        if not isinstance(rasterfile,File):
90
            rasterfile = File(rasterfile)
91

  
92
        name, ext = splitext(rasterfile.getName())
93

  
94
        dalManager = DALLocator.getDataManager()
95

  
96
        if ext.lower() == ".ecw" or ext.lower() == ".jp2" :
97
           # FIXME
98
           pass
99
        elif ext.lower() == ".mrsid":
100
           # FIXME
101
           pass
102
        else:
103
           # Create the parameters to open the raster store based in GDAL
104
           params = dalManager.createStoreParameters("Gdal Store")
105
           params.setFile(rasterfile)
106

  
107
        # Create the raster store
108
        dataStore = dalManager.createStore(params)
109
        return dataStore
110

  
111
    def createBuffer(self):
112
        if sourceFileName[0] == None:
113
            self.buffer = self.store.query(self.getQuery())
114
        else:
115
            queryStore = self.loadStore(sourceFileName[0])
116
            self.buffer = queryStore.query(self.getQuery())
117
        #print self.buffer.getBandCount()
118

  
119
    def createNewBuffer(self,width, height, bandcount, datatype):
120
        if self.store != None:
121
            raise RuntimeException("Can't create a new buffer associated to a store")
122

  
123
        # FIXME: workaround to work with a jython bug passing byte, short and
124
        # double values as parameters
125
        if datatype in (Buffer.TYPE_BYTE, Buffer.TYPE_SHORT, Buffer.TYPE_INT):
126
            datatype = Buffer.TYPE_INT
127
        else:
128
            datatype = Buffer.TYPE_FLOAT
129
        # End workaround
130

  
131
        #print "---->>>>Buffer", datatype, width, height, bandcount
132
        self.buffer = RasterLocator.getManager().createBuffer(
133
            int(datatype),
134
            int(width),
135
            int(height),
136
            int(0 if bandcount is None else bandcount),
137
            True
138
        )
139
        self.prepareBuffer(self.buffer)
140

  
141
    def prepareBuffer(self, buffer):
142
        def setElemByte(buffer, line, col, band, data):
143
            buffer.setElem(line, col, band, Byte(data).byteValue())
144

  
145
        def setElemShort (buffer, line, col, band, data):
146
            buffer.setElem(line, col, band, Short(data).shortValue())
147

  
148
        def setElemInt(buffer, line, col, band, data):
149
            buffer.setElem(line, col, band, Integer(data).intValue())
150

  
151
        def setElemFloat(buffer, line, col, band, data):
152
            buffer.setElem(line, col, band, Float(data).floatValue())
153

  
154
        def setElemDouble(buffer, line, col, band, data):
155
            buffer.setElem(line, col, band, Double(data).doubleValue())
156

  
157
        t = buffer.getDataType()
158
        if t == Buffer.TYPE_BYTE:
159
            self.getElem = buffer.getElemByte
160
            self.setElem = setElemByte
161
        elif t == Buffer.TYPE_SHORT or t == Buffer.TYPE_USHORT:
162
            self.getElem = buffer.getElemShort
163
            self.setElem = setElemShort
164
        elif t == Buffer.TYPE_INT:
165
            self.getElem = buffer.getElemInt
166
            self.setElem = setElemInt
167
        elif t == Buffer.TYPE_FLOAT:
168
            self.getElem = buffer.getElemFloat
169
            self.setElem = setElemFloat
170
        elif t == Buffer.TYPE_DOUBLE:
171
            self.getElem = buffer.getElemDouble
172
            self.setElem = setElemDouble
173
        #print buffer.getBandCount()
174
        self.values = [0 for count in range(buffer.getBandCount())]
175
        self.kernel = [[self.values for count in range(3)] for count in range(3)]
176

  
177
    def getQuery(self):
178
        if self.query == None:
179
            self.prepareQuery()
180
        return self.query
181

  
182
    def getBuffer(self, store):
183
        if self.buffer == None:
184
            self.createBuffer()
185
            self.prepareBuffer(self.buffer)
186
        return self.buffer
187

  
188
    def setValue(self, band, line, col, data):
189
        t = self.buffer.getDataType()
190
        if t == Buffer.TYPE_BYTE:
191
           self.buffer.setElem(line, col, band, Byte(data).byteValue())
192
        elif t == Buffer.TYPE_SHORT or t == Buffer.TYPE_USHORT:
193
            self.buffer.setElem(line, col, band, Short(data).shortValue())
194
        elif t == Buffer.TYPE_INT:
195
            self.buffer.setElem(line, col, band, Integer(data).intValue())
196
        elif t == Buffer.TYPE_FLOAT:
197
            self.buffer.setElem(line, col, band, Float(data).floatValue())
198
        elif t == Buffer.TYPE_DOUBLE:
199
            self.buffer.setElem(line, col, band, Double(data).doubleValue())
200

  
201
    def getValue(self, band, row, column):
202
        if self.getElem == None:
203
            self.createBuffer()
204
            self.prepareBuffer(self.buffer)
205
        return self.getElem(row, column, band)
206

  
207
    def getBandValues(self, row, column):
208
        if self.getElem == None:
209
            self.createBuffer()
210
            self.prepareBuffer(self.buffer)
211
        for b in xrange(self.buffer.getBandCount()):
212
            self.values[b] = self.getElem(row, column, b)
213
        return self.values
214
    
215
    def setBandValues(self,row,column,values):
216
        for b in xrange(self.buffer.getBandCount()):
217
            self.setElem(self.buffer, row, column, b, values[b])
218

  
219
    def saveBuffer(self,filename):
220
        manager = DALLocator.getDataManager ()
221
        eparams = manager.createServerExplorerParameters(FilesystemServerExplorer.NAME)
222
        eparams.setDynValue("initialpath",os.path.dirname(sourceFileName[0]))
223
        serverExplorer = manager.openServerExplorer(eparams.getExplorerName(),eparams)
224

  
225
        sparams = serverExplorer.getAddParameters("Gdal Store")
226
        sparams.setDestination(os.path.dirname(sourceFileName[0]),filename)
227
        sparams.setBuffer(self.buffer)
228
        #at = AffineTransform(1, 0, 0, -1, 0, 0)
229
        #sparams.setAffineTransform(at);
230

  
231
        serverExplorer.add("Gdal Store", sparams, True)
232

  
233
## @endcond
234

  
235
##
236
#
237
# Represents a raster layer.
238
#
239
class RasterLayer(FLyrRaster):
240
    TYPE_BYTE = Buffer.TYPE_BYTE
241
    TYPE_SHORT = Buffer.TYPE_SHORT
242
    TYPE_INT = Buffer.TYPE_INT
243
    TYPE_FLOAT = Buffer.TYPE_FLOAT
244
    TYPE_DOUBLE = Buffer.TYPE_DOUBLE
245

  
246
    @staticmethod
247
    ## @cond FALSE
248
    def getExtensions(self):
249
        ## This is a internal method, don't use it.
250

  
251
        global rasterLayerExtensions
252
        extensions = rasterLayerExtensions.get(self.hashCode(), None)
253
        if extensions == None:
254
            extensions = RasterLayerExtensions(self.getDataStore())
255
            rasterLayerExtensions[self.hashCode()] = extensions
256
        return extensions
257
    ## @endcond
258

  
259
    @staticmethod
260
    ##
261
    #
262
    # Return the number of bands of the raster
263
    #
264
    # @param self The raster layer object
265
    #
266
    # @return the number of bands of the raster layer
267
    #
268
    def getBandsCount(self):
269
        return self.getDataStore().getBandCount()
270

  
271
    @staticmethod
272
    ##
273
    #
274
    # Return the width in points/pixels of the raster
275
    #
276
    # @param self The raster layer object
277
    #
278
    # @return the width of the raster
279
    #
280
    def getWidth(self):
281
        return self.getDataStore().getWidth()
282

  
283
    @staticmethod
284
    ##
285
    #
286
    # Return the height in points/pixels of the raster
287
    #
288
    # @param self The raster layer object
289
    #
290
    # @return the height of the raster
291
    def getHeight(self):
292
        return self.getDataStore().getHeight()
293

  
294
    @staticmethod
295
    ##
296
    #
297
    # Return the data type of the raster
298
    #
299
    # TYPE_BYTE = Byte datatype
300
    #
301
    # TYPE_USHORT  = Unsigned Short datatype
302
    #
303
    # TYPE_SHORT = Signed Short datatype
304
    #
305
    # TYPE_INT = Integer datatype
306
    #
307
    # TYPE_FLOAT = Float Datatype
308
    #
309
    # TYPE_DOUBLE = Double Datatype
310
    #
311
    # @param self The raster layer object
312
    #
313
    # @return the datatype of the raster layer
314
    def getDataType(self):
315
        return self.getDataStore().getDataType()
316

  
317
    @staticmethod
318
    ##
319
    #
320
    # Return the value of a point of a "band" from "row" and "coulmn" of
321
    # the Raster.
322
    #
323
    # This method use with care, it has a strong overhead. Use instead
324
    # the method "walk" to go over the raster.
325
    #
326
    # @param band band from which the value should be retrieved
327
    # @param row row in the raster from which the value should be retrieved
328
    # @param column column in the raster from which the value should be retrieved
329
    #
330
    # @return the value of a point/pixel of a "band" from "row" and "column" of the Raster
331
    #
332
    def getData(self, band, row, column):
333
        return self.getExtensions().getValue(band, row, column)
334

  
335
    @staticmethod
336
    ##
337
    #
338
    # Go over the raster and for each point call to the function
339
    # "operation" and pass as argument a tuple with the values of
340
    # the point for each band.
341
    #
342
    # This method don't return any value
343
    #
344
    # @param self pointer to the Layer object
345
    # @param operation any operation which operates on the raster point-by-point
346
    #
347
    # @return None
348
    #
349
    def walk(self, operation):
350
        extension = self.getExtensions()
351
        store = self.getDataStore()
352
        sourceExtension = RasterLayerExtensions()
353
        sourceExtension.createNewBuffer(store.getWidth(), store.getHeight(), store.getBandCount(), store.getDataType())
354
        
355
        for band in xrange(store.getBandCount()):
356
            for line in xrange(store.getHeight()):
357
                for column in xrange(store.getWidth()):
358
                    operation(extension.getBandValues(line, column))
359
                    
360

  
361
    @staticmethod
362
    ##
363
    #
364
    # Go over the raster and for each point, taking the neighbour points
365
    # as a kernel(3x3) call to the function "operation" and pass as argument a
366
    # tuple with the values of all the points in the kernel for each band.
367
    #
368
    # This method don't return any value
369
    #
370
    # @param self pointer to the Layer object
371
    # @param operation any operation which operates on the raster by a kernel(3x3).
372
    #
373
    # @return None
374
    #
375
    def walkKernel(self, operation):
376
        extension = self.getExtensions()
377
        store = self.getDataStore()
378
        sourceExtension = RasterLayerExtensions()
379
        sourceExtension.createNewBuffer(store.getWidth(), store.getHeight(), store.getBandCount(), store.getDataType())
380
        
381
        k=0
382
        l=0
383
        values = [0 for count in xrange(store.getBandCount())]
384
        values = [[values for count in xrange(3)] for count in xrange(3)]
385
        outValues = list()
386
        for band in xrange(store.getBandCount()):
387
            for line in xrange(1,store.getHeight()-1):
388
                for column in xrange(1,store.getWidth()-1):
389
                    
390
                    i=0
391
                    for k in xrange(line-1,line+2):
392
                        j=0
393
                        for l in xrange(column-1,column+2):
394
                            values[i][j]=extension.getBandValues(k,l)
395
                            j=j+1
396
                        i=i+1
397
                    operation(values)
398
                    
399

  
400
    @staticmethod
401
    ##
402
    #
403
    # Go over the raster and for each point call to the function "filter1"
404
    # and pass as argument a tuple with the values of all the points in the
405
    # kernel for each band.
406
    #
407
    # The function "filter1" must be such that it takes a tuple, modifies its value
408
    # and returns a new tuple.
409
    #
410
    # This method saves the newly created(filter applied) layer to "targetfilename"
411
    #
412
    # @param self pointer to the Layer object
413
    # @param filter1 any filter which modifies the raster layer point-by-point
414
    # @param targetfilename filename to which the output layer should be saved
415
    # @param targetdatatype datatype of which the output layer to be saved (use only TYPE_INT,TYPE_BYTE or TYPE_SHORT as of now)
416
    # @param targetbandcount number of bands in the output layer
417
    #
418
    # @return saves the created layer to "targetfilename" in the current directory
419
    #
420
    def filter(self, filter1, targetfilename, targetdatatype=None, targetbandcount=None):
421
        extension = self.getExtensions()
422
        store = self.getDataStore()
423
        targetExtension = RasterLayerExtensions()
424
        #targetExtension.createNewBuffer(store.getWidth(), store.getHeight(), store.getBandCount(), store.getDataType())
425
        targetExtension.createNewBuffer(store.getWidth(), store.getHeight(), targetbandcount, targetdatatype)
426

  
427
        for band in xrange(store.getBandCount()):
428
            for line in xrange(store.getHeight()):
429
                for column in xrange(store.getWidth()):
430
                    values = filter1(extension.getBandValues(line,column))
431
                    targetExtension.setBandValues(line, column, values)
432

  
433
        targetExtension.saveBuffer(targetfilename)
434

  
435
    @staticmethod
436
    ##
437
    #
438
    # Go over the raster and for each point, taking the neighbour points
439
    # as a kernel(3x3) call to the function "filter1" and pass as argument
440
    # a tuple with the values of all the points in the kernel for each band.
441
    #
442
    # The function "filter1" must be such that it takes a tuple of multi-dimension,
443
    # modifies its value and returns a new tuple having dimensions same as input.
444
    #
445
    # This method saves the newly created(filter applied) layer to "targetfilename"
446
    #
447
    # @param self pointer to the Layer object
448
    # @param filter1 any filter which modifies the raster layer using a kernel(3x3).
449
    # @param targetfilename filename to which the output layer should be saved
450
    # @param targetdatatype datatype of which the output layer to be saved (use only TYPE_INT,TYPE_BYTE or TYPE_SHORT as of now)
451
    # @param targetbandcount number of bands in the output layer
452
    #
453
    # @return saves the created layer to "targetfilename" in the current directory
454
    #
455
    def filterKernel(self, filter1, targetfilename, targetdatatype=None, targetbandcount=None):
456
        extension = self.getExtensions()
457
        store = self.getDataStore()
458
        targetExtension = RasterLayerExtensions()
459
        #targetExtension.createNewBuffer(store.getWidth(), store.getHeight(), store.getBandCount(), store.getDataType())
460
        targetExtension.createNewBuffer(store.getWidth(), store.getHeight(), targetbandcount, targetdatatype)
461

  
462
        k=0
463
        l=0
464
        values = [0 for count in xrange(store.getBandCount())]
465
        values = [[values for count in xrange(3)] for count in xrange(3)]
466
        outValues = list()
467
        for band in xrange(store.getBandCount()):
468
            for line in xrange(1,store.getHeight()-1):
469
                for column in xrange(1,store.getWidth()-1):
470
                    
471
                    i=0
472
                    for k in xrange(line-1,line+2):
473
                        j=0
474
                        for l in xrange(column-1,column+2):
475
                            values[i][j]=extension.getBandValues(k,l)
476
                            j=j+1
477
                        i=i+1
478
                    outValues = filter1(values)
479
                    targetExtension.setBandValues(line, column, outValues)
480

  
481
        targetExtension.saveBuffer(targetfilename)
482
                    
483
    @staticmethod
484
    ##
485
    #
486
    # Go over the raster layer and for each point call to the function "operation" and
487
    # pass as arguments two tuples (One corresponding to the first layer at that point,
488
    # the other corresponding to the second layer at the same point) with the values of
489
    # each point for each band.
490
    #
491
    # The function "operation" must be such that it takes two tuples as input, performs
492
    # operations involving both of them and returns a new tuple.
493
    #
494
    # This method saves the newly created(from the two rasters) layer to "targetfilename"
495
    #
496
    # @param self pointer to the Layer object
497
    # @param operation any operation which operates on both the raster layers at a respective point/pixel.
498
    # @param layer2 the layer which forms the second input to the "operation" function.
499
    # @param targetfilename filename to which the output layer should be saved
500
    # @param targetdatatype datatype of which the output layer to be saved (use only TYPE_INT,TYPE_BYTE or TYPE_SHORT as of now)
501
    #
502
    # @return saves the created layer to "targetfilename" in the current directory
503
    #
504
    def operation(self, operation, layer2, targetfilename, targetdatatype=None):
505
        layer1Extension = self.getExtensions()
506
        layer2Extension = layer2.getExtensions()
507

  
508
        layer1Store = self.getDataStore()
509
        layer2Store = layer2.getDataStore()
510

  
511
        bandCount = layer1Store.getBandCount()
512
        layerWidth = layer1Store.getWidth()
513
        layerHeight = layer1Store.getHeight()
514
        targetExtension = RasterLayerExtensions()
515
        resultValues = list()
516
        #targetExtension.createNewBuffer(layerWidth, layerHeight, bandCount, layer1Store.getDataType())
517
        targetExtension.createNewBuffer(layerWidth, layerHeight, bandCount, targetdatatype)
518

  
519
        for band in xrange(bandCount):
520
            for line in xrange(layerHeight):
521
                for column in xrange(layerWidth):
522
                    layer1Values = layer1Extension.getBandValues(line, column)
523
                    layer2Values = layer2Extension.getBandValues(line, column)
524
                    resultValues = operation(layer1Values, layer2Values)
525
                    targetExtension.setBandValues(line, column, resultValues)
526

  
527
        targetExtension.saveBuffer(targetfilename)
528

  
529
    @staticmethod
530
    ##
531
    #
532
    # Go over the raster layer and for each point, taking the neighbour points as a
533
    # kernel(3x3) call to the function "operation" and pass as arguments two tuples
534
    # (One corresponding to the first layer at that point, the other corresponding
535
    # to the second layer at the same point) with the values of all the points of the
536
    # kernel for each band.
537
    #
538
    # The function "operation" must be such that it takes two tuples of multiple
539
    # dimensions as input, performs operations involving both of them and returns a
540
    # new tuple having dimensions same as input tuples.
541
    #
542
    # This method saves the newly created(from the two rasters) layer to "targetfilename"
543
    #
544
    # @param self pointer to the Layer object
545
    # @param operation any operation which operates on both the raster layers at a respective point/pixel but involving kernel(3x3)[neighbour points].
546
    # @param layer2 the layer which forms the second input to the "operation" function.
547
    # @param targetfilename filename to which the output layer should be saved
548
    # @param targetdatatype datatype of which the output layer to be saved (use only TYPE_INT,TYPE_BYTE or TYPE_SHORT as of now)
549
    #
550
    # @return saves the created layer to "targetfilename" in the current directory
551
    #
552
    def operationKernel(self, operation, layer2, targetfilename, targetdatatype=None):
553
        layer1Extension = self.getExtensions()
554
        layer2Extension = self.getExtensions()
555

  
556
        layer1Store = self.getDataStore()
557
        layer2Store = layer2.getDataStore()
558

  
559
        bandCount = layer1Store.getBandCount()
560
        layerWidth = layer1Store.getWidth()
561
        layerHeight = layer1Store.getHeight()
562
        targetExtension = RasterLayerExtensions()
563
        #targetExtension.createNewBuffer(layerWidth, layerHeight, bandCount, layer1Store.getDataType())targetExtension.createNewBuffer(layerWidth, layerHeight, bandCount, layer1Store.getDataType())
564
        targetExtension.createNewBuffer(layerWidth, layerHeight, bandCount, targetdatatype)
565

  
566
        k=0
567
        l=0
568
        values1 = [[[None for count in range(bandCount)] for count in range(3)] for count in range(3)]
569
        values2 = [[[None for count in range(bandCount)] for count in range(3)] for count in range(3)]
570
        outValues = list()
571
        for band in xrange(bandCount):
572
            for line in xrange(1,layerHeight-1):
573
                for column in xrange(1,layerWidth-1):
574

  
575
                    i=0
576
                    for k in xrange(line-1,line+2):
577
                        j=0
578
                        for l in xrange(column-1,column+2):
579
                            values1[i][j]=layer1Extension.getBandValues(k,l)
580
                            #print i,j,values1[i][j]
581
                            #print values1
582
                            values2[i][j]=layer2Extension.getBandValues(k,l)
583
                            j=j+1
584
                        i=i+1
585

  
586
                    outValues = operation(values1, values2)
587
                    i=0
588
                    for k in xrange(line-1,line+2):
589
                        j=0
590
                        for l in xrange(column-1,column+2):
591
                            targetExtension.setBandValues(k,l, outValues[i][j])
592
                            j=j+1
593
                        i=i+1
594

  
595
        targetExtension.saveBuffer(targetfilename)
596
        
597

  
598
#
599
# Inject new methods in the class FLyrRaster
600
#
601
FLyrRaster.getExtensions = RasterLayer.getExtensions
602
FLyrRaster.getBandsCount = RasterLayer.getBandsCount
603
FLyrRaster.getWidth = RasterLayer.getWidth
604
FLyrRaster.getHeight = RasterLayer.getHeight
605
FLyrRaster.getDataType = RasterLayer.getDataType
606
FLyrRaster.getData = RasterLayer.getData
607
FLyrRaster.walk = RasterLayer.walk
608
FLyrRaster.walkKernel = RasterLayer.walkKernel
609
FLyrRaster.filter = RasterLayer.filter
610
FLyrRaster.filterKernel = RasterLayer.filterKernel
611
FLyrRaster.operation = RasterLayer.operation
612
FLyrRaster.operationKernel = RasterLayer.operationKernel
org.gvsig.raster/tags/org.gvsig.raster-2.2.5/org.gvsig.raster.app/org.gvsig.raster.app.common/src/main/resources-plugin/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
 <depends plugin-name="org.gvsig.app" />
4
 <depends plugin-name="org.gvsig.app.document.table.app.mainplugin" />
5
	<resourceBundle name="text"/>
6
	<libraries library-dir="lib"/>
7
	<extensions>
8
		<extension class-name="org.gvsig.raster.mainplugin.RasterMainPluginExtension"
9
			description="" 
10
			active="true" 
11
			priority="1">
12
		</extension>	
13
		<extension class-name="org.gvsig.raster.mainplugin.GenericToolBarExtension"
14
			description="" 
15
			active="true" 
16
			priority="1">
17
		</extension>
18
	</extensions>
19
</plugin-config>
org.gvsig.raster/tags/org.gvsig.raster-2.2.5/org.gvsig.raster.app/org.gvsig.raster.app.common/src/main/resources-plugin/org/gvsig/raster/mainplugin/i18n/text.properties
1
capa_raster=Capa Raster
2
process_raster=Procesos Raster
3
multispectral=Multiespectral
4
enhanced=Realce
5
transformaciones_geograficas=Transformaciones geograficas
6
raster_export=Exportar Raster
7
dataset_raster=Conjunto de datos raster
org.gvsig.raster/tags/org.gvsig.raster-2.2.5/org.gvsig.raster.app/org.gvsig.raster.app.common/src/main/resources-plugin/org/gvsig/raster/mainplugin/i18n/text_en.properties
1
capa_raster=Raster layer
2
process_raster=Raster process
3
multispectral=Multispectral
4
enhanced=Enhanced
5
transformaciones_geograficas=Geographic transformations
6
raster_export=Export to raster
7
dataset_raster=Raster dataset
org.gvsig.raster/tags/org.gvsig.raster-2.2.5/org.gvsig.raster.app/org.gvsig.raster.app.common/src/main/assembly/gvsig-plugin-package.xml
1
<!--
2

  
3
    gvSIG. Desktop Geographic Information System.
4

  
5
    Copyright (C) 2007-2013 gvSIG Association.
6

  
7
    This program is free software; you can redistribute it and/or
8
    modify it under the terms of the GNU General Public License
9
    as published by the Free Software Foundation; either version 3
10
    of the License, or (at your option) any later version.
11

  
12
    This program is distributed in the hope that it will be useful,
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
    GNU General Public License for more details.
16

  
17
    You should have received a copy of the GNU General Public License
18
    along with this program; if not, write to the Free Software
19
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
    MA  02110-1301, USA.
21

  
22
    For any additional information, do not hesitate to contact us
23
    at info AT gvsig.com, or visit our website www.gvsig.com.
24

  
25
-->
26
<assembly>
27
  <id>gvsig-plugin-package</id>
28
  <formats>
29
    <format>zip</format>
30
  </formats>
31
  <baseDirectory>${project.artifactId}</baseDirectory>
32
  <includeBaseDirectory>true</includeBaseDirectory>
33
  <files>
34
    <file>
35
      <source>target/${project.artifactId}-${project.version}.jar</source>
36
      <outputDirectory>lib</outputDirectory>
37
    </file>
38
    <file>
39
      <source>target/package.info</source>
40
    </file>
41
  </files>
42

  
43
  <fileSets>
44
    <fileSet>
45
      <directory>src/main/resources-plugin</directory>
46
      <outputDirectory>.</outputDirectory>
47
    </fileSet>
48
  </fileSets>
49

  
50

  
51
  <dependencySets>
52
    <dependencySet>
53
      <useProjectArtifact>false</useProjectArtifact>
54
      <useTransitiveDependencies>false</useTransitiveDependencies>
55
      <outputDirectory>lib</outputDirectory>
56
		  <includes>
57
		    <include>org.gvsig:org.gvsig.raster.swing.api:jar</include>
58
		    <include>org.gvsig:org.gvsig.raster.swing.impl:jar</include>
59
		    <include>org.gvsig:org.gvsig.raster.cache.lib.api:jar</include>
60
		    <include>org.gvsig:org.gvsig.raster.cache.lib.impl:jar</include>
61
		    <include>org.gvsig:org.gvsig.raster.lib.api:jar</include>
62
		    <include>org.gvsig:org.gvsig.raster.lib.impl:jar</include>
63
		    <include>org.gvsig:org.gvsig.raster.algorithm:jar</include>
64
		    <include>org.gvsig:org.gvsig.raster.fmap:jar</include>
65
		    <!-- <include>org.gvsig:org.gvsig.timesupport.lib.api:jar</include>
66
		    <include>org.gvsig:org.gvsig.timesupport.lib.impl:jar</include>-->
67
		    <include>org.joda:joda-time:jar</include>		
68
		  </includes>
69
    </dependencySet>
70
  </dependencySets>
71

  
72
</assembly>
73

  
74

  
org.gvsig.raster/tags/org.gvsig.raster-2.2.5/org.gvsig.raster.app/org.gvsig.raster.app.common/src/main/java/org/gvsig/raster/mainplugin/beans/createlayer/CreateLayerPanel.java
1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5
* 
6
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10
* 
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
* GNU General Public License for more details.
15
* 
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
19
* MA  02110-1301, USA.
20
* 
21
*/
22
package org.gvsig.raster.mainplugin.beans.createlayer;
23

  
24
import java.awt.GridBagConstraints;
25
import java.awt.GridBagLayout;
26
import java.awt.Insets;
27
import java.awt.event.ItemEvent;
28
import java.awt.event.ItemListener;
29

  
30
import javax.swing.BorderFactory;
31
import javax.swing.ButtonGroup;
32
import javax.swing.JPanel;
33
import javax.swing.JRadioButton;
34

  
35
import org.gvsig.andami.PluginServices;
36
import org.gvsig.raster.fmap.layers.FLyrRaster;
37

  
38
/**
39
 * Panel para unificar las propiedades de generacion de capas nuevas en ficheros
40
 * o solo en visualizacion.
41
 * 
42
 * @version 10/03/2008
43
 * @author BorSanZa - Borja S?nchez Zamorano 
44
 */
45
public class CreateLayerPanel {
46
	private JPanel        panel         = null;
47
	private JRadioButton  jRBOnlyView   = null;
48
	private JRadioButton  jRBNewLayer   = null;
49
	private NewLayerPanel panelNewLayer = null;
50
	private FLyrRaster    lyr           = null;
51

  
52
	/**
53
	 * Constructor de un CreateLayerPanel
54
	 */
55
	public CreateLayerPanel(FLyrRaster lyr) {
56
		this.lyr = lyr;
57
		initialize();
58
		translate();
59
	}
60
	
61
	/**
62
	 * Disables the new layer option. It is useful for remote
63
	 * services
64
	 */
65
	public void disableNewLayer() {
66
		getRadioOnlyView().setSelected(true);
67
		getRadioNewLayer().setEnabled(false);
68
	}
69
	
70
	/**
71
	 * Devuelve el panel principal
72
	 * @return
73
	 */
74
	public JPanel getJPanel() {
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff