Re: [Geoserver-users] Can I resume gdal_retile?

2013-11-11 Thread Christian Mueller
There is a parameter pyramidOnly. (avoids retiling)

Cheers
Christian


On Mon, Nov 11, 2013 at 4:10 PM, Daniele Romagnoli <
daniele.romagn...@geo-solutions.it> wrote:

> Hi,
> Although the gdal_retile has been used to create pyramids to be served by
> geoserver, the gdal_retile command is a GDAL tool so I would probably ask
> that question to the GDAL list to be more sure[1].
> However, in my opinion, there is no way to skip the process to level 2 so
> I think you have to restart from zero and redo the job :(
>
> Hope this helps.
> Regards,
> Daniele
>
> [1]: http://lists.osgeo.org/mailman/listinfo/gdal-dev
>
> ==
> Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
> information.
> ==
> Ing. Daniele Romagnoli
> Senior Software Engineer
>
> GeoSolutions S.A.S.
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
> phone: +39 0584 962313
> fax:  +39 0584 1660272
>
> http://www.geo-solutions.it
> http://twitter.com/geosolutions_it
>
> ---
>
>
> On Mon, Nov 11, 2013 at 2:29 PM, antchrysochoou <
> antchrysoch...@googlemail.com> wrote:
>
>> Hi,
>>
>> I was running gdal_retile on a 5TB data set. It was configured to create
>> 10 levels of pyramids. The server crashed for a reason through during
>> the weekend and it seems levels 0 and 1 were the only ones completed.
>> Whould it be ok if I start gdal_retile again? Will it re-do levels 0 and
>> 1?
>>
>> All the best,
>> A
>>
>>
>> --
>> November Webinars for C, C++, Fortran Developers
>> Accelerate application performance with scalable programming models.
>> Explore
>> techniques for threading, error checking, porting, and tuning. Get the
>> most
>> from the latest Intel processors and coprocessors. See abstracts and
>> register
>>
>> http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
>> ___
>> Geoserver-users mailing list
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>
>
>
> --
> November Webinars for C, C++, Fortran Developers
> Accelerate application performance with scalable programming models.
> Explore
> techniques for threading, error checking, porting, and tuning. Get the most
> from the latest Intel processors and coprocessors. See abstracts and
> register
> http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
DI Christian Mueller MSc (GIS), MSc (IT-Security)
OSS Open Source Solutions GmbH
--
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] GeoServer Printing Module

2013-11-11 Thread Jerome A. Wendell
Thanks to everyone who responded to my posts concerning the printing problem
that I was having.  Since I am also using GeoExt, my OpenLayers ProxyHost
was not being used for the POST requests sent for printing, which was
causing the Access-Control-Allow-Origin problem.  Phil Scadden recommended
looking into override-ext-ajax.js, which has the Ext components that call
Ext.Ajax methods use the OpenLayers proxy.  This resolved my current issue.

 

Thank you Jesse for all of your patience and guidance while helping me work
through the problem.

 

Thank you Jonathan for your replies and the suggestions about installing the
MapFish servlet.

 

Thank you Mauro for your replies and help troubleshooting the issue.

 

Jerome Wendell

 

From: Jerome A. Wendell [mailto:jawend...@suddenlink.net] 
Sent: Wednesday, November 06, 2013 10:18 AM
To: 'Jonathan Moules'
Cc: 'Mauro Bartolomeoli'; 'GeoServer Mailing List List'
Subject: Re: [Geoserver-users] GeoServer Printing Module

 

Jonathan,

 

Thanks for your reply.  I am already using a proxy server for OpenLayers.

 

Thanks,

 

Jerome

 

 

From: Jonathan Moules [mailto:jonathanmou...@warwickshire.gov.uk] 
Sent: Wednesday, November 06, 2013 10:02 AM
To: jawend...@suddenlink.net
Cc: Jesse Eichar; Mauro Bartolomeoli; GeoServer Mailing List List
Subject: Re: [Geoserver-users] GeoServer Printing Module

 

Hi Jerome,

You can get around that with a proxy server. Google for "openlayers proxy"
and hopefully you should find something.

Basically you can't do XML stuff unless the browser sees it going to and
coming from the same domain/port as the application. so
www.example.com/webapp. You're using a different port, which is normal. Thus
the conventional solution is to set up a simple proxy script.

 

Regards,

Jonathan

 

 

On 6 November 2013 14:56, Jerome A. Wendell 
wrote:

Jonathan,

 

I installed the MapFish printing servlet as you suggested, and can print OSM
and WMS layers fine using a GET request.  I have been trying to print vector
layers, and the spec information for the print request exceeds the maximum
length of a GET request.  I have been trying to use POST, but I get the
following error:

 

XMLHttpRequest cannot load
http://www.mydomain.com:8080/print/pdf/create.json. Origin
http://www.mydomain.com is not allowed by Access-Control-Allow-Origin.

 

I have researched this error, and found a possible solution to be at the
following link:

 

http://enable-cors.org/index.html

 

I have checked and the suggested information to put into the web.config file
on IIS7 is already in the web.config on our server.  I also found some
information for a cross origin filter for Jetty at the following link:

 

 
http://stackoverflow.com/questions/8303162/jetty-cross-origin-filter/8454168
#8454168

 

I have tried adding that to the web.xml file for MapFish print, and it
doesn't appear to have any affect.  I added it to the web.xml file for
GeoServer, and it seems to break a number of things.

 

Have you or anyone else experienced the Access-Control-Allow-Origin problem,
and what did you do to fix it?  Any suggestions?

 

Thanks,

 

Jerome

 

From: Jonathan Moules [mailto:jonathanmou...@warwickshire.gov.uk] 
Sent: Thursday, October 31, 2013 8:35 AM
To: jawend...@suddenlink.net
Cc: Jesse Eichar; Mauro Bartolomeoli; GeoServer Mailing List List
Subject: Re: [Geoserver-users] GeoServer Printing Module

 

Hi Jerome,

You're already using Jetty - it's the server that Geoserver runs out of.
Stick it in the webapps directory and it should work. You'll need to restart
jetty/geoserver of course.

 

Jonathan

 

 

On 31 October 2013 12:31, Jerome A. Wendell 
wrote:

Jonathan,

 

Thanks for your reply.  That is the file that I downloaded.  I have not
installed Jetty, does it come as part of the Windows Server or GeoServer
installation?  I have been able to extract the files from the .war file.

 

Thanks for your help,

 

Jerome

 

 

From: Jonathan Moules [mailto:jonathanmou...@warwickshire.gov.uk] 
Sent: Thursday, October 31, 2013 5:04 AM
To: jawend...@suddenlink.net
Cc: Jesse Eichar; Mauro Bartolomeoli; GeoServer Mailing List List
Subject: Re: [Geoserver-users] GeoServer Printing Module

 

Hi Jerome,

Yep, this file:

https://oss.sonatype.org/content/repositories/snapshots/org/mapfish/print/pr
int-servlet/2.0-SNAPSHOT/print-servlet-2.0-SNAPSHOT.war

 

If that's where you've put Tomcat/Jetty (I'm guessing Jetty as you windows
installed), then yes, that's where you want to place the war file. Actually
you'll probably want to extract it into that directory (it's basically a zip
file with a different extension) and then delete the .war itself.

After that you can access it in the way previously described.

Regards,

Jonathan

 

 

On 30 October 2013 20:40, Jerome A. Wendell 
wrote:

Jonathan,

 

The war file that I found at the link provided is
print-servlet-2.0-SNAPSHOT.war.  Is this the correct file?

 

Also, the print directory th

Re: [Geoserver-users] Can I resume gdal_retile?

2013-11-11 Thread Daniele Romagnoli
Hi,
Although the gdal_retile has been used to create pyramids to be served by
geoserver, the gdal_retile command is a GDAL tool so I would probably ask
that question to the GDAL list to be more sure[1].
However, in my opinion, there is no way to skip the process to level 2 so I
think you have to restart from zero and redo the job :(

Hope this helps.
Regards,
Daniele

[1]: http://lists.osgeo.org/mailman/listinfo/gdal-dev

==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==
Ing. Daniele Romagnoli
Senior Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:  +39 0584 1660272

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

---


On Mon, Nov 11, 2013 at 2:29 PM, antchrysochoou <
antchrysoch...@googlemail.com> wrote:

> Hi,
>
> I was running gdal_retile on a 5TB data set. It was configured to create
> 10 levels of pyramids. The server crashed for a reason through during
> the weekend and it seems levels 0 and 1 were the only ones completed.
> Whould it be ok if I start gdal_retile again? Will it re-do levels 0 and 1?
>
> All the best,
> A
>
>
> --
> November Webinars for C, C++, Fortran Developers
> Accelerate application performance with scalable programming models.
> Explore
> techniques for threading, error checking, porting, and tuning. Get the most
> from the latest Intel processors and coprocessors. See abstracts and
> register
> http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Custom rexr Symbolizer - Font

2013-11-11 Thread pascal
Sorry, it works. I suppose that I've done something wrong !

Pascal.



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/Custom-rexr-Symbolizer-Font-tp5088485p5088542.html
Sent from the GeoServer - User mailing list archive at Nabble.com.

--
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Can I resume gdal_retile?

2013-11-11 Thread antchrysochoou
Hi,

I was running gdal_retile on a 5TB data set. It was configured to create 
10 levels of pyramids. The server crashed for a reason through during 
the weekend and it seems levels 0 and 1 were the only ones completed.
Whould it be ok if I start gdal_retile again? Will it re-do levels 0 and 1?

All the best,
A

--
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Error when installing oracle plugin in 2.4.1

2013-11-11 Thread cmaul
Pieter,

that may actually be the problem, because with an older version I found that
I got issues with an ojdbc.jar located in both (Tomcat and Geoserver)
directories albeit on the Windows platform.

Cheers

Christian



-


Dr Christian Maul
Project Manager

Information Services Branch
Department Environment and Primary Industries
Level13, Marland House, 570 Bourke Street
Melbourne 3000

PO Box 500, East Melbourne Vic 3002


Telephone:+61-3-8636 2325
Telefax:  +61-3-8636 2813
--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/Error-when-installing-oracle-plugin-in-2-4-1-tp5088030p5088453.html
Sent from the GeoServer - User mailing list archive at Nabble.com.

--
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Point symbols for polygons?

2013-11-11 Thread Mihail Ivanchev
Hello,

I have this quick little question: I am drawing a symbol using a point
symbolizer on a polygon. The question is: what is the reference point? I
suspect it's the centroid of the clipped polygon, but I'm not sure. Any
help?

Regards,
Mihail
--
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Custom rexr Symbolizer - Font

2013-11-11 Thread pascal
Thanks for your answer, 

But now I have an other problem :
I choose in the list an existing font (URW Chancery L Medium Italic) and I
try to applied it in the sld file like that but it doesn't work, I have the
default style and not the new one:

 
   ADMIN_NAME
 
 
   20
   URW Chancery L Medium
Italic
 
 
  #543545
 
   

So my question is : is it the good way to introduce a new font style or the
parameters that I have introduced (font-size, font-style) are not the good
one ?

Thanks a lot, 

Pascal.



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/Custom-rexr-Symbolizer-Font-tp5088485p5088511.html
Sent from the GeoServer - User mailing list archive at Nabble.com.

--
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] accessing remote data store over web service

2013-11-11 Thread David Alda Fernandez de Lezea
Jukka,

Thanks for your response. Just what I thought. It's not going to be as easy as 
they thought. I'll think about you proposal.

Thanks.

Regards,
 
David Alda Fernández de Lezea
 
UNIDAD DE EMPRENDIMIENTO Y DESARROLLO RURAL
Area de Sistemas de Información Geográfica, Planificación Territorial y Forestal
 
Granja Modelo s/n
01192 Arkaute Araba
T 627923170 F 945 003 290
da...@hazi.es | www.hazi.es
 


 
*  LEGE OHARRA   ***   AVISO LEGAL   
***   DISCLAIMER   **
Mezu hau pertsonala eta isilpekoa da eta baimenik gabeko erabilera debekatua 
dago legalki. Jasotzailea ez bazara ezabatu mezua, bidali eta kontserbatu gabe.
Este mensaje es personal y confidencial y su uso no autorizado está prohibido 
legalmente. Si usted no es el destinatario, proceda a borrarlo, sin reenviarlo 
ni conservarlo.
This message is personal and confidential, unauthorised use is legally 
prohibited. If you are not the intended recipient, delete it without resending 
or backing it.

-Mensaje original-
De: Rahkonen Jukka [mailto:jukka.rahko...@mmmtike.fi] 
Enviado el: viernes, 08 de noviembre de 2013 13:29
Para: David Alda Fernandez de Lezea; 'geoserver-users@lists.sourceforge.net'
Asunto: Re: accessing remote data store over web service

Hi,

Such things are doable but sometimes you will need to pay before they come 
real. Most simple alternative for you might be if the remote site sets up a WFS 
service on top of their Oracle. They can do it with Geoserver but Oracle can 
also do WFS if they have a suitable license. I have never tested Oracle WFS in 
action myself, though.

Tailor made services on their side would require tailoring also on your 
Geoserver side. Now the first question is if you can do what you want with WFS 
filters. The second one is that how well they work with chained WFS services. 
If your use case is simple enough it may work OK. Better possibility for a 
success if both ends use Geoserver, I guess.

Suggest them to install Geoserver WFS and have a try with you. 

-Jukka Rahkonen-


David Alda Fernandez de Lezea wrote:
> 
> Hi list,
> 
> I want to gain access to an Oracle datastore located at another 
> company's facilities in another province. I've got in touch with the 
> other company and they told me that couldn't give direct access to 
> their database but they could provide me a webservice to communicate 
> with the database. Can this work with GeoServer? From my point of view 
> I don't think it's possible, but I'm not an expert
> 
> I'm still working with GeoServer 2.0.2 :-(
> 
> Thanks in advance.
> 
> Regards,
> 
> 
> David Alda Fernández de Lezea
> 
> 
> 
> UNIDAD DE EMPRENDIMIENTO Y DESARROLLO RURAL
> 
> Area de Sistemas de Información Geográfica, Planificación Territorial 
> y Forestal
> 
> 
> 
> Granja Modelo s/n
> 
> 01192 Arkaute Araba
> T 627923170 F 945 003 290
> 
> da...@hazi.es mailto:correo_electron...@hazi.es>  | 
> www.hazi.es http://www.hazi.es/>
> 
> 
> 
>   programa\Microsoft\Signatures\HAZI Consultoria_archivos\image001.jpg>
> 
> http://www.hazi.es/>
> 
> *  LEGE OHARRA   ***   AVISO
> LEGAL   ***   DISCLAIMER   **
> 
> Mezu hau pertsonala eta isilpekoa da eta baimenik gabeko erabilera 
> debekatua dago legalki. Jasotzailea ez bazara ezabatu mezua, bidali eta 
> kontserbatu gabe.
> 
> Este mensaje es personal y confidencial y su uso no autorizado está 
> prohibido legalmente. Si usted no es el destinatario, proceda a 
> borrarlo, sin reenviarlo ni conservarlo.
> 
> This message is personal and confidential, unauthorised use is legally 
> prohibited.
> If you are not the intended recipient, delete it without resending or backing 
> it.
> 
> 
> --
>  November Webinars for C, C++, Fortran Developers Accelerate 
> application performance with scalable programming models. Explore 
> techniques for threading, error checking, porting, and tuning. Get the 
> most from the latest Intel processors and coprocessors. See abstracts 
> and register 
> http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.c
> lktrk ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users

--
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge

Re: [Geoserver-users] Custom rexr Symbolizer - Font

2013-11-11 Thread Andrea Aime
On Mon, Nov 11, 2013 at 10:35 AM, pascal  wrote:

> Hi,
>
> I would like to add a custom font and I tried this method :
> Download a .ttf file (in that case GemFont One.ttf) that I put in
> data/styles folder in GeoServer.
> Then I  Clear Resource Cache under Server Status.
> In my sld file I have :
> 
>ADMIN_NAME
>  
>  
>20
>GemFont
> One
>  
> ...
>
> The problem is that the font doesn't change, I don't have my custom style
> but the default style.
> What's wrong ?
>

Custom fonts are picked up on startup, or whenever you press the "reload"
button
in the status page, so if you added the font after GeoServer started, you'll
have to force a reload.

Moreover, normally the name of the fond is equal to the file name.
If you go in the status page there is a link to all the available fonts,
see how it's
called there

Cheers
Andrea

-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

---
--
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Custom rexr Symbolizer - Font

2013-11-11 Thread pascal
Hi, 

I would like to add a custom font and I tried this method :
Download a .ttf file (in that case GemFont One.ttf) that I put in
data/styles folder in GeoServer.
Then I  Clear Resource Cache under Server Status.
In my sld file I have : 

   ADMIN_NAME
 
 
   20
   GemFont
One
 
...

The problem is that the font doesn't change, I don't have my custom style
but the default style.
What's wrong ?

Thanks a lot for your help !

Pascal.
 
 



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/Custom-rexr-Symbolizer-Font-tp5088485.html
Sent from the GeoServer - User mailing list archive at Nabble.com.

--
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users