[Geoserver-users] Monitor-hibernate-plugin JARs breaking Geofence hibernate; Geoserver not starting

2017-08-28 Thread Steve Omondi
Hey guys,

I have Geofence Embedded working in Geoserver-2.11.2 and when I install
monitor-hibernate-plugin Geofence is broken and Geoserver doesn't start.

I need the Monitoring plugin to work with External Postgis database as well
as Geofence internal server?

How can I make sure these two work in harmony. So far I think the .jar
files in the two are of different versions which is causing problems. I
need a solution for this.


Kind regards,
Steve Omondi


Virus-free.
www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Trouble with keystore in Jetty

2017-08-28 Thread M.v.Vlijmen
Goodday,

I want to set up Geoserver 2.10.2 with SSL and a CA certificate on CentOS 7
Went through all the config steps but keep on getting:
...
java.io.IOException: Keystore was tampered with, or password was incorrect
...
...
Caused by: java.security.UnrecoverableKeyException: Password verification failed
at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:778)
... 30 more

I'm pretty sure that the password is correct so the problem must be 
elsewhere.

These are the steps I took:


  1.  Made a PKCS12 file from a KEY and a CRT file:
openssl pkcs12 -inkey jetty.key -in jetty.crt -export -out jetty.pkcs12

  1.  Put the PKCS in the keystore:
# keytool -importkeystore -srckeystore jetty.pkcs12 -srcstoretype PKCS12 
-destkeystore keystore
Enter destination keystore password: 
Re-enter new password: 
Enter source keystore password: 
Entry for alias 1 successfully imported.
Entry for alias le-30311f8f-1100-46ef-afc7-a83bec2806e2 successfully imported.
Import command completed:  2 entries successfully imported, 0 entries failed or 
cancelled

  1.  Enabled SSL in server.ini:
]# java -jar start.jar --add-to-start=ssl
INFO: ssl initialised in ${jetty.base}/start.ini
INFO: ssl enabled in ${jetty.base}/start.ini
INFO: ssl enabled in 
INFO: server  initialised in ${jetty.base}/start.ini
INFO: server  enabled in ${jetty.base}/start.ini
INFO: server  enabled in 
INFO: resources   initialised in ${jetty.base}/start.ini
INFO: resources   enabled in ${jetty.base}/start.ini
INFO: resources   enabled in 

  1.  obfuscate password abc123:
# java -cp jetty-util-9.2.13.v20150730.jar 
org.eclipse.jetty.util.security.Password abc123
2017-08-24 16:23:47.147:INFO::main: Logging initialized @107ms
abc123
OBF:1igd1igf1igh1idp1idr1idt
MD5:e99a18c428cb38d5f260853678922e03

  1.  Edit jetty-ssl.xml:
/
  
  
  /
  

  1.  Start geo server via startup.sh but nogo.
  2.  Check password in keystore


root@datalab [/opt/geoserver/geoserver-2.10.2]# keytool -list -keystore 
/root/certificaat/keystore
Enter keystore password:

Keystore type: JKS
Keystore provider: SUN

Your keystore contains 2 entries

1, Aug 24, 2017, PrivateKeyEntry,
Certificate fingerprint (SHA1): 
##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##
le-3476114f-1100-46ef-afc7-a83bec2806e2, Aug 24, 2017, PrivateKeyEntry,
Certificate fingerprint (SHA1): 
##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##:##



U ontvangt dit mailbericht van de gemeente Purmerend.
De gemeente Purmerend voert ook werkzaamheden uit voor en namens de gemeente 
Beemster.


--
Disclaimer :

Aan de inhoud van dit bericht kunnen geen rechten worden ontleend.
De informatie is uitsluitend bestemd voor de geadresseerde.
Gebruik door anderen is verboden.
Openbaarmaking, vermenigvuldiging en verstrekking van deze
informatie aan derden is niet toegestaan.
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Trouble with keystore in Jetty

2017-08-28 Thread Ian Turton
did you include the strong cryptography jars?
http://docs.geoserver.org/latest/en/user/production/java.html#installing-unlimited-strength-jurisdiction-policy-files

I have no real idea if they are involved in this part of the chain but it
might help

Ian

On 28 August 2017 at 09:03,  wrote:

> Goodday,
>
>
>
> I want to set up Geoserver 2.10.2 with SSL and a CA certificate on CentOS 7
>
> Went through all the config steps but keep on getting:
>
> …
>
> java.io.IOException: Keystore was tampered with, or password was incorrect
>
> …
>
> …
>
> Caused by: java.security.UnrecoverableKeyException: Password verification
> failed
>
> at sun.security.provider.JavaKeyStore.engineLoad(
> JavaKeyStore.java:778)
>
> ... 30 more
>
>
>
> I’m pretty sure that the password is correct so the problem must be
> elsewhere…..
>
>
>
> These are the steps I took:
>
>
>
>1. *Made a PKCS12 file from a KEY and a CRT file:*
>
> openssl pkcs12 -inkey jetty.key -in jetty.crt -export -out jetty.pkcs12
>
>1. *Put the PKCS in the keystore:*
>
> # keytool -importkeystore -srckeystore jetty.pkcs12 -srcstoretype PKCS12
> -destkeystore keystore
>
> Enter destination keystore password: 
>
> Re-enter new password: 
>
> Enter source keystore password: 
>
> Entry for alias 1 successfully imported.
>
> Entry for alias le-30311f8f-1100-46ef-afc7-a83bec2806e2 successfully
> imported.
>
> Import command completed:  2 entries successfully imported, 0 entries
> failed or cancelled
>
>1. *Enabled SSL in server.ini:*
>
> ]# java -jar start.jar --add-to-start=ssl
>
> INFO: ssl initialised in ${jetty.base}/start.ini
>
> INFO: ssl enabled in ${jetty.base}/start.ini
>
> INFO: ssl enabled in 
>
> INFO: server  initialised in ${jetty.base}/start.ini
>
> INFO: server  enabled in ${jetty.base}/start.ini
>
> INFO: server  enabled in 
>
> INFO: resources   initialised in ${jetty.base}/start.ini
>
> INFO: resources   enabled in ${jetty.base}/start.ini
>
> INFO: resources   enabled in 
>
>1. *obfuscate password abc123:*
>
> # java -cp jetty-util-9.2.13.v20150730.jar 
> org.eclipse.jetty.util.security.Password
> abc123
>
> 2017-08-24 16:23:47.147:INFO::main: Logging initialized @107ms
>
> abc123
>
> OBF:1igd1igf1igh1idp1idr1idt
>
> MD5:e99a18c428cb38d5f260853678922e03
>
>1. *Edit jetty-ssl.xml:*
>
>  />/
>
>default=" OBF:1igd1igf1igh1idp1idr1idt
>
> "/>
>
>default=" OBF:1igd1igf1igh1idp1idr1idt"/>
>
>/>/
>
>default=" OBF:1igd1igf1igh1idp1idr1idt"/>
>
>1. *Start geo server via startup.sh but nogo*.
>2. *Check password in keystore*
>
>
>
> root@datalab [/opt/geoserver/geoserver-2.10.2]# keytool -list -keystore
> /root/certificaat/keystore
>
> Enter keystore password:
>
>
>
> Keystore type: JKS
>
> Keystore provider: SUN
>
>
>
> Your keystore contains 2 entries
>
>
>
> 1, Aug 24, 2017, PrivateKeyEntry,
>
> Certificate fingerprint (SHA1): ##:##:##:##:##:##:##:##:##:##:
> ##:##:##:##:##:##:##:##:##:##:##
>
> le-3476114f-1100-46ef-afc7-a83bec2806e2, Aug 24, 2017, PrivateKeyEntry,
>
> Certificate fingerprint (SHA1): ##:##:##:##:##:##:##:##:##:##:
> ##:##:##:##:##:##:##:##:##:##:##
>
>
>
>
>
> U ontvangt dit mailbericht van de gemeente Purmerend.
> De gemeente Purmerend voert ook werkzaamheden uit voor en namens de gemeente 
> Beemster.
>
>
> --
> Disclaimer :
>
> Aan de inhoud van dit bericht kunnen geen rechten worden ontleend.
> De informatie is uitsluitend bestemd voor de geadresseerde.
> Gebruik door anderen is verboden.
> Openbaarmaking, vermenigvuldiging en verstrekking van deze
> informatie aan derden is niet toegestaan.
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines: http://geoserver.org/comm/
> userlist-guidelines.html
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
Ian Turton
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geos

[Geoserver-users] GeoServer 2.11.2 - INSPIRE Extension issue

2017-08-28 Thread Oscar Diago Alonso
Good morning!

I have deployed the version 2.11.2 of GeoServer in a Tomcat 8 installed in 
Linux.

I can access to the GeoServer web without any issue: 
http://{host}/geoserver_v2.11.2/web

When I have installed the INSPIRE extension following the instructions of the 
documentation 
(http://docs.geoserver.org/latest/en/user/extensions/inspire/installing.html), 
GeoServer has stopped working. The server returns a 404 Error: Page not found. 
If I remove the extension, GeoServer works again.

Does anyone know how I can install the INSPIRE extension for GeoServer 2.11.2?

Thanks!

Óscar Diago Alonso
Desarrollador GIS / GIS Developer

Tel: +34 945131372 e-mail: mailto:oscar.di...@geograma.com
Calle Pintor Clemente Arraiz, 3 Bajo 01008 Vitoria-Gasteiz
Geograma.  Expertos en GeoInformación

 [cid:image002.png@01D26517.F6475990]
www.geograma.com

De acuerdo con la LO 15/1999, de Protección de Datos, y  la Ley 34/2002 
(LSSICE), se informa que su dirección de correo electrónico figura en nuestros 
archivos, al objeto de mantener el contacto y  remitirle publicidad e 
información empresarial sobre las actividades de Geograma, S.L. Si no desea 
recibir publicidad e información empresarial sobre las actividades de Geograma 
SL le rogamos que nos lo comunique a la siguiente dirección de correo 
electrónico: geogr...@geograma.com Podrá ejercer 
los derechos de acceso, cancelación, rectificación y oposición reconocidos por 
la LOPD mediante solicitud escrita y firmada a Geograma, S.L. a la siguiente 
dirección  C/ Castillo de Eskibel, 2 Bajo de Vitoria (C.P. 01007), adjuntando 
en todo caso copia de su DNI. En caso de modificación de sus datos deberá 
notificarlo en la misma dirección, declinando toda responsabilidad para la 
empresa en caso de no hacerlo. Si no es Ud. el destinatario y ha recibido este 
mensaje por error, agradecemos que lo comunique inmediatamente al remitente sin 
difundir, almacenar o copiar su contenido.



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] GeoServer 2.11.2 - INSPIRE Extension issue

2017-08-28 Thread Ian Turton
please look in the log file and tell us what it says at the end

Ian

2017-08-28 9:08 GMT+01:00 Oscar Diago Alonso :

> Good morning!
>
> I have deployed the version 2.11.2 of GeoServer in a Tomcat 8 installed in
> Linux.
>
> I can access to the GeoServer web without any issue: *http://**{host}*
> */geoserver_v2.11.2/web* 
>
> When I have installed the INSPIRE extension following the instructions of
> the documentation (
> *http://docs.geoserver.org/latest/en/user/extensions/inspire/installing.html*
> ),
> GeoServer has stopped working. The server returns a 404 Error: Page not
> found. If I remove the extension, GeoServer works again.
>
> Does anyone know how I can install the INSPIRE extension for GeoServer
> 2.11.2?
>
> Thanks!
>
> *Óscar Diago Alonso *
> *Desarrollador GIS** / **GIS Developer*
>
> Tel: +34 945131372 <+34%20945%2013%2013%2072> e-mail:
> *mailto:oscar.di...@geograma.com* 
> Calle Pintor Clemente Arraiz, 3 Bajo 01008 Vitoria-Gasteiz
> *Geograma*.  Expertos en GeoInformación
>
>
> *www.geograma.com* 
>
> De acuerdo con la LO 15/1999, de Protección de Datos, y  la Ley 34/2002
> (LSSICE), se informa que su dirección de correo electrónico figura en
> nuestros archivos, al objeto de mantener el contacto y  remitirle
> publicidad e información empresarial sobre las actividades de Geograma,
> S.L. Si no desea recibir publicidad e información empresarial sobre las
> actividades de Geograma SL le rogamos que nos lo comunique a la siguiente
> dirección de correo electrónico: *geogr...@geograma.com*
>  Podrá ejercer los derechos de acceso,
> cancelación, rectificación y oposición reconocidos por la LOPD mediante
> solicitud escrita y firmada a Geograma, S.L. a la siguiente dirección  C/
> Castillo de Eskibel, 2 Bajo de Vitoria (C.P. 01007), adjuntando en todo
> caso copia de su DNI. En caso de modificación de sus datos deberá
> notificarlo en la misma dirección, declinando toda responsabilidad para la
> empresa en caso de no hacerlo. Si no es Ud. el destinatario y ha recibido
> este mensaje por error, agradecemos que lo comunique inmediatamente al
> remitente sin difundir, almacenar o copiar su contenido.
>
>
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines: http://geoserver.org/comm/
> userlist-guidelines.html
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
Ian Turton
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Trouble with keystore in Jetty

2017-08-28 Thread Mark Prins
You seem to be using a self-signed certificate, I've not tried this before,
but at first glance you seem to have taken all the steps. Not sure I see
the signing certificate being imported, not sure if you need to.

SSL debugging is a pain in java, you can increase  the Jvm logging using
either -Djavax.net.debug=all or e.g..
 -Djavax.net.debug=ssl:handshake:verbose on the jetty command line. Check
https://stackoverflow.com/questions/23659564/limiting-java-ssl-debug-logging
for the possible options.

Also worth reading: https://dzone.com/articles/how-analyze-java-ssl-errors

Mark


Op 28 aug. 2017 12:34 schreef "Ian Turton" :

did you include the strong cryptography jars? http://docs.geoserver.
org/latest/en/user/production/java.html#installing-unlimited-strength-
jurisdiction-policy-files

I have no real idea if they are involved in this part of the chain but it
might help

Ian

On 28 August 2017 at 09:03,  wrote:

> Goodday,
>
>
>
> I want to set up Geoserver 2.10.2 with SSL and a CA certificate on CentOS 7
>
> Went through all the config steps but keep on getting:
>
> …
>
> java.io.IOException: Keystore was tampered with, or password was incorrect
>
> …
>
> …
>
> Caused by: java.security.UnrecoverableKeyException: Password verification
> failed
>
> at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.
> java:778)
>
> ... 30 more
>
>
>
> I’m pretty sure that the password is correct so the problem must be
> elsewhere…..
>
>
>
> These are the steps I took:
>
>
>
>1. *Made a PKCS12 file from a KEY and a CRT file:*
>
> openssl pkcs12 -inkey jetty.key -in jetty.crt -export -out jetty.pkcs12
>
>1. *Put the PKCS in the keystore:*
>
> # keytool -importkeystore -srckeystore jetty.pkcs12 -srcstoretype PKCS12
> -destkeystore keystore
>
> Enter destination keystore password: 
>
> Re-enter new password: 
>
> Enter source keystore password: 
>
> Entry for alias 1 successfully imported.
>
> Entry for alias le-30311f8f-1100-46ef-afc7-a83bec2806e2 successfully
> imported.
>
> Import command completed:  2 entries successfully imported, 0 entries
> failed or cancelled
>
>1. *Enabled SSL in server.ini:*
>
> ]# java -jar start.jar --add-to-start=ssl
>
> INFO: ssl initialised in ${jetty.base}/start.ini
>
> INFO: ssl enabled in ${jetty.base}/start.ini
>
> INFO: ssl enabled in 
>
> INFO: server  initialised in ${jetty.base}/start.ini
>
> INFO: server  enabled in ${jetty.base}/start.ini
>
> INFO: server  enabled in 
>
> INFO: resources   initialised in ${jetty.base}/start.ini
>
> INFO: resources   enabled in ${jetty.base}/start.ini
>
> INFO: resources   enabled in 
>
>1. *obfuscate password abc123:*
>
> # java -cp jetty-util-9.2.13.v20150730.jar 
> org.eclipse.jetty.util.security.Password
> abc123
>
> 2017-08-24 16:23:47.147:INFO::main: Logging initialized @107ms
>
> abc123
>
> OBF:1igd1igf1igh1idp1idr1idt
>
> MD5:e99a18c428cb38d5f260853678922e03
>
>1. *Edit jetty-ssl.xml:*
>
>  />/
>
>default=" OBF:1igd1igf1igh1idp1idr1idt
>
> "/>
>
>default=" OBF:1igd1igf1igh1idp1idr1idt"/>
>
>/>/
>
>default=" OBF:1igd1igf1igh1idp1idr1idt"/>
>
>1. *Start geo server via startup.sh but nogo*.
>2. *Check password in keystore*
>
>
>
> root@datalab [/opt/geoserver/geoserver-2.10.2]# keytool -list -keystore
> /root/certificaat/keystore
>
> Enter keystore password:
>
>
>
> Keystore type: JKS
>
> Keystore provider: SUN
>
>
>
> Your keystore contains 2 entries
>
>
>
> 1, Aug 24, 2017, PrivateKeyEntry,
>
> Certificate fingerprint (SHA1): ##:##:##:##:##:##:##:##:##:##:
> ##:##:##:##:##:##:##:##:##:##:##
>
> le-3476114f-1100-46ef-afc7-a83bec2806e2, Aug 24, 2017, PrivateKeyEntry,
>
> Certificate fingerprint (SHA1): ##:##:##:##:##:##:##:##:##:##:
> ##:##:##:##:##:##:##:##:##:##:##
>
>
>
>
>
> U ontvangt dit mailbericht van de gemeente Purmerend.
> De gemeente Purmerend voert ook werkzaamheden uit voor en namens de gemeente 
> Beemster.
>
>
> --
> Disclaimer :
>
> Aan de inhoud van dit bericht kunnen geen rechten worden ontleend.
> De informatie is uitsluitend bestemd voor de geadresseerde.
> Gebruik door anderen is verboden.
> Openbaarmaking, vermenigvuldiging en verstrekking van deze
> informatie aan derden is niet toegestaan.
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> Geoserver-users@l

[Geoserver-users] Different Labels using filter SLD

2017-08-28 Thread Hahesa
Hello everyone
I have a question! I have a rule for different classes of roads, and I need
labeling that classes with differents label rules. The routes under number
10 with a background shield , and routes above number 11 another shield.
I have this code:


  
  NumRuta* ## I need filter
here?#*#  


  News Gothic
Bold
  11
  bold
  normal
  

  
   0 



  #323232

  
 image/svg+xml  

20
  
false
proportional
3
100
true
  

How use the filter option with labels
Thanks!



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/Different-Labels-using-filter-SLD-tp5332816.html
Sent from the GeoServer - User mailing list archive at Nabble.com.

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Adding a GeoTIFF

2017-08-28 Thread Gardner, Alex(GE Transportation)
Hi All,

I am new to GeoServer and was hoping for some assistance in adding a GeoTIFF 
file.

I received what I believe is a GeoTIFF file and copied it up to the 
\programs(x86)\GeoServer 2.11.2\data_dir\data directory.
I then added a new Store and selected the GeoTIFF option.
I then browse to the files location in order to set the GeoTIFF in the URL 
field.
Hitting Save throws the following ERROR: "could not list layers for this store, 
an error occurred retrieving them: no input stream for the provided source"

I assume it is a problem with my GeoTIFF file? gdalinfo shows the following 
info for the image, is there something wrong with my file? What is missing here?

Driver: GTiff/GeoTIFF
Files: imagen mina geo_geotif.tif
Size is 33044, 17418
Coordinate System is:
LOCAL_CS["unnamed",
   GEOGCS["unknown",
DATUM["unknown",
SPHEROID["Bessel 1841",6377397.155,299.1528131060796,
AUTHORITY["EPSG","7004"]]],
PRIMEM["Greenwich",0],
UNIT["degree",0.0174532925199433]],
UNIT["metre",1,
AUTHORITY["EPSG","9001"]]]
Origin = (-69.364977836724194,-22.746982851996489)
Pixel Size = (0.06108275703,-0.06108275703)
Metadata:
  AREA_OR_POINT=Area
Image Structure Metadata:
  COMPRESSION=LZW
  INTERLEAVE=PIXEL
Corner Coordinates:
Upper Left  ( -69.3649778, -22.7469829)
Lower Left  ( -69.3649778, -22.8533768)
Upper Right ( -69.1631360, -22.7469829)
Lower Right ( -69.1631360, -22.8533768)
Center  ( -69.2640569, -22.8001798)
Band 1 Block=33044x32 Type=Byte, ColorInterp=Red
Band 2 Block=33044x32 Type=Byte, ColorInterp=Green
Band 3 Block=33044x32 Type=Byte, ColorInterp=Blue

Regards,

Alex Gardner
Product Support Engineer - Collision Avoidance & Geospatial Systems
GE Mining

M +614 66 102 204
alex.gardn...@ge.com
www.getransportation.com/mining


3 Co-Wyn Close
Fountaindale, New South Wales, 2258, Australia
Industrea Mining Technology

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users