[JPP-Devel] removed dependency to LoadSextanteRasterImage plugin

2020-09-03 Thread Giuseppe Aruta
Hi all,
today I removed all dependencies to
org.openjump.core.ui.plugin.layer.pirolraster.LoadSextanteRasterImagePlugIn.
The only code used of this class was the  public static String KEY_PATH =
"path";

This class was used many years ago to load image files as RasterImagelayers
but it was almost substituted by Alberto De Luca when he extended
RasterImageLayer framework to ESRI ascii and float file types and added all
the raster style methods.
The "new" class that substituted LoadSextanteRasterImagePlugIn is
org.openjump.core.raster.AddRasterImageLayerWizard.

I kept the code of LoadSextanteRasterImagePlugIn and made the class
deprecated
Peppe
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] SVN: [6420] core/trunk/src/org/openjump/core/ui/plugin/raster/nodata

2020-09-03 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 6420
  http://sourceforge.net/p/jump-pilot/code/6420
Author:   ma15569
Date: 2020-09-04 05:00:33 + (Fri, 04 Sep 2020)
Log Message:
---
removed dependency to LoadSextanteRasterImage plugin

Modified Paths:
--

core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeNoDataValuePlugIn.java

core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeRangeValuesToNoDataPlugIn.java

core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeValueToNoDataPlugIn.java

Modified: 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeNoDataValuePlugIn.java
===
--- 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeNoDataValuePlugIn.java
   2020-09-04 04:57:17 UTC (rev 6419)
+++ 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeNoDataValuePlugIn.java
   2020-09-04 05:00:33 UTC (rev 6420)
@@ -236,7 +236,7 @@
 FileInputStream fis = new FileInputStream(propertiesFile);
 this.properties.load(fis);
 this.properties
-.getProperty(LoadSextanteRasterImagePlugIn.KEY_PATH);
+.getProperty("path");
 fis.close();
 } catch (FileNotFoundException localFileNotFoundException) {
 } catch (IOException e) {

Modified: 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeRangeValuesToNoDataPlugIn.java
===
--- 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeRangeValuesToNoDataPlugIn.java
   2020-09-04 04:57:17 UTC (rev 6419)
+++ 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeRangeValuesToNoDataPlugIn.java
   2020-09-04 05:00:33 UTC (rev 6420)
@@ -301,7 +301,7 @@
 FileInputStream fis = new FileInputStream(propertiesFile);
 this.properties.load(fis);
 this.properties
-.getProperty(LoadSextanteRasterImagePlugIn.KEY_PATH);
+.getProperty("path");
 fis.close();
 } catch (FileNotFoundException localFileNotFoundException) {
 } catch (IOException e) {
@@ -379,7 +379,7 @@
 FileInputStream fis = new FileInputStream(propertiesFile);
 this.properties.load(fis);
 this.properties
-.getProperty(LoadSextanteRasterImagePlugIn.KEY_PATH);
+.getProperty("path");
 fis.close();
 } catch (FileNotFoundException localFileNotFoundException) {
 } catch (IOException e) {

Modified: 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeValueToNoDataPlugIn.java
===
--- 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeValueToNoDataPlugIn.java
 2020-09-04 04:57:17 UTC (rev 6419)
+++ 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeValueToNoDataPlugIn.java
 2020-09-04 05:00:33 UTC (rev 6420)
@@ -239,7 +239,7 @@
 FileInputStream fis = new FileInputStream(propertiesFile);
 this.properties.load(fis);
 this.properties
-.getProperty(LoadSextanteRasterImagePlugIn.KEY_PATH);
+.getProperty("path");
 fis.close();
 } catch (FileNotFoundException localFileNotFoundException) {
 } catch (IOException e) {



___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] SVN: [6419] core/trunk/src/org/openjump/core/ui/plugin/layer/pirolraster/ LoadSextanteRasterImagePlugIn.java

2020-09-03 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 6419
  http://sourceforge.net/p/jump-pilot/code/6419
Author:   ma15569
Date: 2020-09-04 04:57:17 + (Fri, 04 Sep 2020)
Log Message:
---
deprecated as OpenJUMP uses 
org.openjump.core.rasterimage.AddRasterImageLayerWizard to load 
RasterImageLayers

Modified Paths:
--

core/trunk/src/org/openjump/core/ui/plugin/layer/pirolraster/LoadSextanteRasterImagePlugIn.java

Modified: 
core/trunk/src/org/openjump/core/ui/plugin/layer/pirolraster/LoadSextanteRasterImagePlugIn.java
===
--- 
core/trunk/src/org/openjump/core/ui/plugin/layer/pirolraster/LoadSextanteRasterImagePlugIn.java
 2020-09-04 04:51:09 UTC (rev 6418)
+++ 
core/trunk/src/org/openjump/core/ui/plugin/layer/pirolraster/LoadSextanteRasterImagePlugIn.java
 2020-09-04 04:57:17 UTC (rev 6419)
@@ -52,6 +52,15 @@
 import com.vividsolutions.jump.workbench.ui.wizard.WizardPanel;
 import org.openjump.core.rasterimage.RasterImageIO;
 
+
+/**
+ * Giuseppe Aruta [2020-09-04]
+ * @deprecated. 
+ * in favor of org.openjump.core.rasterimage.AddRasterImageLayerWizard 
+ * 
+ */
+
+@Deprecated
 public class LoadSextanteRasterImagePlugIn extends AbstractPlugIn {
 private String imageFileName = "";
 private String cachedLayer = "default-layer-name";



___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] SVN: [6418] core/trunk/src/org/openjump/core/ui/plugin/raster/nodata

2020-09-03 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 6418
  http://sourceforge.net/p/jump-pilot/code/6418
Author:   ma15569
Date: 2020-09-04 04:51:09 + (Fri, 04 Sep 2020)
Log Message:
---
removed dependency to  
org.openjump.core.ui.plugin.layer.pirolraster.LoadSextanteRasterImagePlugIn

Modified Paths:
--

core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeNoDataValuePlugIn.java

core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeRangeValuesToNoDataPlugIn.java

core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeValueToNoDataPlugIn.java

Modified: 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeNoDataValuePlugIn.java
===
--- 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeNoDataValuePlugIn.java
   2020-09-04 04:45:49 UTC (rev 6417)
+++ 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeNoDataValuePlugIn.java
   2020-09-04 04:51:09 UTC (rev 6418)
@@ -29,7 +29,7 @@
 import org.openjump.core.rasterimage.RasterImageLayer;
 import org.openjump.core.rasterimage.sextante.OpenJUMPSextanteRasterLayer;
 import 
org.openjump.core.rasterimage.sextante.rasterWrappers.GridWrapperNotInterpolated;
-import 
org.openjump.core.ui.plugin.layer.pirolraster.LoadSextanteRasterImagePlugIn;
+//import 
org.openjump.core.ui.plugin.layer.pirolraster.LoadSextanteRasterImagePlugIn;
 import org.saig.core.gui.swing.sldeditor.util.FormUtils;
 
 import com.vividsolutions.jump.I18N;
@@ -76,8 +76,9 @@
 .get("org.openjump.core.ui.plugin.raster.nodata.max");
 
 private Properties properties = null;
-private static String propertiesFile = LoadSextanteRasterImagePlugIn
-.getPropertiesFile();
+ //   private static String propertiesFile = LoadSextanteRasterImagePlugIn
+ //   .getPropertiesFile();
+private static String propertiesFile = "path";
 NumberFormat cellFormat = null;
 private static ImageIcon icon16 = IconLoader
 .icon("fugue/folder-horizontal-open_16.png");

Modified: 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeRangeValuesToNoDataPlugIn.java
===
--- 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeRangeValuesToNoDataPlugIn.java
   2020-09-04 04:45:49 UTC (rev 6417)
+++ 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeRangeValuesToNoDataPlugIn.java
   2020-09-04 04:51:09 UTC (rev 6418)
@@ -29,7 +29,7 @@
 import org.openjump.core.rasterimage.RasterImageLayer;
 import org.openjump.core.rasterimage.sextante.OpenJUMPSextanteRasterLayer;
 import 
org.openjump.core.rasterimage.sextante.rasterWrappers.GridWrapperNotInterpolated;
-import 
org.openjump.core.ui.plugin.layer.pirolraster.LoadSextanteRasterImagePlugIn;
+//import 
org.openjump.core.ui.plugin.layer.pirolraster.LoadSextanteRasterImagePlugIn;
 import org.saig.core.gui.swing.sldeditor.util.FormUtils;
 
 import com.vividsolutions.jump.I18N;
@@ -62,8 +62,9 @@
 
 private Properties properties = null;
 private String byteOrder = "LSBFIRST";
-private static String propertiesFile = LoadSextanteRasterImagePlugIn
-.getPropertiesFile();
+ //   private static String propertiesFile = LoadSextanteRasterImagePlugIn
+ //   .getPropertiesFile();
+private static String propertiesFile = "path";
 NumberFormat cellFormat = null;
 
 private boolean reverse = false;

Modified: 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeValueToNoDataPlugIn.java
===
--- 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeValueToNoDataPlugIn.java
 2020-09-04 04:45:49 UTC (rev 6417)
+++ 
core/trunk/src/org/openjump/core/ui/plugin/raster/nodata/ChangeValueToNoDataPlugIn.java
 2020-09-04 04:51:09 UTC (rev 6418)
@@ -30,7 +30,7 @@
 import org.openjump.core.rasterimage.RasterImageLayer;
 import org.openjump.core.rasterimage.sextante.OpenJUMPSextanteRasterLayer;
 import 
org.openjump.core.rasterimage.sextante.rasterWrappers.GridWrapperNotInterpolated;
-import 
org.openjump.core.ui.plugin.layer.pirolraster.LoadSextanteRasterImagePlugIn;
+//import 
org.openjump.core.ui.plugin.layer.pirolraster.LoadSextanteRasterImagePlugIn;
 import org.saig.core.gui.swing.sldeditor.util.FormUtils;
 
 import com.vividsolutions.jump.I18N;
@@ -87,8 +87,9 @@
 .get("org.openjump.core.ui.plugin.raster.nodata.max");
 
 private Properties properties = null;
-private static String propertiesFile = LoadSextanteRasterImagePlugIn
-.getPropertiesFile();
+  //  private static String propertiesFile = LoadSextanteRasterImagePlugIn
+  //  .getPropertiesFile();
+private static String propertiesFile = "path";
 NumberFormat cellFormat = null;
 
 private static ImageIcon icon16 = IconLoader



___

[JPP-Devel] SVN: [6417] core/trunk/src/org/openjump/core/rasterimage

2020-09-03 Thread jump-pilot-svn--- via Jump-pilot-devel
Revision: 6417
  http://sourceforge.net/p/jump-pilot/code/6417
Author:   ma15569
Date: 2020-09-04 04:45:49 + (Fri, 04 Sep 2020)
Log Message:
---
Removed dependency to 
org.openjump.core.ui.plugin.layer.pirolraster.LoadSextanteRasterImagePlugIn

Modified Paths:
--
core/trunk/src/org/openjump/core/rasterimage/AddRasterImageLayerWizard.java
core/trunk/src/org/openjump/core/rasterimage/RasterImageIOUtils.java

Modified: 
core/trunk/src/org/openjump/core/rasterimage/AddRasterImageLayerWizard.java
===
--- core/trunk/src/org/openjump/core/rasterimage/AddRasterImageLayerWizard.java 
2020-09-02 20:55:26 UTC (rev 6416)
+++ core/trunk/src/org/openjump/core/rasterimage/AddRasterImageLayerWizard.java 
2020-09-04 04:45:49 UTC (rev 6417)
@@ -13,7 +13,7 @@
 import org.openjump.core.ccordsys.utils.SRSInfo;
 import org.openjump.core.ui.plugin.file.OpenRecentPlugIn;
 import org.openjump.core.ui.plugin.file.open.ChooseProjectPanel;
-import 
org.openjump.core.ui.plugin.layer.pirolraster.LoadSextanteRasterImagePlugIn;
+//import 
org.openjump.core.ui.plugin.layer.pirolraster.LoadSextanteRasterImagePlugIn;
 import org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel;
 import org.openjump.core.ui.swing.wizard.AbstractWizardGroup;
 import org.openjump.io.PropertiesHandler;
@@ -121,7 +121,7 @@
 public void open(File file, TaskMonitor monitor) {
 try {
 try {
-properties.setProperty(LoadSextanteRasterImagePlugIn.KEY_PATH,
+properties.setProperty("path",
 file.getPath());
 
 properties.store(" " + KEY_ZOOM_TO_INSERTED_IMAGE
@@ -128,7 +128,7 @@
 + I18N.get("RasterImagePlugIn.28")
 + KEY_ALLWAYSACCEPT_TWF_EXT
 + I18N.get("RasterImagePlugIn.29")
-+ LoadSextanteRasterImagePlugIn.KEY_PATH
++ "path"
 + I18N.get("RasterImagePlugIn.30"));
 
 final String selectedFilename = file.getPath();

Modified: core/trunk/src/org/openjump/core/rasterimage/RasterImageIOUtils.java
===
--- core/trunk/src/org/openjump/core/rasterimage/RasterImageIOUtils.java
2020-09-02 20:55:26 UTC (rev 6416)
+++ core/trunk/src/org/openjump/core/rasterimage/RasterImageIOUtils.java
2020-09-04 04:45:49 UTC (rev 6417)
@@ -24,7 +24,7 @@
 import org.openjump.core.rasterimage.TiffTags.TiffReadingException;
 import org.openjump.core.rasterimage.sextante.OpenJUMPSextanteRasterLayer;
 import 
org.openjump.core.rasterimage.sextante.rasterWrappers.GridWrapperNotInterpolated;
-import 
org.openjump.core.ui.plugin.layer.pirolraster.LoadSextanteRasterImagePlugIn;
+//import 
org.openjump.core.ui.plugin.layer.pirolraster.LoadSextanteRasterImagePlugIn;
 
 import com.vividsolutions.jts.geom.Envelope;
 import com.vividsolutions.jump.I18N;
@@ -42,8 +42,7 @@
 public class RasterImageIOUtils {
 static Properties properties = null;
 private static String byteOrder = "LSBFIRST";
-private static String propertiesFile = LoadSextanteRasterImagePlugIn
-.getPropertiesFile();
+private static String propertiesFile = "path";
 static NumberFormat cellFormat = null;
 // public static final Double DEFAULT_NODATA = Double.valueOf(-.0D);
 public static double defaultNoData = -9.0D;
@@ -216,7 +215,7 @@
 try {
 FileInputStream fis = new FileInputStream(propertiesFile);
 properties.load(fis);
-properties.getProperty(LoadSextanteRasterImagePlugIn.KEY_PATH);
+properties.getProperty(propertiesFile);
 fis.close();
 } catch (FileNotFoundException localFileNotFoundException) {
 } catch (IOException e) {
@@ -304,7 +303,7 @@
 try {
 FileInputStream fis = new FileInputStream(propertiesFile);
 properties.load(fis);
-properties.getProperty(LoadSextanteRasterImagePlugIn.KEY_PATH);
+properties.getProperty(propertiesFile);
 fis.close();
 } catch (FileNotFoundException localFileNotFoundException) {
 } catch (IOException e) {
@@ -397,7 +396,7 @@
 try {
 FileInputStream fis = new FileInputStream(propertiesFile);
 properties.load(fis);
-properties.getProperty(LoadSextanteRasterImagePlugIn.KEY_PATH);
+properties.getProperty(propertiesFile);
 fis.close();
 } catch (FileNotFoundException localFileNotFoundException) {
 } catch (IOException e) {
@@ -491,7 +490,7 @@
 try {
 FileInputStream fis = new FileInputStream(propertiesFile);
 

Re: [JPP-Devel] wms layer title

2020-09-03 Thread Michaud Michael


Thank you for this clear description Jukka,I will follow Ede's suggestion to log a warning if a (mandatory) title is missing in a layer to let him a chance to report the problem, but the main thing was to make it possible to use the WMS even if it contains such a layer (it will then contain " (untitled)" as its title).Michaëlenvoyé : 3 septembre 2020 à 13:27de : "Rahkonen Jukka (MML)" à : OpenJump develop and use objet : Re: [JPP-Devel] wms layer titleFrom the WMS 1.3.0 standard:7.2.4.6.2 TitleA  is mandatory for all layers; it is a human-readable string for presentation in a menu. The Title is not inherited by child Layers.7.2.4.6.3 NameIf, and only if, a layer has a , then it is a map layer that can be requested by using that Name in the LAYERS parameter of a GetMap request. A Layer that contains a  element is referred to as a “named layer” in this International Standard. If the layer has a Title but no Name, then that layer is only a category title for all the layers nested within. A server that advertises a Layer containing a Name element shall be able to accept that Name as the value of LAYERS argument in a GetMap request and return the corresponding map. A clientshall not attempt to request a layer that has a Title but no Name.-Jukka Rahkonen--Alkuperäinen viesti-Lähettäjä: edgar.sol...@web.de  Lähetetty: torstai 3. syyskuuta 2020 14.10Vastaanottaja: jump-pilot-devel@lists.sourceforge.netAihe: Re: [JPP-Devel] wms layer titlei see. right. that happens when you don't have a proper test dataset :). we should maybe also log a warning as an empty title is irregular as i understand. is it not?..edeOn 9/2/2020 14:55, Michaud Michael wrote:Did you change null title of layer elements ?Seems that the getTitle you changed is a global title of the main document.Anyway, I could have a try this morning with the co-worker who reported the bug, and the bug was still there.Michaël>> envoyé : 2 septembre 2020 à 14:07>> de : edgar.sol...@web.de>> à : "jump-pilot-devel@lists.sourceforge.net >> jump devel">> >> objet : Re: [JPP-Devel] wms layer title>> On 9/2/2020 14:02, Michaud Michael wrote:> Hi Ede,>> One problem with wms title was with "Layer" title = null. Ticket is >>> ambiguous because the exception is thrown during getCapabilities which also have a title.>> Just tried a new fix. Will let you know soon.> why? title was set to an empty String ("") per default by my fix.. >> ede>> ___>> Jump-pilot-devel mailing list>> Jump-pilot-devel@lists.sourceforge.net>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel>>___Jump-pilot-devel mailing listJump-pilot-devel@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/jump-pilot-devel___Jump-pilot-devel mailing listJump-pilot-devel@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/jump-pilot-devel___Jump-pilot-devel mailing listJump-pilot-devel@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] wms layer title

2020-09-03 Thread Rahkonen Jukka (MML)
From the WMS 1.3.0 standard:

7.2.4.6.2 Title
A  is mandatory for all layers; it is a human-readable string for 
presentation in a menu. The Title is not inherited by child Layers.
7.2.4.6.3 Name
If, and only if, a layer has a , then it is a map layer that can be 
requested by using that Name in the LAYERS parameter of a GetMap request. A 
Layer that contains a  element is referred to as a “named layer” in this 
International Standard. If the layer has a Title but no Name, then that layer 
is only a category title for all the layers nested within. A server that 
advertises a Layer containing a Name element shall be able to accept that Name 
as the value of LAYERS argument in a GetMap request and return the 
corresponding map. A client
shall not attempt to request a layer that has a Title but no Name.

-Jukka Rahkonen-

-Alkuperäinen viesti-
Lähettäjä: edgar.sol...@web.de  
Lähetetty: torstai 3. syyskuuta 2020 14.10
Vastaanottaja: jump-pilot-devel@lists.sourceforge.net
Aihe: Re: [JPP-Devel] wms layer title

i see. right. that happens when you don't have a proper test dataset :). we 
should maybe also log a warning as an empty title is irregular as i understand. 
is it not?

..ede

On 9/2/2020 14:55, Michaud Michael wrote:
> Did you change null title of layer elements ?
>
> Seems that the getTitle you changed is a global title of the main document.
>
> Anyway, I could have a try this morning with the co-worker who 
> reported the bug, and the bug was still there.
>
> Michaël
>
>> envoyé : 2 septembre 2020 à 14:07
>> de : edgar.sol...@web.de
>> à : "jump-pilot-devel@lists.sourceforge.net >> jump devel"
>> 
>> objet : Re: [JPP-Devel] wms layer title
>>
>>
>> On 9/2/2020 14:02, Michaud Michael wrote:
>>
>>> Hi Ede,
>>>
>>> One problem with wms title was with "Layer" title = null. Ticket is 
>>> ambiguous because the exception is thrown during getCapabilities which also 
>>> have a title.
>>>
>>> Just tried a new fix. Will let you know soon.
>>>
>> why? title was set to an empty String ("") per default by my fix.. 
>> ede
>>
>>
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>
>
>
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>



___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] wms layer title

2020-09-03 Thread edgar . soldin
i see. right. that happens when you don't have a proper test dataset :). we 
should maybe also log a warning as an empty title is irregular as i understand. 
is it not?

..ede

On 9/2/2020 14:55, Michaud Michael wrote:
> Did you change null title of layer elements ?
>
> Seems that the getTitle you changed is a global title of the main document.
>
> Anyway, I could have a try this morning with the co-worker who reported the 
> bug,
> and the bug was still there.
>
> Michaël
>
>> envoyé : 2 septembre 2020 à 14:07
>> de : edgar.sol...@web.de
>> à : "jump-pilot-devel@lists.sourceforge.net >> jump devel"
>> 
>> objet : Re: [JPP-Devel] wms layer title
>>
>>
>> On 9/2/2020 14:02, Michaud Michael wrote:
>>
>>> Hi Ede,
>>>
>>> One problem with wms title was with "Layer" title = null. Ticket is 
>>> ambiguous
>>> because the exception is thrown during getCapabilities which also have a 
>>> title.
>>>
>>> Just tried a new fix. Will let you know soon.
>>>
>> why? title was set to an empty String ("") per default by my fix.. ede
>>
>>
>> ___
>> Jump-pilot-devel mailing list
>> Jump-pilot-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>>
>
>
>
> ___
> Jump-pilot-devel mailing list
> Jump-pilot-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
>



___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] wms layer title

2020-09-03 Thread Michaud Michael


Hi Ede,My last correction fixed the problem. Sorry, the ticket was ambiguous about which title exactly was the cause of the problem.Michaël envoyé : 2 septembre 2020 à 14:07de : edgar.sol...@web.deà : "jump-pilot-devel@lists.sourceforge.net >> jump devel" objet : Re: [JPP-Devel] wms layer titleOn 9/2/2020 14:02, Michaud Michael wrote:Hi Ede,One problem with wms title was with "Layer" title = null. Ticket is ambiguousbecause the exception is thrown during getCapabilities which also have a title.Just tried a new fix. Will let you know soon.why? title was set to an empty String ("") per default by my fix.. ede___Jump-pilot-devel mailing listJump-pilot-devel@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


Re: [JPP-Devel] How to use com.vividsolutions.jump.workbench.imagery.geoimg.GeoRaster

2020-09-03 Thread Giuseppe Aruta
Ops!
Maybe I was wrong.
The question is if
com.vividsolutions.jump.workbench.imagery.geoimg.GeoReferencedRaster can
read png, gif, bmp and jpg too ( not only Tiff it GeiTiff)
Thanks


Il gio 3 set 2020, 09:33 Giuseppe Aruta  ha
scritto:

> Hi Ede,is it possible to use
> com.vividsolutions.jump.workbench.imagery.geoimg.GeoRaster
> to read an image file?
> And how?
>
> I can easily use GeoReferencedRaster(File file)
> but not GeoRaster(File file)
>
> Thanks
> Peppe
>
>
>
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel


[JPP-Devel] How to use com.vividsolutions.jump.workbench.imagery.geoimg.GeoRaster

2020-09-03 Thread Giuseppe Aruta
Hi Ede,is it possible to use
com.vividsolutions.jump.workbench.imagery.geoimg.GeoRaster
to read an image file?
And how?

I can easily use GeoReferencedRaster(File file)
but not GeoRaster(File file)

Thanks
Peppe
___
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel