Re: [Geoserver-users] Out of memory error downloading large wfs response

2013-07-09 Thread Chris Holmes
I think an alternative would be to keep the gzip filter off and just let
your servlet container do gzipping. Or the http server in front of it if
you have one. See like
http://viralpatel.net/blogs/enable-gzip-compression-in-tomcat/

I feel like that's now the general practice on the web? That the
application shouldn't worry about it. And I think the container can be
smarter about knowing when the client supports gzip. Though perhaps it's
harder to configure for all our output formats?



On Tue, Jul 9, 2013 at 10:06 PM, Craig Jones wrote:

>  Hi Andrea,
>
> We're connecting to a postgres 9.1 postgis 2.0 database.
>
> I can download as much data as I want after removing the gzip filter
> (several gigabytes) .
>
> I was looking at the revision history in subversion which I'm assuming is
> correct for those earlier changes, but yes I did read that history
> incorrectly.
>
> At the risk of getting it wrong again, the changes made for GEOS-2626 were
> made in trunk in r11367 - see attached r11367 diff
>
>M
> /trunk/src/web/src/main/java/org/geoserver/filters/GZIPResponseStream.java
>M
> /trunk/src/web/src/main/java/org/geoserver/filters/GZIPResponseWrapper.java
>
> Prior to these changes, the response was gzipped to a
> ByteArrayOutputStream and when that was finished the result was copied to
> the servlet output stream (i.e. the gzipped response was stored in
> memory).  After the change the response is gzipped directly to the servlet
> output stream.
>
> As far as I can tell, the current code has reverted to gzipping to a
> ByteArrayOutputStream and then copying to the servlet output stream.  Its
> visible in the stack trace below.
>
> Looking through the old repository logs it looks like the filters in
> /trunk/src/web/src/main/java/org/geoserver/filters were deleted in r11466.
>   The current filter appears to be sourced from
> src/main/src/main/java/org/geoserver/filters/GZIPResponseStream.java.
> This version of the filter has been around since before the changes above
> were made but the streaming changes above were never applied to it.
>
>
>
> Regards,
> CraigJ
>
>
>
> On 09/07/13 22:19, Andrea Aime wrote:
>
> On Tue, Jul 9, 2013 at 6:27 AM, Craig Jones wrote:
>
>>  Hi All,
>>
>> We are getting the exception below when downloading a large wfs response
>> in csv or gml format using gzip compression.  Were are using geoserver
>> 2.1.1 in production but this also happens in 2.3.3.
>>
>> java.lang.OutOfMemoryError: Java heap space
>>  java.util.Arrays.copyOf(Arrays.java:2271)
>>  java.io.ByteArrayOutputStream.grow(ByteArrayOutputStream.java:113)
>>  
>> java.io.ByteArrayOutputStream.ensureCapacity(ByteArrayOutputStream.java:93)
>>  java.io.ByteArrayOutputStream.write(ByteArrayOutputStream.java:140)
>>  
>> java.util.zip.DeflaterOutputStream.deflate(DeflaterOutputStream.java:253)
>>  java.util.zip.DeflaterOutputStream.write(DeflaterOutputStream.java:211)
>>  java.util.zip.GZIPOutputStream.write(GZIPOutputStream.java:146)
>>  
>> org.geoserver.filters.GZIPResponseStream.write(GZIPResponseStream.java:86)
>>  
>> org.geoserver.filters.GZIPResponseStream.write(GZIPResponseStream.java:79)
>>  
>> org.geoserver.filters.AlternativesResponseStream.write(AlternativesResponseStream.java:53)
>>  
>> org.geoserver.wfs.response.WfsExceptionHandler.handle1_0(WfsExceptionHandler.java:132)
>>  
>> org.geoserver.wfs.response.WfsExceptionHandler.handleDefault(WfsExceptionHandler.java:81)
>>  
>> org.geoserver.wfs.response.WfsExceptionHandler.handleServiceException(WfsExceptionHandler.java:59)
>>  
>> org.geoserver.ows.Dispatcher.handleServiceException(Dispatcher.java:1638)
>>  org.geoserver.ows.Dispatcher.exception(Dispatcher.java:1583)
>>  org.geoserver.ows.Dispatcher.handleRequestInternal(Dispatcher.java:282)
>>  
>> org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:153)
>>  
>> org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:48)
>>
>>
>> From the log message above, geoserver is falling over writing all the
>> gzipped output to a ByteArrayOutputStream which in this case filled up all
>> available memory.
>>
>>
>  This is a serious issue, because it goes against the basic design
> principles of GeoServer, where each data access is performed
> in a streaming way, read a bit of input, encode a bit out output, repeat.
> That said, can you describe a bit more your scenario? There is one data
> source that unfortunately cannot do streaming (the database is not JDBC
> compliant, ignores the fetch size we set), which is mysql, is that your
> case?
>
>
>>  I note that this was the subject of a previous issue GEOS-2626, but it
>> ooks to me like the changes made there were reverted as a part of the
>> changes made in GEOS-4845 r16568.
>>
>
>  I'm confused about the reference to GEOS-4845, it just moved the
> existing files from web/app to main to make 

Re: [Geoserver-users] Benefit of caching with WMS client

2013-06-27 Thread Chris Holmes
Afaik GeoWebCache has the ability to do this with its WMS. See
http://geowebcache.org/docs/current/services/wms.html

Ian, cced, I believe started some work to make it so the embedded GWC could
do the same tile recombination to a WMS call with one or two vendor
parameters. I'm not sure if we got it all the way back in to the core, as
the project we built it for I believe has not deployed it yet.

Note this strategy should work well for raster data, but for vector you
will likely get some fuzziness for requests between zooms.

In general getting the fastest results depends on how you prepare your
data. If you're using raster data than inner tiling and overview on
geotiffs can get you to very fast speeds. See
http://docs.geoserver.org/stable/en/user/production/data.html


On Thu, Jun 27, 2013 at 9:45 AM, Gubler, Ruediger wrote:

>  Hello,
>
> we are using a WMS only client and want to switch to geoserver.
> Is geoserver using the precalculated tiles to response faster on WMS
> queries?
>
> I think of the following procedure:
>
>1. Choose the next “better” zoom step
>2. Compose the “larger” picture using the tiles
>3. Cut the requested area
>4. Send the result
>
>
> If geoserver not working this (or similar) way how can we get fastest
> results at WMS quries?
>
>
> Yours Rüdiger
>
>
>
>
> --
> This SF.net email is sponsored by Windows:
>
> Build for Windows Store.
>
> http://p.sf.net/sfu/windows-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Lead Data Scientist at Geospatial Startup

2013-06-20 Thread Chris Holmes
Hey JD and 'contact', unfortunately we don't allow posting of jobs directly
on the user's list.

If you have a job post that is truly relevant to GeoServer users /
developers (like I'd expect to see GeoServer called at as a specific skill,
not just geospatial), then you can get in touch with anyone who posts to
the blog with the job posting. We do periodic postings to get people aware
of opportunities related to GeoServer, like
http://blog.geoserver.org/2013/05/28/job-offer-geoserver/

But we try to keep this list free of unsolicited job postings.

thanks,

Chris


On Thu, Jun 20, 2013 at 8:54 PM, jdmargulici  wrote:

> Vehicle Data Science Corporation is looking for employee number three to
> help
> design and implement software that processes and analyzes big spatial data
> sets. We are looking for a smart, adaptable individual with plenty of
> skills
> and breadth in computing to build products from our data streams. The right
> candidate will have a solid scientific foundation and a self-starter,
> small-company work ethic. A graduate engineering or science degree from a
> top-tier university is preferred. Familiarity with geospatial tools and
> database architectures are major pluses and other skills of interest
> include
> distributed computing, web programming, statistics, and time series
> analysis. Most of the initial code base is in Python, thus prior experience
> with that language is highly desirable.
>
> Vehicle Data Science is an early-stage startup located in the San Francisco
> Bay Area with initial funding from a National Science Foundation grant. We
> use location data from vehicles to derive driving behaviors which we
> capture
> in a proprietary database. This database feeds applications in the areas of
> driver safety, fuel economy and autonomous vehicles.
>
> The opportunity is huge and possibilities are wide open for the right
> individual. Come help us grow the company you want to be a part of!
>
> To reach us, e-mail: cont...@vds-corp.com
>
>
>
> --
> View this message in context:
> http://osgeo-org.1560.x6.nabble.com/Lead-Data-Scientist-at-Geospatial-Startup-tp5061458.html
> Sent from the GeoServer - User mailing list archive at Nabble.com.
>
>
> --
> This SF.net email is sponsored by Windows:
>
> Build for Windows Store.
>
> http://p.sf.net/sfu/windows-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Polygons with outlines using gradients

2013-01-11 Thread Chris Holmes
You could also try to make a rendering transformation for it, see
http://docs.geoserver.org/stable/en/user/styling/sld-extensions/rendering-transform.htmlfor
a start.

So instead of storing the rings in your database you could have geoserver
create them on the fly with a WPS process that's only applied at render
time.


On Fri, Jan 11, 2013 at 10:10 AM, Gabriel Vatin <
gabriel.va...@mines-paristech.fr> wrote:

> **
> True that this kind of buffers is quite good... if you keep the same
> resolution. If you zoom in or out too much, it looses its interest.
> Thanks Stephen for the triggered buffers, it's good to know !
>
>
> On 11/01/2013 15:23, Stephen V. Mather wrote:
>
> Not a bad way to go, doesn't show you the styling but in mapserver.  The
> advantage to this approach is you are not recalculating the buffers each
> time.  The disadvantage is the same-- they are static, so to change them
> requires creating new geometry in the database.
>
>  Here it is in broken (google) English:
>
>
> http://translate.google.com/translate?sl=auto&tl=en&js=n&prev=_t&hl=en&ie=UTF-8&eotf=1&u=http%3A%2F%2Fsimonmercier.net%2Fblog%2F%3Fp%3D1214
>
>  Also, I have a pretty old post on this with the buffers created as a
> trigger on insert (probably requires an update trigger as well which is not
> in this example-- also may not be the best plpgsql, so buyer beware):
>
>
> https://smathermather.wordpress.com/2010/05/26/multi-ring-buffers-in-postgis/
>
>  Depending on your geometry, this could be quite expensive
> computationally.
>
>  Best,
> Steve
>
>
>   [image: http://sig.cmparks.net/cmp-ms-90x122.png] Stephen V. Mather
> GIS Manager
> (216) 635-3243 (Work)
> clevelandmetroparks.com 
>
>--
> *From:* Gabriel Vatin [gabriel.va...@mines-paristech.fr]
> *Sent:* Friday, January 11, 2013 8:42 AM
> *To:* Chris Haste
> *Cc:* geoserver-users@lists.sourceforge.net
> *Subject:* Re: [Geoserver-users] Polygons with outlines using gradients
>
>  Hy Chris,
>
> If you can understand french, I found a tutorial on a blog about this
> question, some weeks ago. As Edward wrote it, you cna do it with buffers,
> and then display it wih different opacities.
> Here is the article : http://simonmercier.net/blog/?p=1214
>
> He creates buffers that do not overlap ("ring" buffers) on the server
> side, and then applie transparency and color with MapServer.
>
> Gabriel
>
> On 11/01/2013 14:34, Chris Haste wrote:
>
>  Thank you, Edward.
>
>
>
> I wouldn’t want to end up with the polygon being smaller, so would that
> approach still work if a positive value was used?
>
>
>
> *From:* Edward Mac Gillavry 
> [mailto:emacgilla...@hotmail.com]
>
> *Sent:* 11 January 2013 13:24
> *To:* geoserver-users@lists.sourceforge.net
> *Subject:* Re: [Geoserver-users] Polygons with outlines using gradients
>
>
>
> Chris,
>
> My approach would be to use the geometric transformation "buffer" several
> times on the polygon. Using a negative value, you would get polygons
> smaller than the input area. with every transformation you set a different
> colour to achieve a fading line effect, though generated using polygons.
>
> Kind regards,
>
> Edward
>  --
>
> From: cha...@airdata.co.uk
> To: geoserver-users@lists.sourceforge.net
> Date: Fri, 11 Jan 2013 08:10:38 -0500
> Subject: [Geoserver-users] Polygons with outlines using gradients
>
> Hello all,
>
>
>
> Is it possible to style polygons so that their outline appears as a
> gradient? I’d like to define a coastline, for example, using a line that
> is, say 5 pixels wide, but whose colour fades to transparent. The gradient
> should be oriented with the solid colour closest to the inside of the
> polygon and the lighter colour furthest away from the polygon.
>
>
>
> Not the best explanation, but hopefully you will understand what I mean!
>
>
>
> Thanks
>
>
>
> Chris
>
> *** This communication has been sent from World Fuel Services
> Corporation or its subsidiaries or its affiliates for the intended
> recipient
> only and may contain proprietary, confidential or privileged information.
> If you are not the intended recipient, any review, disclosure, copying,
> use, or distribution of the information included in this communication
> and any attachments is strictly prohibited. If you have received this
> communication in error, please notify us immediately by replying to this
> communication and delete the communication, including any
> attachments, from your computer. Electronic communications sent to or
> from World Fuel Services Corporation or its subsidiaries or its affiliates
> may be monitored for quality assurance and compliance purposes.***
>
>
> --
> Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and much
> more. Get web development skills now with LearnDevNow - 350+ hours of
> step-by-step video tutorials by Microsoft MVPs and experts. SALE $99.99

Re: [Geoserver-users] Allow using shapefile index if create spatial index checkbox not selected [SEC=UNCLASSIFIED]

2012-12-09 Thread Chris Holmes
Oh awesome. Truly our favorite type of user. Should have checked on
GeoTools list. Thanks for applying it Andrea.


On Sun, Dec 9, 2012 at 12:49 AM, Andrea Aime
wrote:

> On Sun, Dec 9, 2012 at 2:07 AM, Chris Holmes  wrote:
>
>> Hey Geoff, thanks for taking the time to dig in to the code and figure
>> out what's going on. You're our favorite type of user ;)
>
>
> Geoff already went to the geotools-user list, updated the patch following
> up feedback from Michael and me,
> created a jira, and I've applied his patch yesterday :-)
>
> 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
>
> ---
>
>
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Allow using shapefile index if create spatial index checkbox not selected [SEC=UNCLASSIFIED]

2012-12-08 Thread Chris Holmes
Hey Geoff, thanks for taking the time to dig in to the code and figure out
what's going on. You're our favorite type of user ;)

Thinking about your two options, I can't see any situation where a user
would actually want shapefile indexes disabled. So I'd say your patch as it
stands right now makes sense - no need to add another parameter to the
datastore that lets people turn the index off. We don't have that option in
like postgis or oracle.

To get it actually in the code base, I think there's two things that can
help to get a developer to review and get it in.

First, create a pull request in github -
https://help.github.com/articles/creating-a-pull-request  Their system is
great and afaik it's easier for developers to review their then to pull in
a patch from the list.

Second, create an issue in our jira tracker at
http://jira.codehaus.org/browse/GEOS And then just in a comment there put a
link to the github pull request. You could also directly attach the patch
there if you'd like.

Some others may have input during the review process, but from where I sit
this is a nice little improvement on the codebase. Thanks for digging in
and helping!

Chris


On Sun, Nov 25, 2012 at 9:09 PM, Geoff Williams wrote:

> Hi List,
>
> I've been noticing heavy IO/application lockup when serving large
> shapefiles with geoserver 2.2.1/geotools 8.3 under very heavy load
> simulated with JMeter.
>
> If the "Create spatial index if missing/outdated" option is left enabled,
> the whole system gets bogged down checking if indices were up-to-date.
>  Disabling this option speeds things up massively up but prevents the index
> being used altogether for WFS getfeature queries filtering by featureid, so
> these queries take minutes instead of seconds to return.
>
> Tracing the checkbox through the system, I ended up in the GeoTools
> project in the ShapeFileDataStoreFactory.java file.  I can see the checkbox
> value being used as a switch to enable/disable using the shapefile index:
>
> if (createIndex) {
> store = new IndexedShapefileDataStore(url, namespace,
> useMemoryMappedBuffer, cacheMemoryMaps, true, IndexType.QIX,
> dbfCharset);
> } else {
> store = new ShapefileDataStore(url, namespace,
> useMemoryMappedBuffer, cacheMemoryMaps, dbfCharset);
> }
>
> I'd really like to disable index updating in my production environment but
> I also want to be able to use shapefile indexes.  I've developed a rough
> and ready git patch against geotools 8.3 to allow this (attached).  The
> patch creates a new variable to always enable the index for local files.  I
> could rework this to use the param class and be set in the map that gets
> sent to createNewDataStore() Is there any interest in this?
>
> For GeoServer, the current checkbox label is a bit misleading, it took me
> a while to figure out why the indexes weren't being used.  Perhaps it could
> be changed to say something like "enable spatial index and update if
> missing/outdate" or split into two options if the GeoTools code is changed
> to support it:
>
> * Enable spatial index
> * Create spatial index if missing/outdated
>
> Would it possible to get this fix or something similar into GeoServer and
> Geotools?
>
> Thanks,
> Geoff
>
>
>
> --
> Monitor your physical, virtual and cloud infrastructure from a single
> web console. Get in-depth insight into apps, servers, databases, vmware,
> SAP, cloud infrastructure, etc. Download 30-day Free Trial.
> Pricing starts from $795 for 25 servers or applications!
> http://p.sf.net/sfu/zoho_dev2dev_nov
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Advanced GeoServer Training Nov. 19 and new Training page

2012-11-12 Thread Chris Holmes
Just a quick announcement for those who haven't seen the blog post on
training - http://blog.geoserver.org/2012/11/12/geoserver-trainings/

There's a new section of the website for training, see
http://geoserver.org/display/GEOS/Training

And at OpenGeo we're putting on a web-based Advanced GeoServer
training on November 19th (next monday). See
http://geoserver.eventbrite.com for more information. Should be a
great opportunity to get more out of your GeoServer, topics include
the REST configuration API, Web Processing Service, rendering
transformations like heatmaps and barnes surface interpolation, SQL
Views and more. Please join, as interest in early trainings will help
more companies be able to put on more regular classes.

(Note that the PSC discussed a general policy for posting trainings on
the user's list, which is that it's fine as long as the training is
only about GeoServer and its extensions, as we want users to be able
to get more help, but don't want this list to be filled with tons of
training posts. If we get too many pure GeoServer training posts we'll
likely change to some sort of digest / blog posts, but for now all are
encouraged to share pure GeoServer trainings here).

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] [Geoserver-devel] Starting GeoServer 2.2.1 Release process

2012-10-23 Thread Chris Holmes
Awesome! Thanks Alessio, and GeoSolutions for contributing the time.

On Tue, Oct 23, 2012 at 5:36 AM, Alessio Fabiani <
alessio.fabi...@geo-solutions.it> wrote:

> Dear all,
> I'm going to start the GeoServer 2.2.1 Release process.
>
> Regards,
> Alessio.
>
> ==
> Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
> information.
> ==
>
> Ing. Alessio Fabiani
> @alfa7691
> Founder/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  331 6233686
>
> http://www.geo-solutions.it
> http://twitter.com/geosolutions_it
>
> ---
>
>
>
> --
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_sfd2d_oct
> ___
> Geoserver-devel mailing list
> geoserver-de...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-devel
>
>
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] ServiceException - could not find layer

2012-10-20 Thread Chris Holmes
Huh. Yeah, shp2pgsql should make it all properly.

Other layers imported the same way work fine? It's just that layer that
messes up?

Does serving the shapefile by itself from GeoServer work?

On Sat, Oct 20, 2012 at 11:01 AM, Allan Oware  wrote:

> Hi Chris,
>
> I used shp2pgsql to import the layer shapefile to the database, hence
> primary key is defined for the layer table as implicit index and implicit
> sequence are created.
> Thanks for the tip, i'll try to find out what's wrong with the table/data
> since that's where the errors crop up.
>
>
> On Sat, Oct 20, 2012 at 4:57 PM, Chris Holmes  wrote:
>
>> Do you have a primary key defined on your layers?
>>
>> I _think_ that error is it trying to find an alternate primary key. You
>> can define that table if you're using views (that can't have a primary
>> key). But if you're just serving normal layers then defining a primary key
>> should work best.
>>
>> Also PostGIS 1.4 is 3+ years old at this point, you may have better luck
>> with a more recent version.
>>
>> On Sat, Oct 20, 2012 at 7:58 AM, Allan Oware  wrote:
>>
>>> Hi all,
>>> My GeoServer 2.1 installation is serving up wms layers from a postgis
>>> 1.4 store, the trouble is that I keep getting pink tiles when pulling the
>>> layers to a website using openlayers.
>>> The error report is as below:
>>>
>>>>> code="LayerNotDefined">
>>>   Could not find layer geoserver:schools
>>> 
>>>
>>> The above layer is obviously present since the layer preview works fine,
>>> GeoServer logs:
>>>
>>> 2012-10-20 11:01:07,578 INFO [geoserver.wms] -
>>> Request: getServiceInfo
>>> 2012-10-20 11:01:07,579 ERROR [geoserver.ows] -
>>> org.geoserver.platform.ServiceException: Could not find layer
>>> geoserver:schools
>>> at
>>> org.geoserver.wms.map.GetMapKvpRequestReader.parseLayers(GetMapKvpRequestReader.java:1180)
>>>  at
>>> org.geoserver.wms.map.GetMapKvpRequestReader.read(GetMapKvpRequestReader.java:204)
>>> at
>>> org.geoserver.wms.map.GetMapKvpRequestReader.read(GetMapKvpRequestReader.java:74)
>>>  at org.geoserver.ows.Dispatcher.parseRequestKVP(Dispatcher.java:1230)
>>> at org.geoserver.ows.Dispatcher.dispatch(Dispatcher.java:488)
>>>  at
>>> org.geoserver.ows.Dispatcher.handleRequestInternal(Dispatcher.java:231)
>>> at
>>> org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:153)
>>>  at
>>> org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:48)
>>> at
>>> org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:875)
>>>  at
>>> org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:809)
>>> at
>>> org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:571)
>>>  at
>>> org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:501)
>>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
>>>  at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
>>> at
>>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
>>>  at
>>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>>> at
>>> org.geoserver.filters.ThreadLocalsCleanupFilter.doFilter(ThreadLocalsCleanupFilter.java:23)
>>>  at
>>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
>>> at
>>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>>>  at
>>> org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:74)
>>> at
>>> org.geoserver.filters.SpringDelegatingFilter.doFilter(SpringDelegatingFilter.java:45)
>>>  at
>>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
>>> at
>>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>>>  at
>>> org.geoserver.platform.AdvancedDispatchFilter.doFilter(AdvancedDispatchFilter.java:49)
>>> at
>>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
>>>  at
>>> org.apache.catalina.core.Applic

Re: [Geoserver-users] ServiceException - could not find layer

2012-10-20 Thread Chris Holmes
Do you have a primary key defined on your layers?

I _think_ that error is it trying to find an alternate primary key. You can
define that table if you're using views (that can't have a primary key).
But if you're just serving normal layers then defining a primary key should
work best.

Also PostGIS 1.4 is 3+ years old at this point, you may have better luck
with a more recent version.

On Sat, Oct 20, 2012 at 7:58 AM, Allan Oware  wrote:

> Hi all,
> My GeoServer 2.1 installation is serving up wms layers from a postgis 1.4
> store, the trouble is that I keep getting pink tiles when pulling the
> layers to a website using openlayers.
> The error report is as below:
>
> code="LayerNotDefined">
>   Could not find layer geoserver:schools
> 
>
> The above layer is obviously present since the layer preview works fine,
> GeoServer logs:
>
> 2012-10-20 11:01:07,578 INFO [geoserver.wms] -
> Request: getServiceInfo
> 2012-10-20 11:01:07,579 ERROR [geoserver.ows] -
> org.geoserver.platform.ServiceException: Could not find layer
> geoserver:schools
> at
> org.geoserver.wms.map.GetMapKvpRequestReader.parseLayers(GetMapKvpRequestReader.java:1180)
>  at
> org.geoserver.wms.map.GetMapKvpRequestReader.read(GetMapKvpRequestReader.java:204)
> at
> org.geoserver.wms.map.GetMapKvpRequestReader.read(GetMapKvpRequestReader.java:74)
>  at org.geoserver.ows.Dispatcher.parseRequestKVP(Dispatcher.java:1230)
> at org.geoserver.ows.Dispatcher.dispatch(Dispatcher.java:488)
>  at
> org.geoserver.ows.Dispatcher.handleRequestInternal(Dispatcher.java:231)
> at
> org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:153)
>  at
> org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:48)
> at
> org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:875)
>  at
> org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:809)
> at
> org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:571)
>  at
> org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:501)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
>  at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
>  at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at
> org.geoserver.filters.ThreadLocalsCleanupFilter.doFilter(ThreadLocalsCleanupFilter.java:23)
>  at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>  at
> org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:74)
> at
> org.geoserver.filters.SpringDelegatingFilter.doFilter(SpringDelegatingFilter.java:45)
>  at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>  at
> org.geoserver.platform.AdvancedDispatchFilter.doFilter(AdvancedDispatchFilter.java:49)
> at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
>  at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at
> org.vfny.geoserver.filters.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:109)
>  at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> at
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>  at
> org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:394)
> at
> org.springframework.security.intercept.web.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:109)
>  at
> org.springframework.security.intercept.web.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83)
> at
> org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:406)
>  at
> org.springframework.security.wrapper.SecurityContextHolderAwareRequestFilter.doFilterHttp(SecurityContextHolderAwareRequestFilter.java:91)
> at
> org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
>  at
> org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:406)
> at
> org.springframework.security.ui.ExceptionTranslationFilter.doFilterHttp(ExceptionTranslationFilter.java:101)
>  at
> org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
> at
> org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:406)
>  at
> org.geonode.security.GeoNodeA

Re: [Geoserver-users] WMS request=getcapabilities takes a loooooooooooooong time to return

2012-09-21 Thread Chris Holmes
Thanks for offering the possibility to code! We always love new
contributors to GeoServer.

I'm not sure on the classes, Andrea can help with that. But seems like it
would ideally work in the same way the 'bounds' works. It was built the way
it is for the same issue - dynamic requesting of data can slow capabilities
documents a lot.

Perhaps we could do it in the same GUI call of the bounds on the
featureType? I mean, it seems to just be an extra dimension of the bounds.
So a user would hit 'generate bounds' and it would grab not only the
geographic bounds but also the time bounds. I'm just thinking that could be
nicer than two different buttons they have to hit.

And definitely would be good to get away from that fully dynamic generation
of any part of the capabilities document, we should try our best to make it
so the default experience is always both fast and fully standards
compliant. Better to have a user be able to choose 'dynamic mode' if they
want it generated every time, and default to a cached thing that performs
better, imho.

On Fri, Sep 21, 2012 at 3:01 PM, o ...  wrote:

>  Andrea,
>
> Thanks for you reply ! (we will be indexing ALL our time fields in the
> data tables that are seen by GeoServer).
>
> I might be game for coding. So lets suppose I add some kind of metadata to
> either the feature.xml or the layer.xml for each of my time-based layers.
>
> Can you suggest which java classes I need to change to read this new
> metadata ?
> And also the classes I'd need to change to STOP gathering the time-range
> from the database ?
>
> T
>
> --
> Date: Fri, 21 Sep 2012 17:40:44 +0200
> Subject: Re: [Geoserver-users] WMS request=getcapabilities takes a
> loong time to return
> From: andrea.a...@geo-solutions.it
> To: t...@hotmail.com
> CC: geoserver-users@lists.sourceforge.net
>
>
> On Fri, Sep 21, 2012 at 5:18 PM, o ...  wrote:
>
>  On GeoServer 2.2 RC3
>
> I have a set of time-enabled WMS layers.
>
> It looks like when a GetCapabilities is requested, geoserver goes out to
> the database and queries each data layer for the time-span of the data so
> that it can return the time "Extent" of the data. (It returns some thing
> like this in the XML returned from the getcapabilities).
>
>default="current">1984-02-14T00:01:08.000Z/2008-12-17T17:00:00.000Z/P24Y10M1W2DT12H58M52S
>
> Is there a way to set the extent in some meta-data file, so that the
> GeoServer would just grab that rather than do a query against the database ?
>
>
> Nope, that is fully dynamic today. You'd have to write code to support
> static dimension extents.
>
> 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
>
> ---
>
>
>
> --
> Got visibility?
> Most devs has no idea what their production app looks like.
> Find out how fast your code is with AppDynamics Lite.
> http://ad.doubleclick.net/clk;262219671;13503038;y?
> http://info.appdynamics.com/FreeJavaPerformanceDownload.html
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] 5 seconds to render 130, 000 points -typical GeoServer WMS performance?

2012-08-17 Thread Chris Holmes
You  might try the same layer on postgis and see how it performs. I think
Oracle doesn't perform quite as well. I believe OpenGeo has a contract
coming soon to improve the performance on Oracle, with a plan to look in to
some of these bottlenecks.

On Fri, Aug 17, 2012 at 1:21 PM, cheesybiscuits
wrote:

> [GeoServer 2.1.3 (standard non-native JAI), Oracle (Locator) 11.1.2, CentOS
> 64-bit, Java 1.6]
>
> I'm working on a project that has previously mapped up to 50,000 point
> features and a similar number of line features connecting them. Performance
> from GeoServer has been great (two thumbs up).
>
> The dataset was recently pushed to 130,000 points and performance
> nose-dived. I'm in the middle of investigations into resource usage, the
> potential for memory / disk swapping etc, but I was hoping to get a feel
> from other GeoServer users on whether this was normal - perhaps what I'm
> seeing is standard?
>
> In a single WMS 1.1.1 request I am rendering 130,000 point features.
> Locations are stored in Oracle in WGS84 lat/lon with a default r-tree
> spatial index. Points are styled with the default point SLD (red square, no
> external graphic) and no filter criteria are applied in SQL other that an
> SDO_RELATE on the bbox. No projection occurs other than getting the
> lat/longs onto a 2D image. From looking at Oracle traces and
> GeoServer-GeoTools logs this is what I think happens:
>
> - Oracle receives a very basic query from GeoServer. Returning a result
> takes around 2.5 seconds (there could be separate Oracle performance issues
> here that need addressing, but for now I want to focus on GeoServer).
> - GeoServer seems to ask for the results in batches of 200 (Oracle reports
> 600+ occurences of waiting for instructions from the client) and renders
> each feature as it comes back.
> - After the Oracle query completes GeoServer takes 5 seconds to request and
> draw 130,000 features with default red square.
>
> 5 seconds seems like a long time for 130,000 features with very basic
> styling. Does this indicate a problem?
>
> I am yet to really dig into resource usage but I think I saw that Java was
> consuming several GB of memory, which I think pushes it into swap space and
> I know this will slow things down. Is it reasonable for Java to use so much
> memory for such simple rendering?
>
> I am hoping to try native JAI soon but my gut tells me that although this
> might help there could be a more fundamental problem here.
>
> Any thoughts or previous experience with this type of problem would be
> **very** much appreciated.
>
>
>
> --
> View this message in context:
> http://osgeo-org.1560.n6.nabble.com/5-seconds-to-render-130-000-points-typical-GeoServer-WMS-performance-tp4995984.html
> Sent from the GeoServer - User mailing list archive at Nabble.com.
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] WMS performance

2012-05-07 Thread Chris Holmes
On Mon, May 7, 2012 at 3:42 PM, Andrea Aime
 wrote:
> On Mon, May 7, 2012 at 5:30 PM, Chris Holmes  wrote:
>>
>> It should, though you have to be sure you've also enabled direct WMS
>> integration in GeoWebCache, or it'll just a small in memory tile thing in
>> geoserver. I think in 2.1.3 there's an option to turn it on in the geoserver
>> admin.
>
>
> Direct GWC integration + tile requests matching an official GWC grid,
> otherwise you end up
> on the standard WMS path.
> Better, imho, to hit directly GWC, if a request is not cacheable because
> outside of the
> pre-defined grid you at least get back an error message
>

+1. _especially_ when testing.

> Chrees
> Andrea
>
> --
> Ing. Andrea Aime
> GeoSolutions S.A.S.
> Tech lead
>
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
>
> phone: +39 0584 962313
> fax:      +39 0584 962313
> mob:    +39 339 8844549
>
> http://www.geo-solutions.it
> http://geo-solutions.blogspot.com/
> http://www.youtube.com/user/GeoSolutionsIT
> http://www.linkedin.com/in/andreaaime
> http://twitter.com/geowolf
>

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] WMS performance

2012-05-07 Thread Chris Holmes
It should, though you have to be sure you've also enabled direct WMS
integration in GeoWebCache, or it'll just a small in memory tile thing in
geoserver. I think in 2.1.3 there's an option to turn it on in the
geoserver admin.

On Mon, May 7, 2012 at 10:23 AM, Paul Meems  wrote:

> Imran,
>
> I will have a look, but I've always understood using tiled=true would fix
> this for me.
>
> Thanks,
>
> Paul
>
>  *Paul Meems *
> Release manager, configuration manager
> and forum moderator of MapWindow GIS.
> www.mapwindow.org
>
> Owner of MapWindow.nl - Support for
> Dutch speaking users.
> www.mapwindow.nl
>
> *
> *
>
>
>
> 2012/5/7 Imran Rajjad 
>
>> here is the problem, you are not using cached layer, neither you are
>> hitting gwc.
>>
>> "Assen: Zonnepanelen", "http://myISP/geoserver/MyApp/wms";,
>>
>>
>>
>> if you have cached the layer, go to the demo page of gwc ,you should be
>> able to see the cached layers through openlayers, check the source of that
>> page to see how to use a gwc layer in openlayers. your url should look
>> something like  http://myISP/geoserver/gwc/service/wms/. (hope I got
>> that right)
>>
>> for more check this page
>> http://docs.geoserver.org/stable/en/user/geowebcache/demopage.html
>>
>> regards,
>> Imran
>>
>> On Mon, May 7, 2012 at 6:54 PM, Paul Meems wrote:
>>
>>> Thanks Imran,
>>>
>>> I'm using Tomcat and I've attached part of my source code.
>>>
>>>
>>> Thanks,
>>>
>>> Paul
>>> --
>>> Organizing the International Open Source GIS conference 2012 in The
>>> Netherlands:
>>> http://www.mapwindow.org/conference/2012/
>>>
>>>
>>> 2012/5/7 Imran Rajjad 
>>>
 the tiles are in your datadir/gwc .. you can verify it. can you show
 the openlayers source, which you are using to access the cached layer?
 secondly what container are you using?

 regards,
 Imran


 On Mon, May 7, 2012 at 6:40 PM, Paul Meems wrote:

> Thanks Imran,
>
> After writing my mail to this list I've continued trying and found
> that if I don't use palette: 'safe' in OpenLayers the speed is as 
> expected:
> fast.
> The size of the tiles grow a bit (20%) but the overall speed
> improvement is huge.
>
> I don't have a specific reason the use the palette option, I just came
> across it while learning OL.
>
> I still want to know where the tiles go to on the server, just to
> understand it better.
>
>
> Thanks,
>
> Paul
> --
> Organizing the International Open Source GIS conference 2012 in The
> Netherlands:
> http://www.mapwindow.org/conference/2012/
>
>
>
> 2012/5/7 Imran Rajjad 
>
>> can you please post your openlayers code for that cached layer? and
>> what j2ee container are you using?
>>
>> regards,
>> Imran
>>
>> On Mon, May 7, 2012 at 5:05 PM, Paul Meems wrote:
>>
>>> Hi,
>>>
>>> I'm new to this list. I'm Paul I'm from The Netherlands and I'm in
>>> the process of making a simple WebGIS with just viewing capabilities.
>>> I have a cloud server running Ubunto. GeoServer v2.1.3 and
>>> PostGreSQL v9.1 with PostGIS.
>>>
>>> All is running well except for the performance. It takes very long
>>> to show my WMS data in OpenLayers.
>>> I have enabled GeoWebCache and am using tiled: true, format:
>>> 'image/png8' and palette: 'safe'.
>>>
>>> I have pre-seeded my layer and I see on the Cached Layers page of
>>> the GeoServer admin that it is using 44MB.
>>> So far so good, but somehow I'm not certain my OpenLayers
>>> application is using these tiles. Also because I would suspect that 
>>> even if
>>> I didn't seeded correctly the tiles would be generated on the fly.
>>> And thus following visits to my page would be faster. But my initial
>>> start at zoom level 12 and I need 46 tiles, this takes between 2.5 and 3
>>> minutes to load.
>>> Much to slow!
>>> The tile sizes are from 35kB - 290b.
>>> This is the request I make;
>>>
>>> http://myIP/geoserver/myApp/wms?LAYERS=myLayername&FORMAT=image%2Fpng8&TRANSPARENT=TRUE&PALETTE=safe&TILED=true&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&SRS=EPSG%3A3857&BBOX=728903.50162598,6980840.9182568,733795.47143555,6985732.8880664&WIDTH=256&HEIGHT=256
>>>
>>> I tried looking for the tiles on my Ubunto server. I was expected a
>>> directory structure with a lot of subdirs with numbers (zoomlevels, X 
>>> and
>>> Y) and eventually the png files.
>>> But I can't find it. I must say I'm still a novice with Ubuntu so I
>>> might not be searching correctly or the tiles are not saved to disk.
>>>
>>> Can anybody point me in the correct direction about solving this
>>> performance issue?
>>>
>>> Thanks,
>>>
>>> Paul
>>>
>>> --
>>> Organizing the International Open Source GIS conference 2012 in The
>>> Netherlands:
>>> http:/

Re: [Geoserver-users] REST API layer thumbnails?

2012-04-16 Thread Chris Holmes
Well if it's useful to both of you in the context of the REST API it's
probably worth at least putting a link to the docs from somewhere in
the REST docs. Patches welcome, especially for docs (and indeed if
there's other REST stuff you've discovered and have some time to
document it'd be super welcome documentation).

We also could potentially consider a shortcut in the REST API to the
reflector, so you could use the same layer endpoint to get a
visualization. Though that probably warrants a larger conversation, as
it takes us from a REST API just for configuration to more
functionality.

On Sun, Apr 15, 2012 at 9:54 PM, Jay L.  wrote:
> How the heck did I miss that in the documentation! Too much focus on the
> REST API maybe!
>
> Facepalms as well!
>
> Thanks all for the info.
>
>
> On Sun, Apr 15, 2012 at 9:45 PM, Adon Metcalfe 
> wrote:
>>
>> Facepalm - that's much better, also has great docs =)
>>
>> http://docs.geoserver.org/latest/en/user/tutorials/wmsreflector.html
>>
>>
>> On Mon, Apr 16, 2012 at 9:37 AM, Gabriel Roldan 
>> wrote:
>>>
>>> On Sun, Apr 15, 2012 at 10:23 PM, Adon Metcalfe 
>>> wrote:
>>> > I had the same problem and ended up crafting a WMS GetMap request based
>>> > on
>>> > the bounding box retreived via REST, with a proportional size, e.g.
>>> >
>>> > GET /geoserver/rest/workspaces/myworkspace/featuretypes/mylayer.json
>>> >
>>> > """
>>> > 'latLonBoundingBox': {u'crs': u'EPSG:4326',
>>> >    u'maxx': 129.00192885,
>>> >    u'maxy': -10.412389867,
>>> >    u'minx': 96.816817116,
>>> >    u'miny': -35.189938267},
>>> > """
>>> > then create url like:
>>> >
>>> > GET
>>> >
>>> > /geoserver/myworkspace/wms?STYLES=&LAYERS=mylayer&SERVICE=WMS&FORMAT=image/png&MAXFEATURES=10&REQUEST=GETMAP&SRS=EPSG:4326&HEIGHT=395&WIDTH=800&VERSION=1.1.1&BBOX=96.816817116,-10.412389867,129.00192885,-35.189938267
>>> >
>>> > I'm proportionally calculating the pixels from the ratio of x/y, it
>>> > does the
>>> > job =)
>>>
>>> hint: you can save yourself some work by using the wms reflector
>>> instead. For example:
>>> 
>>> It till fill up automatically any missing parameter to some sensible
>>> default.
>>>
>>> Cheers,
>>> Gabriel
>>> >
>>> > On Mon, Apr 16, 2012 at 9:03 AM, Jay L.  wrote:
>>> >>
>>> >> List,
>>> >>
>>> >> I am using the REST API to create a layer picker (using openlayers)
>>> >> which
>>> >> programmatically displays the the available wms layers in a given
>>> >> workspace.  In this way users can explore the layer metadata prior to
>>> >> adding
>>> >> them to the map and thereby reducing load time so lots of layers are
>>> >> not
>>> >> loaded onto the page.
>>> >>
>>> >> I want to provide the user with a representative thumbnail of the
>>> >> image in
>>> >> this layer picker.  I am currently doing this via a flat file system
>>> >> where I
>>> >> take a screenshot of the layer in QGIS and then resize it for display
>>> >> on the
>>> >> webpage.  The metadata is loading programmatically, but the thumbnails
>>> >> are
>>> >> hand codednot good!
>>> >>
>>> >> Is it possible to access a preview of a wms layer via the REST API?
>>> >>
>>> >> Thanks,
>>> >> Jay
>>> >>
>>> >>
>>> >>
>>> >> --
>>> >> For Developers, A Lot Can Happen In A Second.
>>> >> Boundary is the first to Know...and Tell You.
>>> >> Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
>>> >> http://p.sf.net/sfu/Boundary-d2dvs2
>>> >>
>>> >> ___
>>> >> Geoserver-users mailing list
>>> >> Geoserver-users@lists.sourceforge.net
>>> >> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>> >>
>>> >
>>> >
>>> >
>>> > --
>>> > Regards,
>>> >
>>> > Adon Metcalfe
>>> >
>>> >
>>> > --
>>> > For Developers, A Lot Can Happen In A Second.
>>> > Boundary is the first to Know...and Tell You.
>>> > Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
>>> > http://p.sf.net/sfu/Boundary-d2dvs2
>>> >
>>> > ___
>>> > Geoserver-users mailing list
>>> > Geoserver-users@lists.sourceforge.net
>>> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>> >
>>>
>>>
>>>
>>> --
>>> Gabriel Roldan
>>> OpenGeo - http://opengeo.org
>>> Expert service straight from the developers.
>>
>>
>>
>>
>> --
>> Regards,
>>
>> Adon Metcalfe
>
>
>
> --
> For Developers, A Lot Can Happen In A Second.
> Boundary is the first to Know...and Tell You.
> Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
> http://p.sf.net/sfu/Boundary-d2dvs2
>
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinf

Re: [Geoserver-users] To tile or not to tile

2012-04-13 Thread Chris Holmes
If you truly can't do any caching then I'd guess arbitrary maps would
perform slightly better. Less requests to the server for each view
you're looking at.

But you probably could cache tiles in your use case. Could use
parameter filters in GeoWebCache -
http://geowebcache.org/docs/current/configuration/layers/parameterfilters.html

These will make a series of caches based on whatever free parameter
you want. So you should be able to do it on your SQL parameter.
Combine that with some disk quota configuration so you end up just
caching the most requested tiles and you should have a decent cache
for the requests that are issued most often.

On Fri, Apr 13, 2012 at 4:05 AM, Ragnvald Larsen
 wrote:
> I have been looking for some statistics on differences in efficiency for
> Geoserver in providing map tiles or arbitrary maps. Tile caching is not an
> option in one of our projects due to the use of SQL parameter WMS services
> (http://www.mindland.com/wp/?p=121).
>
>
>
> Any statistics or sources for further information are interesting.
>
>
>
> Cheers,
>
>
>
> Ragnvald
>
>
>
>
> --
> For Developers, A Lot Can Happen In A Second.
> Boundary is the first to Know...and Tell You.
> Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
> http://p.sf.net/sfu/Boundary-d2dvs2
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Which would be fastest - WMSGetFeatureInfo, or WFS DWithin Spatial filter

2012-02-28 Thread Chris Holmes
The best solution to this will be to implement UTFGrid output from
GeoServer.  See OpenLayers example at
http://tschaub.net/openlayers/examples/utfgrid.html

Will take a decent bit of development effort, as it gets in to core
rendering stuff.  But will be awesome if we build it right.

On Tue, Feb 28, 2012 at 4:51 PM, Andrea Aime
 wrote:
> On Tue, Feb 28, 2012 at 3:01 AM, Phil Scadden  wrote:
>> Wanting to implement some "on hover" function on a map and whether best
>> to issue WMS or WFS requests?
>
> Hmm... probably neither? At least, not if you are issuing a new
> request each time
> the user moves the mouse.
>
> Ideas:
> - use GetFeatureInfo, but issue the request only if the user position
> changed enough
>  from the last position (2-3 pixels?)
> - use GetFeature, but load a larger area in the client and then hit
> that one until the
>  mouse position gets out of the previously loaded area. The tricky
> part si balancing
>  the area size with the need to keep the amount of features loaded small
>
> Cheers
> Andrea
>
> --
> ---
> Ing. Andrea Aime
> GeoSolutions S.A.S.
> Tech lead
>
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
>
> phone: +39 0584 962313
> fax:      +39 0584 962313
> mob:    +39 339 8844549
>
> http://www.geo-solutions.it
> http://geo-solutions.blogspot.com/
> http://www.youtube.com/user/GeoSolutionsIT
> http://www.linkedin.com/in/andreaaime
> http://twitter.com/geowolf
>
> ---
>
> --
> Keep Your Developer Skills Current with LearnDevNow!
> The most comprehensive online learning library for Microsoft developers
> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
> Metro Style Apps, more. Free future releases when you subscribe now!
> http://p.sf.net/sfu/learndevnow-d2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Accessing REST from ArcGIS server in Geoserver

2012-02-16 Thread Chris Holmes
On Thu, Feb 16, 2012 at 9:32 AM, Fredrik Holmqvist
 wrote:
>> From: Chris Holmes [mailto:chol...@opengeo.org]
>> To do it within GeoServer we'd need to write a ArcGIS Server datastore,
>> which would work similar to the WFS datastore and the WMS store.  No one
>> has done that, but it'd definitely be a cool enhancement, to be able to
>> cascade an ArcGIS Server.
>>
>> If you do just want to use it as a backdrop map though OpenLayers and
>> GeoExt both support talking to ArcGIS Server, so you could just call it from
>> there and not go through GeoServer.
>>
>> Chris
>>
> Hi,
> We do have such a plugin that work for certain ImageServer services exposed 
> thru REST.
> We have been planning to release it publically, but it has been on the 
> backburner for quite some time.
>
> As it's very little code (ImageServerFormat, ..Reader and ...Factory) maybe 
> someone could help move it to a more appropriate place.
>

I'd guess the best place to start would be a GeoServer community
module.  See 
http://docs.geoserver.org/latest/en/developer/policies/community-modules.html

If you're willing to shepherd it and may continue to work on it then
we can probably get you approval pretty easily, and then you just get
a space on the GeoServer svn to play with.  And others would then be
able to help expand it.

If you have very little time then you could just attach it to a patch
and hope someone else might pick it up.  But an arcgis store community
module would be appreciated by many people I believe.

Chris


> Fredrik Holmqvist
> Metria AB, http://www.metria.se
>
> --
> Virtualization & Cloud Management Using Capacity Planning
> Cloud computing makes use of virtualization - but cloud computing
> also focuses on allowing computing to be delivered as a service.
> http://www.accelacomm.com/jaw/sfnl/114/51521223/
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users

--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] mbtiles support

2012-02-02 Thread Chris Holmes
Hey Steven, if you're use is just the most compact raster source then
I think a lossless compression format like mrsid / ecw / jpg2000 may
serve you a lot better. MBTiles certainly is an improvement over a
bunch of tiles on disk, as it cuts out the disk blocks.  But that's
about the only gain you get afaik, while the lossless formats actually
do get some serious compression.

A little searching on the web lead to this: 'Now for the kicker - size
and number of files: MrSID - 80.4 MBs and 2 files; JPG - 21.5 MBs and
3 files; JPG2000 - 4.5 MBs and 3 files; GeoTIFF 24-bits - 121.8 MBs
and 1 file; GeoTIFF 8-bit - 10.4 MBs and 1 file. Clearly, the JPG2000
packs the greatest image bang for your MBs.'

>From 
>http://www.evs-islands.com/2008/08/comparison-mrsid-jpg-jpg2000-geotiff-24.html

A word of warning with H2 - I made a similar recommendation to your
architecture and had someone get burned with data corruption.  This
was a couple years ago, so it may be better now, but it's tough if
anything goes wrong with H2 because there's not lots of tools to get
in and diagnose and do backups and the like.

Note also that GWC can support WMS directly, by under/over sampling
tiles to combine in to the image requested.  It can't reproject, but
should allow client access.

One big question with MBTiles in GeoServer is if it should be a
coverage format, or just read direct by GeoWebCache.  Recently I
convinced myself of the latter.  You could do either, but I think
doing it in a coverage format breaks some expectations.  It works
great if the MBTiles are just pure raster data.  But if it had vector
data go in to it at all then sticking that through a WMS is likely
going to make things look crappy, as you'll be sampling and projecting
rasterized vectors.  The other thing is the UTFGrid interaction stuff,
which would be entirely lost if you do a coverage reader, but could be
incorporated in GWC.  So that if someone made an MBTiles file with
utfgrids they could work.  And just in general doing it in GWC I feel
sets the expectation more properly, that it's tiles.

I believe MBTiles should be thought of as more an interactive display
format.  It's like the modern version of a printed map - something a
designer composes to be exactly as they want.  Treating it as a raster
datastore I think only works unless you're just doing pure raster data
in it.  But it's not a great format for pure raster data, because it
only has one projection, one tile size, etc.  I think there is a need
for a tile format for mobile devices, but MBTiles would need to evolve
a bit to meet that.  But then it risks sacrificing its simplicity.

On Tue, Jan 31, 2012 at 8:08 AM, Steven Siebert
 wrote:
>
> Hi Edward,
>
> I realize the typical use case for mbtiles, but my scenario is a little 
> different than most.  What I am seeking is the most compact (disc size) 
> raster source possible, and based on the research of my colleague, mbtiles 
> what the industry uses to cache tile data on smart phones etc, so he 
> theorizes this is the most compact.  I have him running tests to prove this 
> claim at the moment, which seems interesting to me as compressing image 
> binaries (aside from deduplication) isn't usually that significant.  In the 
> mean time, I wanted to test the waters for community interest in this - your 
> response was very helpful in this regard.
>
> My use case is that I would like make a version of my web application 
> (currently bundled as an EAR, dependent on GIS services) easily deployable to 
> nodes that are often offline or with very poor communications.  These nodes 
> will have no IT support, so they really need a double-click/service run sort 
> of operation.  Rather than write a thick client application, which I will 
> have to maintain with an already understaffed/small team, I am looking to 
> leverage an embedded application server (glassfish) to serve as a container 
> for my apps and geoserver (war) both backed by an H2 database (for relational 
> an vector/metadata).  Geoserver would serve as an offline/local GIS solution 
> for each node, which I would initially seed with some raster data but would 
> receive updates through a remote management service.  What I am looking 
> toward mbtiles for is a compact raster source.  A second (smaller) advantage 
> is it's small disc footprint in terms of number of (small/very small) files.  
> Since many of these deployments will be on file systems that need to be 
> regularly defragmented, I don't want to cause users to have to do this type 
> of "administrative" work (especially since they might not by delegated the 
> permission to do so).
>
> I did initially see that GeoWebCache supported this and provides WMTS (which 
> is great).  I initially suggested we use GeoWebCaches ability to register 
> tiles programmatically via it's REST API to seed the cache and use this 
> service, but the team made a good point in that that wouldn't give WMS 
> services, which is important for many oth

Re: [Geoserver-users] WFS 2.0.0 stable release ?

2012-01-24 Thread Chris Holmes
The implementation is quite complete.  It'll be in the next (first) 2.2.x
release.  That will probably be a beta release, and will take a bit of time
to get stable.  Afaik no one has definite plans / timeline to do that
release, but it could be soon, as there's lots of nice stuff (complex
features, time, workspace improvements, security improvements) that would
be good to start to get out to people to test.

If you happen to have funding you could likely contract someone to push a
beta release out, or even to push it to 2.2.0.

On Tue, Jan 10, 2012 at 8:31 AM, Alexandre Viard
wrote:

> Hello,
>
> I was looking for a WFS 2.0 server and I found in the Geoserver
> Roadmap that the 2.1.x release would support WFS 2.0.
> The current stable release 2.1.3 does not support it .
>
> After some search I discovered a WFS 2.0 implementation in the geoserver
> trunk.
> In which state is this implementation ? Would it be in the next release ?
>
>
> Best regards
>
> --
> Alexandre Viard 
>
>
> --
> Keep Your Developer Skills Current with LearnDevNow!
> The most comprehensive online learning library for Microsoft developers
> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
> Metro Style Apps, more. Free future releases when you subscribe now!
> http://p.sf.net/sfu/learndevnow-d2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Open Google Doc Spreadsheet on Geoserver

2012-01-05 Thread Chris Holmes
Currently no.

Google Fusion tables probably make more sense than straight google doc
spreadsheet, as they have spatial types and I don't believe spreadsheets
do.  But I guess you could do like x,y in a spreadsheet.  Or if we had cool
joining capabilities it'd be possible.

But we don't even have Google Fusion table support yet.  So probably pretty
far away from being able to meet your needs, but an interesting thought.

Chris

On Thu, Jan 5, 2012 at 10:13 PM, Nomeneta Saili wrote:

> Hi People,
>
> Just wondering if Geoserver can open Google docs spreadsheet on Geoserver.
> Say for example if you edit the tabular data on Google doc spread sheet the
> attribute data will also change on Geoserver.
>
> Cheers
>
>
>
>
>
> --
> Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex
> infrastructure or vast IT resources to deliver seamless, secure access to
> virtual desktops. With this all-in-one solution, easily deploy virtual
> desktops for less than the cost of PCs and save 60% on VDI infrastructure
> costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex
infrastructure or vast IT resources to deliver seamless, secure access to
virtual desktops. With this all-in-one solution, easily deploy virtual 
desktops for less than the cost of PCs and save 60% on VDI infrastructure 
costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Searching for cause of OutOfMemory exceptions

2011-12-22 Thread Chris Holmes
First question is probably what version of geoserver are you using?  And if
anything but the latest have you tried upgrading to the latest?

On Thu, Dec 22, 2011 at 8:56 AM, Jesse Eichar
wrote:

> Hi,
>
> We are having to restart Geoserver once a week because of OutOfMemory
> errors.  I wanted to see if anyone knows of particular configurations that
> can cause this.  Rough statistics of our server:
>
>
>- 6GM RAM
>- 71 Stores
>- 381 Layers
>- 45 Workspaces
>- Most raster data is ECW and most of those are ImageMosaics
>- 27-30 of the Vector Stores are postgis (We are not yet using JNDI
>but I am trying to find time to set that up).  We have set the connections
>perstore to 2 for most of them and have 200 permitted connections so we are
>not running out of connections
>- We have at least one JP2ECW Stores
>- We have a couple proxied WMS Stores
>- Some raster stores are published multiple times in different
>workspaces
>- We heavily use "virtual" workspaces
>
>
> Any ideas where I should look for the memory leak?
>
> Thanks,
>
> jesse
>
>
> --
> Write once. Port to many.
> Get the SDK and tools to simplify cross-platform app development. Create
> new or port existing apps to sell to consumers worldwide. Explore the
> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
> http://p.sf.net/sfu/intel-appdev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] wps and service area

2011-12-20 Thread Chris Holmes
Note there's some open source code that can handle this, and there are some
plans to try to bring it in to GeoServer WPS in the next six months or so.

The core project is http://opentripplanner.org which has built a really
vibrant open source community with a number of deployments in multi-modal
trip planning.

But the cooler thing is http://analyst.opentripplanner.org/ - taking that
core functionality and turning it to processes for analysis.

I'm not sure what kind of skills / resources you have Fabio, but if you
want to help on getting those process in to GeoServer that'd be really
great.

On Fri, Dec 16, 2011 at 6:56 AM, Fabio D'Ovidio wrote:

> Hello list,
> is there a way by using Geoserver as a WPS to calcute and display a
> Service Area given a network, a facilitiy and a list of distances (may be
> by using PgRouting and PostGIS?).
> Thank you very much.
>
> Fabio
>
>
> --
> Learn Windows Azure Live!  Tuesday, Dec 13, 2011
> Microsoft is holding a special Learn Windows Azure training event for
> developers. It will provide a great way to learn Windows Azure and what it
> provides. You can attend the event by watching it streamed LIVE online.
> Learn more at http://p.sf.net/sfu/ms-windowsazure
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Status INSPIRE WFS in GeoServer

2011-08-31 Thread Chris Holmes
Oh, and a note for everyone reading this thread, that I learned recently:

AppSchema works much, much better on trunk (2.2) of GeoServer than 2.1
or 2.0.  It got a lot of performance and scalability improvements, and
is running in production for GeoSciML.  You can get nightlies from
http://gridlock.opengeo.org/geoserver/trunk/

Also talked with CSIRO and we agreed it'd be a good idea to put out a
beta or alpha release off of trunk soon.  Need to figure out if we can
find the time to merge in WFS 2.0 stuff soon, along with any other
stuff people may have ready for trunk, but either way it'd be good to
have an easier to use release of all the AppSchema improvements.

On Wed, Aug 31, 2011 at 8:30 PM, Just van den Broecke
 wrote:
> Hi Emmanuel et al,
>
> Thanks for your responses, clarifies things. Is your work on "DB schema
> generation based on INSPIRE XSD" publicly available somewhere ?
>
> @justin (about WFS 2.0), WFS 2.0 is a nasty beast ! On the bright side
> it may well be that INSPIRE will allow WFS 1.1.0 as well just like they
> dropped the hard need for WMS 1.3 and allowed WMS 1.1.1 for View services.
>
> Maybe talk to some of you further in Denver, best,
>
> --Just van den Broecke
>
>
> On 30-08-11 14:15, Emmanuel Séguin wrote:
>> Hi,
>>
>> I'm working at IGN France and I'm currently in charge of the
>> Geoserver/WFS 2.0.0/INSPIRE WFS case.
>>
>> My answers in the body of your email
>>
>> On 08/30/2011 12:38 PM, Just van den Broecke wrote:
>>> Hi,
>>>
>>> In november 2012 EU dataproviders need to make the so called "INSPIRE
>>> Download Services" [1] available. In practice this will be WFS 2.0
>>> serving GML 3.2.1 data as specified by the ISO GML Application Schemas
>>> in the INSPIRE Data Specifications ("Annexes") [2]. The effort to comply
>>> with this will be considerably larger than with "INSPIRE View Services"
>>> which was mainly supplying WMS 1.3 with some INSPIRE-specific Metadata
>>> in GetCapabilties. I am aware of the GeoServer INSPIRE WMS plugin, in
>>> fact we use the plugin in the Dutch national SDI project PDOK [3].
>> Ok we're also using/patching this plugin.
>>> The main effort for supplying an "INSPIRE WFS" lies in the fact that
>>> local national data needs to be transformed and served as INSPIRE GML.
>>> Where/how transformation is performed is up to implementors: offline,
>>> e.g. via an ETL process, or "on-the-fly" during WFS request processing.
>>> Practical experience from the past 2 years in e.g. www.esdin.eu favoured
>>> offline ETL or combined methods. Through the INSPIRE FOSS project [4] we
>>> try to make FOSS components for INSPIRE available for ETL, services and
>>> validation/testing. Some documetation can be found here [5].
>>>
>>> Ok, back to my question: I have heard about work being done on GeoServer
>>> (by IGN France?) for INSPIRE WFS, but cannot find further info.
>> At the beginning of this year IGN france has issued a call for tender
>> for implementing the WFS 2.0.0 standard in GeoServer 2+.
>>
>> OpenGeo has been in charge of the implementation. For now, IGN France is
>> validating the development done by OpenGeo.
>>
>> Nevertheless it's highly probable that the following WFS 2.0.0 standard
>> features won't be delivered :
>>
>> * Local and Remote Resolve
>> * Inheritance
>> * GetPropertyValue
>>
>> The main reason why these features won't be delivered is that they are
>> closely linked with the AppSchema plugin. AppSchema is a GeoServer
>> plugin developped outside of the GeoServer community enabling the
>> dissemination of complex geographical entities with Geoserver WFS. As a
>> result OpenGeo doesn't have a complete mastery of the AppSchema code and
>> cannot fit the development of these WFS 2.0.0 features in the original
>> deal.
>> IGN France is currently trying to find an agreement with CSIRO (the guys
>> developing AppSchema) and OpenGeo to try and include these features in
>> the WFS 2.0.0 implementation.
>>
>> Another INSPIRE-relevant bug has been detected in the current WFS 2.0.0
>> implementation => The GML 3.2.1 produced is not 100% valid (missing
>> gml:id). The bug is actually a GeoTools bug and will probably not be
>> fixed in the current call for tender.
>>
>> For INSPIRE compliance IGN France was considering issuing a second call
>> for tender in order to deal with the Technical Guidance and INSPIRE
>> regulation requirements (metadata linkage, extended capabilities, ...)
>>> Specifically I would like to know the architectural direction that is
>>> taken, for example w.r.t. transformation/ETL. e.g. is the GS/GT Complex
>>> Feature Store used as is and is the extension mainly WFS 2.0 and GML
>>> 3.2.1 support ?
>> For now the process we are considering with GeoServer is :
>> * Data Preparation : Transforming our datasets original schema to an ad
>> hoc database schema
>> * AppSchema mapping file generation : Generating AppSchema ORM mapping
>> to define the inspire-schema features to be disseminated
>> * On the fly output transformation :

Re: [Geoserver-users] WMS

2011-08-26 Thread Chris Holmes
I know Gabriel has a way of looking at the headers in the response,
but I forget exactly what that is.

What I do is look at the GWC page in GeoServer in the disk quota
section.  If you move around the map some and then reload that page
the amount of data cached should increase.  You can check to be sure
there are differences by checking maps on the GWC end point, as it
always caches.

On Sat, Aug 27, 2011 at 4:08 AM, Stephen V. Mather
 wrote:
> Hi All,
>
>                Any tips on testing whether directWMSIntegration on GWC for
> GeoServer is working as expected (other than speed of request)?
>
>
>
> Thanks,
>
> Steve
>
>
>
> http://www.clemetparks.com/images/esig/cmp-ms-90x122.pngStephen Mather
> Geographic Information Systems (GIS) Manager
> (216) 635-3243
>
> s...@clevelandmetroparks.com
>   clevelandmetroparks.com
>
>
>
>
>
>
>
>
>
>
> --
> EMC VNX: the world's simplest storage, starting under $10K
> The only unified storage solution that offers unified management
> Up to 160% more powerful than alternatives and 25% more efficient.
> Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>

--
EMC VNX: the world's simplest storage, starting under $10K
The only unified storage solution that offers unified management 
Up to 160% more powerful than alternatives and 25% more efficient. 
Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] getting back an array of raster data in txt

2011-07-29 Thread Chris Holmes
Using the WCS should allow you to do that (and a lot more).  Can read up on
it at http://www.opengeospatial.org/standards/wcs  GeoServer supports 1.0
and 1.1

On Thu, Jul 28, 2011 at 3:38 PM, Chang, Elizabeth W. wrote:

> Is there a service that is similar to getfeatureinfo but without having to
> specifying a pixel? I would like to get the values in a raster using a
> bounding box and have Geoserver return to me a set of values in one request.
> 
>
> ** **
>
> Thanks much,
>
> -Elizabeth Chang
>
> MITRE
>
>
> --
> Got Input?   Slashdot Needs You.
> Take our quick survey online.  Come on, we don't ask for help often.
> Plus, you'll get a chance to win $100 to spend on ThinkGeek.
> http://p.sf.net/sfu/slashdot-survey
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Got Input?   Slashdot Needs You.
Take our quick survey online.  Come on, we don't ask for help often.
Plus, you'll get a chance to win $100 to spend on ThinkGeek.
http://p.sf.net/sfu/slashdot-survey___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Using geoserver to serve elevation data in WorldWind

2011-07-28 Thread Chris Holmes
If you want it to get on to worldwind there's a plugin you can use that will
output the .bil and .dds files that WorldWind needs.  See
http://docs.geoserver.org/stable/en/user/community/dds/index.html

On Thu, Jul 28, 2011 at 4:16 PM, Chang, Elizabeth W. wrote:

> Hi.
>
> ** **
>
> I was wondering if anyone out there has experience serving data that will
> be interpreted as elevation data on WorldWind. How did you have it set up in
> Geoserver? I keep getting a map with a colormap/legend, not as elevation
> that can utilize the “fly” capability of WorldWind.
>
> ** **
>
> Thanks,
>
> Elizabeth Chang
>
> MITRE
>
>
> --
> Got Input?   Slashdot Needs You.
> Take our quick survey online.  Come on, we don't ask for help often.
> Plus, you'll get a chance to win $100 to spend on ThinkGeek.
> http://p.sf.net/sfu/slashdot-survey
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Got Input?   Slashdot Needs You.
Take our quick survey online.  Come on, we don't ask for help often.
Plus, you'll get a chance to win $100 to spend on ThinkGeek.
http://p.sf.net/sfu/slashdot-survey___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] CORS support for Geoserver?

2011-07-26 Thread Chris Holmes
Seems like it could be a great community module, that could grow to be an
extension.  If you've got an inclination to code it I'm sure others would
make use of it.

On Tue, Jul 26, 2011 at 4:58 PM, Ryan Clark  wrote:

> Hello --
>
> I'm curious if there is any inclination to provide cross-origin resource
> sharing support in Geoserver itself? It is pretty simple to configure
> Apache to handle CORS: http://enable-cors.org/#how-apache, and this
> servlet filter should do the trick in Tomcat:
> http://software.dzhuvinov.com/cors-filter-configuration.html. Something
> like that servlet filter working out-of-the-box with Geoserver seems
> like it would be a good idea, as most modern browsers support/require
> CORS. I would be a happier fellow if my OpenLayers applications could
> get away from OpenLayers.ProxyHost!
>
> Thanks,
> Ryan
>
>
>
>
>
> --
> Got Input?   Slashdot Needs You.
> Take our quick survey online.  Come on, we don't ask for help often.
> Plus, you'll get a chance to win $100 to spend on ThinkGeek.
> http://p.sf.net/sfu/slashdot-survey
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Got Input?   Slashdot Needs You.
Take our quick survey online.  Come on, we don't ask for help often.
Plus, you'll get a chance to win $100 to spend on ThinkGeek.
http://p.sf.net/sfu/slashdot-survey___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Direct GWC integration - SRS and STYLE parameters

2011-06-29 Thread Chris Holmes
>> Also, im curious how GWC DI handles STYLES parameter, if they are
> >> present in the request? (and TILED=true is present and SRS and tile
> >> parameters are valid)
> >>
> >
> > We made improvements so it would cache all Styles, not just the default.
> >  This was funded for GeoNode, which makes use of it.  I believe it will
> make
> > a new tile set for each style that you have, which will be automatically
> > truncated if you change them.
>
> Very nice addition :) I  just see that Gabriel is just doing some
> patches for GWC integration for styles parameter (when style is
> deleted trough REST api)
>  I will test it and see how it goes.
>
>
Ah right, that feature was actually on a branch until just now.  Glad it's
in now.


> Thanks for this new features!
>
> Regards,
> Ivan
>
> > Chris
> >
> >>
> >> Thank you,
> >>
> >> Regards,
> >> Ivan
> >>
> >> --
> >> ---
> >> Ivan Grcic
> >> GeoSolutions S.A.S.
> >> Software Engineer
> >>
> >>
> >> Via Poggio alle Viti 1187
> >> 55054  Massarosa (LU)
> >> Italy
> >>
> >> phone: +39 0584 962313
> >> fax:  +39 0584 962313
> >>
> >> http://www.geo-solutions.it
> >> http://geo-solutions.blogspot.com/
> >> http://twitter.com/geosolutions_it
> >> http://www.youtube.com/user/GeoSolutionsIT
> >>
> >> ---
> >>
> >>
> >>
> --
> >> All of the data generated in your IT infrastructure is seriously
> valuable.
> >> Why? It contains a definitive record of application performance,
> security
> >> threats, fraudulent activity, and more. Splunk takes this data and makes
> >> sense of it. IT sense. And common sense.
> >> http://p.sf.net/sfu/splunk-d2d-c2
> >> ___
> >> Geoserver-users mailing list
> >> Geoserver-users@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/geoserver-users
> >
> >
>
>
>
> --
> ---
> Ivan Grcic
> GeoSolutions S.A.S.
> Software Engineer
>
>
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
>
> phone: +39 0584 962313
> fax:  +39 0584 962313
>
> http://www.geo-solutions.it
> http://geo-solutions.blogspot.com/
> http://twitter.com/geosolutions_it
> http://www.youtube.com/user/GeoSolutionsIT
>
> ---
>
--
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Direct GWC integration - SRS and STYLE parameters

2011-06-28 Thread Chris Holmes
Gabriel will sound in with more detail, as I don't know all the answers.
 But a bit in line...

On Tue, Jun 28, 2011 at 12:51 PM, Ivan Grcic wrote:

> Hi all,
>
> im about to take a test at direct GWC integration feature introduced
> to geoserver some time ago.  I dont want to configure custom
> geowebcache.xml but use default GWC layers settings.
>
> Looking at the docs
> http://docs.geoserver.org/stable/en/user/geowebcache/using.html#gwc-using
> I see that direct GWC integration kicks in when we have tiled=true
> present in the request (plus tile size and origin has to be the same
> as WMS-C)
>
> My questions would be this:
> Which SRS  do we have to have in order for direct integration to work?
> Only EPSG:4326 and EPSG:900913?
>
>
There's a chance that the native srs may work too, I can't remember.  But I
think it may have been difficult to auto-configure the grids.


> Also, im curious how GWC DI handles STYLES parameter, if they are
> present in the request? (and TILED=true is present and SRS and tile
> parameters are valid)
>
>
We made improvements so it would cache all Styles, not just the default.
 This was funded for GeoNode, which makes use of it.  I believe it will make
a new tile set for each style that you have, which will be automatically
truncated if you change them.

Chris


> Thank you,
>
> Regards,
> Ivan
>
> --
> ---
> Ivan Grcic
> GeoSolutions S.A.S.
> Software Engineer
>
>
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
>
> phone: +39 0584 962313
> fax:  +39 0584 962313
>
> http://www.geo-solutions.it
> http://geo-solutions.blogspot.com/
> http://twitter.com/geosolutions_it
> http://www.youtube.com/user/GeoSolutionsIT
>
> ---
>
>
> --
> All of the data generated in your IT infrastructure is seriously valuable.
> Why? It contains a definitive record of application performance, security
> threats, fraudulent activity, and more. Splunk takes this data and makes
> sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-d2d-c2
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] How to get metadata such as the native bounding box for raster data through REST?

2011-06-22 Thread Chris Holmes
Oh weird, if I go from chrome I get the .xml link, if I go from firefox I
get the html page you sent.  Which yeah, give a big error, so something is
wrong.

On Wed, Jun 22, 2011 at 3:49 AM, Ole Nielsen  wrote:

>  Thanks for the link and the explanation. This was exactly what I was
> after.
>
> ** **
>
> This link works beautifully and provides the information we need.
>
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coverages/Lembang_Earthquake_Scenario.xml
> 
>
> ** **
>
> However trying the recipe and going to this one
>
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/
> 
>
> returns this page
>
> Coverage Store "Lembang_Earthquake_Scenario" 
>
>- 
> Lembang_Earthquake_Scenario<http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coveragestores/Lembang_Earthquake_Scenario.html>
>
>
> But clicking on the above fails. This is what I tried earlier too. However,
> replacing the .html in the link with .xml does provide the information you
> mention.
>
> Is that the correct procedure and intended?
>
> ** **
>
> Anyway, with the template above I should be able to generate the calls we
> need.
>
> ** **
>
> Many thanks
>
> Ole 
>
> ** **
>
> *From:* Chris Holmes [mailto:cho...@gmail.com]
> *Sent:* Wednesday, 22 June 2011 10:41 AM
> *To:* Ole Nielsen
> *Cc:* geoserver-users@lists.sourceforge.net
> *Subject:* Re: [Geoserver-users] How to get metadata such as the native
> bounding box for raster data through REST?
>
> ** **
>
> You want coverages instead of coveragetypes.  The base inspiration for the
> names is the WFS vs WCS specs, WFS calls layer categories featureTypes, WCS
> calls them coverages.
>
> ** **
>
> So
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coverages/Lembang_Earthquake_Scenario.xml
>  
>
> works for me.
>
> ** **
>
> I think the GS rest is a bit confusing, as it'll generate some stuff that
> can throw you off a bit - I got a bit turned around navigating when putting
> in the wrong stuff.  But what you can generally do is go a level or two up
> and see the links it has under it.  So if you go to:
>
> ** **
>
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/
> 
>
> ** **
>
> Then it'll point you at its list of coverages:
>
> ** **
>
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coverages.xml
> 
>
> ** **
>
>  Which then finally has the proper link with 'coverages'.
>
> ** **
>
> It'd probably be better if we didn't generate anything at all if you put in
> the wrong word for 'coverages'.  It looks like basically it matches anything
> and tries to generate the same stuff it would if you put it in correctly.
>  Not sure if that was by design, or just neglected to turn off one of the
> paths.
>
> ** **
>
> C
>
> ** **
>
> On Tue, Jun 21, 2011 at 10:23 PM, Ole Nielsen 
> wrote:
>
> Dear all
>
> I am sure this is a simple problem, but I can't work out how to get the
> bounding box of a raster layer through REST.
> I tried to mimic the approach used for vector data (see example below), but
> so far my attempts have only resulted in minimal data.
>
> Here's the REST call which works for vector data
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/boundaries/datastores/Province_Boundaries/featuretypes/Province_Boundaries.xml
>
> And here are my attempts for raster data which don't work (although they do
> provide some output which I have included below):
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coveragetypes/Lembang_Earthquake_Scenario.xml
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coveragestores/Lembang_Earthquake_Scenario.xml
>
>
> Please help point me to the correct magic.
> Cheers and thanks
> Ole
>
> PS - the username password on the server above are the GeoServer default,
> so you can test the responses yourself.
>
>
>  Output ---
>
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/boundaries/datastores/Province_Boundaries/featuretypes/Province_Boundaries.xml
>
> 
> Pro

Re: [Geoserver-users] How to get metadata such as the native bounding box for raster data through REST?

2011-06-21 Thread Chris Holmes
You want coverages instead of coveragetypes.  The base inspiration for the
names is the WFS vs WCS specs, WFS calls layer categories featureTypes, WCS
calls them coverages.

So
http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coverages/Lembang_Earthquake_Scenario.xml


works for me.

I think the GS rest is a bit confusing, as it'll generate some stuff that
can throw you off a bit - I got a bit turned around navigating when putting
in the wrong stuff.  But what you can generally do is go a level or two up
and see the links it has under it.  So if you go to:

http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/

Then it'll point you at its list of coverages:

http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coverages.xml

 Which then finally has the proper link with 'coverages'.

It'd probably be better if we didn't generate anything at all if you put in
the wrong word for 'coverages'.  It looks like basically it matches anything
and tries to generate the same stuff it would if you put it in correctly.
 Not sure if that was by design, or just neglected to turn off one of the
paths.

C

On Tue, Jun 21, 2011 at 10:23 PM, Ole Nielsen  wrote:

>   Dear all
>
> I am sure this is a simple problem, but I can't work out how to get the
> bounding box of a raster layer through REST.
> I tried to mimic the approach used for vector data (see example below), but
> so far my attempts have only resulted in minimal data.
>
> Here's the REST call which works for vector data
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/boundaries/datastores/Province_Boundaries/featuretypes/Province_Boundaries.xml
>
> And here are my attempts for raster data which don't work (although they do
> provide some output which I have included below):
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coveragetypes/Lembang_Earthquake_Scenario.xml
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coveragestores/Lembang_Earthquake_Scenario.xml
>
>
> Please help point me to the correct magic.
> Cheers and thanks
> Ole
>
> PS - the username password on the server above are the GeoServer default,
> so you can test the responses yourself.
>
>
>  Output ---
>
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/boundaries/datastores/Province_Boundaries/featuretypes/Province_Boundaries.xml
>
> 
> Province_Boundaries
> Province_Boundaries
> -
> 
> boundaries
> http://www.aifdr.org:8080/geoserver/rest/namespaces/boundaries.xml";
> type="application/xml"/>
> 
> Province_Boundaries
> -
> 
> GEOGCS["GCS_WGS_1984",
>   DATUM["D_WGS_1984",
> SPHEROID["WGS_1984", 6378137.0, 298.257223563]],
>   PRIMEM["Greenwich", 0.0],
>   UNIT["degree", 0.017453292519943295],
>   AXIS["Longitude", EAST],
>   AXIS["Latitude", NORTH]]
> 
> EPSG:4326
> -
> 
> 95.0596609526
> 141.0053823528
> -10.9974099606
> 5.90688397024
> EPSG:4326
> 
> -
> 
> 95.0596609526
> 141.0053823528
> -10.9974099606
> 5.90688397024
> EPSG:4326
> 
> NONE
> true
> -
> 
> Province_Boundaries
> http://www.aifdr.org:8080/geoserver/rest/workspaces/boundaries/datastores/Province_Boundaries.xml";
> type="application/xml"/>
> 
> 0
> 0
> 
>
>
>
> --
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coveragetypes/Lembang_Earthquake_Scenario.xml
> 
> Lembang_Earthquake_Scenario
> GeoTIFF
> true
> -
> 
> hazard
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard.xml";
> type="application/xml"/>
> 
> -
> 
> file:data/Lembang_Earthquake_Scenario/Lembang_Earthquake_Scenario.geotiff
> 
> -
> 
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coveragetypes/Lembang_Earthquake_Scenario/coverages.xml";
> type="application/xml"/>
> 
> 
>
>
> --
>
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coveragestores/Lembang_Earthquake_Scenario.xml
> 
> -
> 
> Lembang_Earthquake_Scenario
> http://www.aifdr.org:8080/geoserver/rest/workspaces/hazard/coveragestores/Lembang_Earthquake_Scenario/coveragestores/Lembang_Earthquake_Scenario/Lembang_Earthquake_Scenario.xml";
> type="application/xml"/>
> 
> 
>
> ** **
>
>
> --
> Simplify data backup and recovery for your virtual environment with
> vRanger.
> Installation's a snap, and flexible recovery options mean your data is
> safe,
> secure and there when you need it. Data protection magic?
> Nope - It's vRanger. Get your free trial download 

Re: [Geoserver-users] Lamberts TIFF to Google Maps Tiles

2011-06-07 Thread Chris Holmes
On Tue, Jun 7, 2011 at 11:40 AM, Mark van Wyk  wrote:

> Hi there,
>
> This is my first post to the group.
>
> I'm very excited about the prospects that GeoServer have to offer my
> project. I would really love it if you could give me some hints around how
> to start tackling my project.
>
> I have lots of Lamberts Projection Aeronautical Charts. They're in Geocoded
> TIFF Files.
>
> I have them in 1:250 000, 1:500 000 and 1:1 000 000.
>
> I'd like to get them loaded into GeoServer, and then get GeoServer to serve
> tiles to Google Maps.
>
> Can you please let me know what parts of GeoServer I'll need to read up on
> and what the features are called. (I'm new to geo language and acronyms).
>
> Also, I'd love to know if you think any of the following would be possible.
>
> 1. To crop the map legends off the bottom of the maps (but keeping the geo
> encoding).
>

This I'm not sure how to do.  I imagine you could use GDAL command line in
some way http://www.gdal.org/  Or a desktop GIS.  Basically I believe it's a
pre-processing step before you get it in to GeoServer.


> 2. Have GeoServer read a lamberts TIFF projection and correctly map it to
> the earth, and GeoServer serve Google Map / OpenLayer tiles that are in it's
> typical Mercator projection.
>

This should happen with just getting it configured right (adding your
geotiff as a 'store' and then publishing the layer.  Basically it's
http://docs.geoserver.org/stable/en/user/gettingstarted/shapefile-quickstart/index.htmlbut
pick geotiff instead of shapefile).   As long as the lamberts
projection
is right then GeoServer automatically handles reprojection.  You just need
to request srs=EPSG:900913 for the projection.  Can play with requests
using http://docs.geoserver.org/2.1.x/en/user/tutorials/wmsreflector.html

I would recommend you use GeoWebCache, as it'll cache your tiles for faster
access.  It's embedded in GeoServer
http://docs.geoserver.org/stable/en/user/geowebcache/index.html  If you're
using GMaps API directly then GWC has a nice shortcut you can use, see
http://geowebcache.org/docs/current/services/gmaps.html


> 3. Have tiles served from 1:250 000 when zoomed in (if available, else fall
> back to 1:500 000), 1:500 000 for medium zoom levels, and 1:100 000 for
> other zoom levels.
>
>
I believe the best practice way to do this is to make an SLD for each with
the scale denominators you want it to display at.  See like
http://suite.opengeo.org/recipes/#sld/polygon/zoombasedpolygon  Though you
just probably need the scale for each layer, not a bunch of rules.

Then after you have each layer at the scales you want put them together in
to a 'layer group'

http://docs.geoserver.org/stable/en/user/webadmin/data/layergroups.html


> I'm not looking for verbose answers (although they will be greatly
> appreciated). Quite happy to RTFM, just like to be pointed in the right
> direction.
>
> Very excited to hear your response.
>
>
No problem - thanks for asking so nicely and considerately.

Chris


> Thanks,
>
> Mark van Wyk
>
>
>
>  *Email: *m...@foxbomb.com
> *Mobile:* 082 831 9227
>
>
>
>
> --
> EditLive Enterprise is the world's most technically advanced content
> authoring tool. Experience the power of Track Changes, Inline Image
> Editing and ensure content is compliant with Accessibility Checking.
> http://p.sf.net/sfu/ephox-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Anyone using GeoServer for INSPIRE services

2011-06-02 Thread Chris Holmes
I think Emmanuel Seguin at IGN France may have already coded #1.  I just
made a jira for it - http://jira.codehaus.org/browse/GEOS-4595  Hopefully
he'll add his patch there.

He may also have some insight on the others.

best regards,

Chris

On Wed, Jun 1, 2011 at 11:55 AM, Tim Martin  wrote:

>  Hi
>
>
>
> My current role at OS is to support any INSPIRE data publishers who would
> like to use GeoServer to setup INSPIRE compliant web services.
>
>
>
> After sponsoring the upgrade from WMS 1.1 to WMS 1.3.0 and also the INSPIRE
> plugin I am now trying to write some documentation to help people achieve
> their INSPIRE targets.
>
>
>
> Are there any users who have already used GeoServer plus the INSPIRE plugin
> that could help me finish off my documentation by answering a few questions
>
>
>
> 1) I do not fully understand which MetadataURL option to use in the Layer
> options. The choices are TC211 or FDGC. I would have expected it to have
> ISO19115:2003 which is the ISO standard for the Metadata dataset record.
> Which one should someone use who is a) using a CSW and b) using a WAF
>
>
>
> 2) How do you apply the inspire_common:DEFAULT style
>
>
>
> 3) How do you turn off the LegendURL found within a default GetCapabilities
> document.
>
>
>
> Everything else I have documented and will be putting this online. If I can
> I will add this as a tutorial on the GeoServer documentation
>
>
>
>
>
> Thanks for your help
>
>
>
> Tim
>
>
>
>
>
> This email is only intended for the person to whom it is addressed and may 
> contain confidential information. If you have received this email in error, 
> please notify the sender and delete this email which must not be copied, 
> distributed or disclosed to any other person.
>
> Unless stated otherwise, the contents of this email are personal to the 
> writer and do not represent the official view of Ordnance Survey. Nor can any 
> contract be formed on Ordnance Survey's behalf via email. We reserve the 
> right to monitor emails and attachments without prior notice.
>
> Thank you for your cooperation.
>
> Ordnance Survey
> Adanac Drive
> Southampton SO16 0AS
> Tel: 08456 050505http://www.ordnancesurvey.co.uk
>
>
>
> --
> Simplify data backup and recovery for your virtual environment with
> vRanger.
> Installation's a snap, and flexible recovery options mean your data is
> safe,
> secure and there when you need it. Data protection magic?
> Nope - It's vRanger. Get your free trial download today.
> http://p.sf.net/sfu/quest-sfdev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Simplify data backup and recovery for your virtual environment with vRanger.
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Discover what all the cheering's about.
Get your free trial download today. 
http://p.sf.net/sfu/quest-dev2dev2 ___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Restrict WMS Output formats

2011-06-01 Thread Chris Holmes
Weirdly I don't think there is a way to do that.  Seems like a common enough
request, but I can't personally remember anyone else asking for it.  I can't
even think of a clean hack to accomplish it, though maybe some else can (or
knows a way to disable it properly).

Chris

On Wed, Jun 1, 2011 at 11:39 AM, Tim Martin  wrote:

>  Hi GS Users
>
>
>
> I have been searching this afternoon and cannot seem to find a solution.
>
>
>
> I would like to restrict the GetMap format options, ie remove KML and KMZ
>
>
>
> Is there a way within the UI or do I have to amend an XML document within
> the geoserver directory
>
>
>
> Thanks
>
>
> Tim
>
>
>
>
>
> This email is only intended for the person to whom it is addressed and may 
> contain confidential information. If you have received this email in error, 
> please notify the sender and delete this email which must not be copied, 
> distributed or disclosed to any other person.
>
> Unless stated otherwise, the contents of this email are personal to the 
> writer and do not represent the official view of Ordnance Survey. Nor can any 
> contract be formed on Ordnance Survey's behalf via email. We reserve the 
> right to monitor emails and attachments without prior notice.
>
> Thank you for your cooperation.
>
> Ordnance Survey
> Adanac Drive
> Southampton SO16 0AS
> Tel: 08456 050505http://www.ordnancesurvey.co.uk
>
>
>
> --
> Simplify data backup and recovery for your virtual environment with
> vRanger.
> Installation's a snap, and flexible recovery options mean your data is
> safe,
> secure and there when you need it. Data protection magic?
> Nope - It's vRanger. Get your free trial download today.
> http://p.sf.net/sfu/quest-sfdev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Simplify data backup and recovery for your virtual environment with vRanger. 
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Data protection magic?
Nope - It's vRanger. Get your free trial download today. 
http://p.sf.net/sfu/quest-sfdev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Turn off WMS GetFeatureInfo

2011-06-01 Thread Chris Holmes
There's a patch for this, but it hasn't been applied yet.  See
http://jira.codehaus.org/browse/GEOS-4501  Should be in 2.1.1 release.

On Wed, Jun 1, 2011 at 11:47 AM, Tim Martin  wrote:

>  Hi GS Users
>
>
>
> As standard any layer you deploy is queryable – as seen in the
> getcapabilities document
>
>
>
> 
>
>
>
> Is there a way to turn this off in the UI?
>
>
>
> There seems to be nothing in the documentation and have done the obligatory
> google search but found no answer.
>
>
>
> Any ideas
>
>
>
> Thanks
>
>
>
> Tim
>
> This email is only intended for the person to whom it is addressed and may 
> contain confidential information. If you have received this email in error, 
> please notify the sender and delete this email which must not be copied, 
> distributed or disclosed to any other person.
>
> Unless stated otherwise, the contents of this email are personal to the 
> writer and do not represent the official view of Ordnance Survey. Nor can any 
> contract be formed on Ordnance Survey's behalf via email. We reserve the 
> right to monitor emails and attachments without prior notice.
>
> Thank you for your cooperation.
>
> Ordnance Survey
> Adanac Drive
> Southampton SO16 0AS
> Tel: 08456 050505http://www.ordnancesurvey.co.uk
>
>
>
> --
> Simplify data backup and recovery for your virtual environment with
> vRanger.
> Installation's a snap, and flexible recovery options mean your data is
> safe,
> secure and there when you need it. Data protection magic?
> Nope - It's vRanger. Get your free trial download today.
> http://p.sf.net/sfu/quest-sfdev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Simplify data backup and recovery for your virtual environment with vRanger. 
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Data protection magic?
Nope - It's vRanger. Get your free trial download today. 
http://p.sf.net/sfu/quest-sfdev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Geoserver memory & connections management

2011-05-12 Thread Chris Holmes
Hey Hari, vote.mapview.in looks cool.  Have you considered using GeoWebCache
for it?  Looks like you're doing large, single tile requests.  If you stick
GWC in front of it then you could put a lot less of a load on the server,
since most places that people look at would get cached.

C

On Wed, May 11, 2011 at 7:52 AM, Harikumar Reddy wrote:

> Hi Ben,
>
> Below i am providing answers for your questions (apart from that i have
> some doubts also written).
>
> Did you observed any limitations (*known or unknown limitations* like
> howmuch maximum data it can support or maximum number of
> workspaces/datastore we can able to create (raster& vectors)/how many gis
> layers can be configured in one geoserver) for geoserver version 2.0.2 &
> other newer versions ?
>
> We have deployed a webgis application a month before (vote.mapview.in),
> which was working very fine and didnt have any issues till now with
> Geoserver (but it has very less gis data layers).
>
> Please find below required information to analyse problem.
>
> - What Java implementation (and version) are you using? What JVM options?
>
> *"java version "1.6.0_23"*
> *Java(TM) SE Runtime Environment (build 1.6.0_23-b05)*
> *Java HotSpot(TM) 64-Bit Server VM (build 19.0-b09, mixed mode)"*
>
> - What servlet container? Tomcat?
>
> *We are using Tomcat 6  servlet container in spring source tc server cloud
> environment*
>
>
> - Are you using Apache HTTPD in front of Tomcat?
>
> *Not using Apache HTTPD infront of Tomcat.*
>
>
> - What are the symptoms of "going down"? Do you get any response? From
> Apache? Tomcat?
>
> *Geoserver log file piled up and occupied 250 MB disk space.* *So i have
> carefully extracted log of may 11th for geoserver (ver 2.0.1) and sending as
> an attachment.*
>
> - Do you get anything in the logs (Apache, Tomcat or GeoServer)?
>
> *Yes, attached logs of tomcat & geoserver.*
>
>
> - Do you see heap errors in the logs?
> *Heap we have increased, so now a days we are not getting.*
>
>
> - Do you get any mysterious database errors (ORA-something) or hangs?
>
> *Not exactly ORA-x errors, but i suspect db related issues might also
> happen.
> *
>
> - Is there a firewall between GeoServer and Oracle? from the app-schema
> manual but relevant to all users:
> 
> *There is no firewall between Geoserver & Oracle, because of testing &
> connection problems, removed firewall as of now.*
>
>
> - Have you tried turning on VERBOSE logging in GeoServer to diagnose the
> problem?
>
> *Yes, VERBOSE logging has been already set.* *It is become easier to
> analyse logs after this setting change.*
>
>
> Thanks,
> Hari.
>
>
> On Wed, May 11, 2011 at 1:14 PM, Harikumar Reddy wrote:
>
>> Hi Ben Caradoc-Davies, christian.mueller
>>
>> Thanks for the very quick responses.
>>
>> As per my observations, Most of the times, in Geoserver errors of heap
>> memory present. I didnot check logs of  the tomcat (we are using
>> tomcat 6 & tcserver).
>>
>> I will provide required details & logs by contacting system admin team.
>>
>> Thankyou verymuch.
>>
>> Hari.
>>
>>
>> On Wed, May 11, 2011 at 12:04 PM,  wrote:
>>
>>> Can you check if you have http sessions. You should have not.
>>>
>>> Look here
>>> http://jira.codehaus.org/browse/GEOS-4477
>>>
>>> This was fixed with geoserver 2.1 RC5
>>>
>>>
>>> Quoting Harikumar Reddy :
>>>
>>>  Hi All,

 We are using Geoserver 2.0.2 (recently migrated from 2.0.1) and using
 Geoserver since  version 1.7. we are happy by its map rendering results
 but
 it is going down very often. we are restarting geoserver at least once
 in
 two days, after that it works for 24 hours very well. We are using
 oracle
 spatial 11g database as datastore for gis layers (vector & raster). It
 is
 actually for one state we are using and facing these problems.  Any
 memory
 leakage or any other configurations to be done. The total data is around
 80
 GB ( 78 gb of satellite images & 2 gb gis layers)

 I am sorry for asking very basic questions of memory management &
 geoserver
 connections related to systems side as i am pure GIS professional.

 Now we are going to implement project for entire country (India) with 25
 gis
 layers and satellite images for 100 cities. If we need to restart
 Geoserver
 once in two days may not be good idea. Any special
 configarations/settings
 is required (hardware side, software side). The production Geoserver
 will be
 having the given below linux environment.

 Linux CentOS version 5
 Geoserver version 2.0.2
 Open layers 2.9
 Oracle spatial 11 g R2

 we are also thinking of alterante map servers because this kind of
 issues.
 If anyone knows, please suggest. For country level applications, which
 will
 be having an approximate user base of 50,000 day can be handled well by

Re: [Geoserver-users] keeping the GWC cache fresh

2011-05-10 Thread Chris Holmes
If you're using the embedded GWC in GeoServer then it should get
automatically refreshed if you use a WFS-T transaction or change a style.
 We use this by default with local layers in our GeoExplorer app -
http://suite.opengeo.org/geoexplorer.  All layers are automatically cached,
but refresh if you edit or change a style.  If your changes are happening
outside GeoServer you can set up GeoWebCache to read a GeoRSS feed and
refresh based on that - it should report to GWC what changed.

Chris

On Mon, May 9, 2011 at 8:41 PM, Paul Joyce  wrote:

> Hi list,
>
>
>
> I’ve noticed in the GeoServer GeoWebCache documentation for Seeding and
> Refreshingthat
>  there is plenty of info about seeding, but not much about refreshing.
> What do people do in practice when the underlying data changes? A complete
> reseed when they can (eg nightly), or has someone come up with a clever way
> of deleting a tile when a feature that is drawn on that tile is updated?
>
>
>
> Thanks, Paul
>
>
>
>
>
>
> --
> Achieve unprecedented app performance and reliability
> What every C/C++ and Fortran developer should know.
> Learn how Intel has extended the reach of its next-generation tools
> to help boost performance applications - inlcuding clusters.
> http://p.sf.net/sfu/intel-dev2devmay
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Achieve unprecedented app performance and reliability
What every C/C++ and Fortran developer should know.
Learn how Intel has extended the reach of its next-generation tools
to help boost performance applications - inlcuding clusters.
http://p.sf.net/sfu/intel-dev2devmay___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] WMTS

2011-05-05 Thread Chris Holmes
GeoServer by default includes GeoWebCache, and exposes all layers as WMTS
(among other tile formats).  See for example
http://suite.opengeo.org/geoserver/gwc/service/wmts?REQUEST=getcapabilities
Just go to /gwc/service/wmts from your geoserver base directory.

best regards,

Chris

On Thu, May 5, 2011 at 1:11 PM, Ravi Pavuluri  wrote:

> Hi,
>
> Does GeoServer provide an way to publish WMTS? The online posts from
> OpenLayers show "consuming" WMTS by making use of GeoWebCache, but I
> couldn't find a simple example for "publishing" WMTS or any relevant
> documentation.
>
> Any documentation resources are greatly appreciated.
>
> Thanks,
> Ravi.
>
>
> --
> WhatsUp Gold - Download Free Network Management Software
> The most intuitive, comprehensive, and cost-effective network
> management toolset available today.  Delivers lowest initial
> acquisition cost and overall TCO of any competing solution.
> http://p.sf.net/sfu/whatsupgold-sd
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Geoserver.org appears to be down!

2011-04-06 Thread Chris Holmes
Broken for at least a week?  Do let us know sooner if it is down.  My
organization has a sys admin to keep it up, and there's enough of us on this
list that just sending an email here should get us on it.

I just tried and it worked fine.

On Wed, Apr 6, 2011 at 2:07 PM, Lukas Johansson
wrote:

>  Yes, its been broken for at least a week now. Anyone got an idea when it
> will be back?
>
> For the moment I get tomcat 404 responses.
>
> /Lukas
>
>
>
> *Från:* Steve Way [mailto:steve@infotech-enterprises.com]
> *Skickat:* den 6 april 2011 09:53
> *Till:* geoserver-de...@lists.sourceforge.net;
> geoserver-users@lists.sourceforge.net
> *Ämne:* [Geoserver-users] Geoserver.org appears to be down!
>
>
>
>
>
>
>  --
>
> DISCLAIMER:
>
> This email may contain confidential information and is intended only for
> the use of the specific individual(s) to which it is addressed. If you are
> not the intended recipient of this email, you are hereby notified that any
> unauthorized use, dissemination or copying of this email or the information
> contained in it or attached to it is strictly prohibited. If you received
> this message in error, please immediately notify the sender at Infotech or
> mail.ad...@infotech-enterprises.com and delete the original message.
>
>
> --
> Xperia(TM) PLAY
> It's a major breakthrough. An authentic gaming
> smartphone on the nation's most reliable network.
> And it wants your games.
> http://p.sf.net/sfu/verizon-sfdev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Xperia(TM) PLAY
It's a major breakthrough. An authentic gaming
smartphone on the nation's most reliable network.
And it wants your games.
http://p.sf.net/sfu/verizon-sfdev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] OpenLayers and Geoserver support on Anroid

2011-03-19 Thread Chris Holmes
Actually there's been a lot of progress since the time of that blog post.
There was a 'sprint' to add real mobile support, there's a good overview at
http://geoext.blogspot.com/2011/02/openlayers-mobile-code-sprint-summary.html

I don't think it's not in a full openlayers release yet, but should be soon,
and you should be able to try it out, just ask on the OL list.

C

On Sat, Mar 19, 2011 at 12:30 PM, Ricardo Bayley
wrote:

> Hi Mustafa,
>
> In regard to Geoserver, I dont see why not, this is a server application it
> doesnt really care about client side.
> You might find interesting to set the tileSize to 128x128 or maybe to
> 64x64.
>
> In regard to Android and OpenLayers, I bumped into this site
>
> http://mobilegeo.wordpress.com/2010/01/05/testing-open-layers-with-iphone-and-android/
>
> I understand it is possible, but it requires some tweaks.
> I guess that you would be better off at the OpenLayers email list. Although
> some other people in this email list might help as well
>
>
> Best regards,
>
> Ricardo
>
>
> 2011/3/19 Mustafa646 
>
>> Hello all,
>>
>> I want to know is OpenLayers and GeoServer supports on Anroid ?
>> I want to write map application in OpenLayers for Anroid, is it possible ?
>>
>> If it supports, Can we utilize whole its functionality as we do on web ?
>> Regards
>>
>>
>>
>> --
>> View this message in context:
>> http://osgeo-org.1803224.n2.nabble.com/OpenLayers-and-Geoserver-support-on-Anroid-tp6187665p6187665.html
>> Sent from the GeoServer - User mailing list archive at Nabble.com.
>>
>>
>> --
>> Colocation vs. Managed Hosting
>> A question and answer guide to determining the best fit
>> for your organization - today and in the future.
>> http://p.sf.net/sfu/internap-sfd2d
>> ___
>> Geoserver-users mailing list
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>
>
>
> --
> Colocation vs. Managed Hosting
> A question and answer guide to determining the best fit
> for your organization - today and in the future.
> http://p.sf.net/sfu/internap-sfd2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Tiling & labelling

2011-03-18 Thread Chris Holmes
That's really nice, and I imagine it'd work well.  Indeed you more want to
see _something_ fast, I feel like it's ok if the labels load a bit more
slowly.

I wonder if there's some way we could make that set up easier for users.
Like make a special layer type in OpenLayers, and some way to ease
configuration on the geoserver.  Like if we had like WMS options for 'no
labels' and 'only labels'.  And then just did that at the renderer level,
instead of making people create separate SLD's.

And on the openlayers side we could make a layer type that can take two
URLs, the cache and the dynamic label WMS.

On Fri, Mar 18, 2011 at 10:39 AM, Ivan Grcic wrote:

> Hi all,
>
> some time ago i had project where labeling was also pretty important
> (parcels) so I came to one solution that perfectly suited my needs.
>
> As I used OpenLayers for client, i had tiled and untiled layers at my
> disposal. If you are only bound to tiled client, then using large
> metatiling would be the best choice imho - as Chris allready said.
>
> First, let me explain why i wasn't satisfied with existing choices:
> 1) metatiling with big tiling factor is usable only if you pre-seed
> layers, as it could take longer time to generate this big image and
> chop it to tiles (sometimes that can be really long process though,
> and if your data tends to change frequently it just wont do) You will
> still have 2/4 labels in small place at metatile intersection, which
> can be annoying if you have parcel data.
>
> 2) fixed label position - if you have polygon data then position is
> usually set somewhere close to the polygon center. this way many
> labels don't show up if your map view covers only part of the polygon,
> so you have to pan the map to the center of the polygon to see the
> label. Kinda funny seeing big polygon that covers most of your map,
> and the label doesn't show up :)
>
> So I came up with an idea to create complex OL layer, that internally
> creates two layers: first one tiled/cached geometry layer, and the
> second one untiled layer for labels.
> Each layer is configured with different settings, like different URLs
> (to tilecache&GS), different style for label layer, image type and
> resolutions.
>
> Layer with labels had to be carefully prepared to keep the images
> returned by server small (things like scale filtering on sld, custom
> created pallete etc)
>
> This way I had fast cached layers for geometries, and somehow less
> faster layer for labels - but usually you dont notice its slow because
> of the fast loading tiled layer beneath it :)
>
> Hope it helps!
>
> regards,
> Ivan
>
> On Fri, Mar 18, 2011 at 2:40 PM, Andrea Aime
>  wrote:
> > On Fri, Mar 18, 2011 at 2:07 PM, Chris Holmes 
> wrote:
> >>
> >>
> >> On Wed, Mar 16, 2011 at 11:17 AM, Andrea Aime <
> andrea.a...@geo-solutions.it>
> >> wrote:
> >>>
> >>> On Wed, Mar 16, 2011 at 4:01 PM, Steve Way
> >>>  wrote:
> >>> > Hi All,
> >>> >
> >>> >
> >>> >
> >>> > Just a curious question, but how do we avoid our labelling from
> looking
> >>> > a
> >>> > mess within openlayers or some other tiling client when trying to
> >>> > configure
> >>> > the overlaps etc which might be intersected by the edge of a tile?
> >>>
> >>> The short answer is, don't use tiling with labelling.
> >>> The longer answer might be, reduce the mess using a tile cache and
> setting
> >>> up meta tiling
> >>>
> >>
> >> Note that you can use really large meta tiling.  I think ESRI's default
> is
> >> 4096x4096, so 16x16 256 pixel tiles.  Though at that size it's much
> better
> >> to pre-seed.
> >
> > Even at 16x16 meta tiling you'll get those unlucky polygons falling at
> metatile
> > system intersections labelled four times in a small space.
> > It's just going to happen less
> >
> > Cheers
> > Andrea
> >
> > --
> > ---
> > Ing. Andrea Aime
> > GeoSolutions S.A.S.
> > Tech lead
> >
> > Via Poggio alle Viti 1187
> > 55054  Massarosa (LU)
> > Italy
> >
> > phone: +39 0584 962313
> > fax:  +39 0584 962313
> > mob:+39 333 8128928
> >
> > http://www.geo-solutions.it
> > http://geo-solutions.blogspot.com/
> > http://www.youtube.com/user/GeoSolutionsIT
> > http://www.linkedin.com/in/andreaaime
> > http://twitter.com/geowol

Re: [Geoserver-users] Tiling & labelling

2011-03-18 Thread Chris Holmes
On Wed, Mar 16, 2011 at 11:17 AM, Andrea Aime
wrote:

> On Wed, Mar 16, 2011 at 4:01 PM, Steve Way
>  wrote:
> > Hi All,
> >
> >
> >
> > Just a curious question, but how do we avoid our labelling from looking a
> > mess within openlayers or some other tiling client when trying to
> configure
> > the overlaps etc which might be intersected by the edge of a tile?
>
> The short answer is, don't use tiling with labelling.
> The longer answer might be, reduce the mess using a tile cache and setting
> up meta tiling
>
>
Note that you can use really large meta tiling.  I think ESRI's default is
4096x4096, so 16x16 256 pixel tiles.  Though at that size it's much better
to pre-seed.


> Cheers
> Andrea
>
> --
> ---
> Ing. Andrea Aime
> GeoSolutions S.A.S.
> Tech lead
>
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
>
> phone: +39 0584 962313
> fax:  +39 0584 962313
> mob:+39 333 8128928
>
> http://www.geo-solutions.it
> http://geo-solutions.blogspot.com/
> http://www.youtube.com/user/GeoSolutionsIT
> http://www.linkedin.com/in/andreaaime
> http://twitter.com/geowolf
>
> ---
>
>
> --
> Colocation vs. Managed Hosting
> A question and answer guide to determining the best fit
> for your organization - today and in the future.
> http://p.sf.net/sfu/internap-sfd2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Open demo Geoserver for testing?

2011-03-18 Thread Chris Holmes
We're still figuring out exactly which to commit to.  But for now we run two

http://demo.opengeo.org/geoserver/
http://suite.opengeo.org/geoserver/

On Fri, Mar 18, 2011 at 6:41 AM, Rahkonen Jukka
wrote:

>  Hi,
>
> Sometimes it would be very useful to be able to point to some open and
> reliable Geoserver service when reporting bugs found from client
> applications. There used to be one running at sigma.openplans.org:8080 but
> it is gone now. Does any other exist?
>
> -Jukka Rahkonen-
>
>
> --
> Colocation vs. Managed Hosting
> A question and answer guide to determining the best fit
> for your organization - today and in the future.
> http://p.sf.net/sfu/internap-sfd2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Geoserver Mailing List Reply Option

2011-03-06 Thread Chris Holmes
This is kind of a 'holy war' topic, with both views very well covered in
http://producingoss.com/en/mailing-lists.html#reply-to

Fogel ends up falling slightly on the side of the behavior we have here for
open source projects.  I think a change would probably screw up a lot of
people who are always on the list, so it's probably going to be a tough
battle to convince enough of the Project Steering Committee (who has
ultimate say on the project policies) to change it.

On Sun, Mar 6, 2011 at 8:55 PM, David Collins wrote:

> Sorry if this seems trivial, but I think that with all my other lists I
> click 'Reply' to reply to the list, but this one I need to click 'Reply All'
> - so I am often accidentally giving private replies to problems.
> Does anyone else do this, or is this just me having 'user error' ? :)
> Any chance of changing the list options so that 'Reply' sends your e-mail
> to the list?
>
>
>
> --
> What You Don't Know About Data Connectivity CAN Hurt You
> This paper provides an overview of data connectivity, details
> its effect on application quality, and explores various alternative
> solutions. http://p.sf.net/sfu/progress-d2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
What You Don't Know About Data Connectivity CAN Hurt You
This paper provides an overview of data connectivity, details
its effect on application quality, and explores various alternative
solutions. http://p.sf.net/sfu/progress-d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] App Schema and GeoJSON

2011-03-06 Thread Chris Holmes
No complex feature to GeoJSON transformation is possible now.  I think the
GeoJSON spec doesn't give any recommendations on complex features, though I
suppose it should be fairly straightforward.

Going XML to JSON wouldn't be nearly as fast as going straight to JSON from
the actual Feature objects.  I don't think it should be hard to extend the
JSON writer to iterate through full complex features, and I believe would be
a welcome patch.  If you're interested someone more knowledgeable than I can
direct you at the code and what you'd need to do.  Should be fairly self
contained, relatively easy to wrap your head around and get coding.

Chris

On Sun, Mar 6, 2011 at 9:52 PM, Shaw Innes  wrote:

> I have almost sorted out my previous query regarding App Schema mappings to
> a PostGIS source.  I'll post my final working version for the list when I've
> got it 100% working just in case it might help someone in the future.
>
> I am trying to expose my complex feature as a WFS feature - and was hoping
> to have it available as a JSON object.  I tried supplying the
> outputFormat=json parameter, but I get an exception stating that the WFS
> server couldn't process the request because it wasn't a "SimpleFeature".
>
> Is there support for complex features -> GeoJSON translation?  If not - I
> was thinking I would write a small proxy service to process the xml -> json,
> however I'm sure there are people already doing this - are there any
> recommended solutions for this problem?
>
> Thanks
>
> Shaw
>
> --
> What You Don't Know About Data Connectivity CAN Hurt You
> This paper provides an overview of data connectivity, details
> its effect on application quality, and explores various alternative
> solutions. http://p.sf.net/sfu/progress-d2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
What You Don't Know About Data Connectivity CAN Hurt You
This paper provides an overview of data connectivity, details
its effect on application quality, and explores various alternative
solutions. http://p.sf.net/sfu/progress-d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Database-driven styling [SEC=Unclassified]

2011-02-04 Thread Chris Holmes
On Fri, Feb 4, 2011 at 3:02 PM, Richard (Abe) Coughlin wrote:

>  Thanks all for the responses -- my question was well answered. And I'm
> learning to explain myself more and more each time I post.
>
> The key point regarding database-driven styling I was seeking was: how to
> have colors, thicknesses etc set up in the database so as to improve speed
> of updating styles and creating new styles and minimizing the SLD file.
> Miles answered this specifically. Possibly the SLD Cookbook could explain
> that the ogc:PropertyName can be used for more than just the name of the
> attribute.
>
>
It actually doesn't, yet, that I could find.  But it's pretty straight
forward, most parameters (all CssParameters for sure) can take an
ogc:expression.  Which gives you the flexibility to put in property names,
filter functions, etc.  For a more advanced example see
http://docs.geoserver.org/stable/en/user/styling/sld-extensions/substitution.html
This is client supplying the values, but you can see that the
WellKnownNameand the Fill have more complex expressions in them.
Those also could be
ogc:PropertyNames, afaik.

C

Taking this a step further, the ogc:Property Name reflects a column in the
> table with the geometry that we are serving - is there a way to reference a
> separate table (ie a lookup table), maybe through some incorporated CQL.
> Other than creating a view. Or would you advise me that the database
> processing time would be considerably greater than the speed to look up the
> sld or css?
>
> Thanks, Abe.
> PacIOOS.
>
>
>
> On 2/4/2011 5:12 AM, David Winslow wrote:
>
> The link you found is to the "old wiki" where GeoServer documentation used
> to be maintained.  For over a year the GeoServer documentation has been
> maintained in the manual hosted at http://docs.geoserver.org/ and the old
> wiki has been used a bit for development, but the documentation there has
> not been kept up-to-date.  This week we finally hid the old wiki from the
> web so that search engines can stop directing users to the information there
> which, at this point, is usually suboptimal or just plain wrong. (it is
> still available to the GeoServer developers in case of specific documents
> that still need to be migrated to the new system.)
>
>  In this case, the new documentation has nice examples of data-driven
> styling complete with sample data and downloadable SLDs so you can try at
> home.  Take a look at the "SLD Cookbook" section of the manual:
> http://docs.geoserver.org/stable/en/user/styling/sld-cookbook/index.html
>
>  For each geometry type (point/polygon/line) there is a section at the end
> of the page demonstrating a simple data-driven style.
>
>  Hope this helps.
>
>  --
> David Winslow
>  OpenGeo - http://opengeo.org/
> On Thu, Feb 3, 2011 at 9:31 PM, Miles Jordan wrote:
>
>> Miles Jordan wrote:
>> > Richard (Abe) Coughlin wrote:
>> >> I've seen a few references to a link regarding database-driven styling,
>> >> but when I click on any of them they send me to the geoserver home
>> page.
>> >>
>> >>
>> >> See http://geoserver.org/display/GEOSDOC/SLD+Snippets (the link).
>> >>
>> >> A reference to this link
>> >>
>> >> http://getsatisfaction.com/opengeo/topics/database_driven_styling_what
>> >> _am_i_doing_wrong.
>> >>
>> >>
>> >> I guess the link has been moved or similar. Can anyone tell me where
>> >> it is or if you saved/copied/printed it, can you send it to me.
>> >
>> > Not sure where that information is exactly now (pretty sure it is
>> > somewhere) but you can get the whole page from google's cache if you
>> > need to: http://webcache.googleusercontent.com/search?q=cache:1-
>> > sAaDyNW60J:geoserver.org/display/GEOSDOC/SLD%2BSnippets+sld+snippets+g
>> > eoserver&cd=1&hl=en&ct=clnk&gl=au&source=www.google.com.au
>> >
>> > The basic idea is that you can substitute styling attributes with values
>> > from your feature type, as in the example from the page: .
>>
>>  As I was saying before my last message magically sent...
>>
>> ...
>> 
>> 
>>  > name="fill">income_color
>>  0.5
>> 
>> 
>>  > name="stroke">income_color
>>  1
>> 
>> 
>> ...
>>
>> Where the value inside of the PropertyName element is the name of your
>> feature attribute, or table column.
>>
>> Regards,
>>
>> Miles
>>
>>
>>
>>
>> ___
>>
>>Australian Antarctic Division - Commonwealth of Australia
>> IMPORTANT: This transmission is intended for the addressee only. If you
>> are not the
>> intended recipient, you are notified that use or dissemination of this
>> communication is
>> strictly prohibited by Commonwealth law. If you have received this
>> transmission in error,
>> please notify the sender immediately by e-mail or by telephoning +61 3
>> 6232 3209 and
>> DELETE the message.
>>Visit our web site at http://www.antarctica.gov.au/
>>
>> ___
>>
>> -

Re: [Geoserver-users] Any interest in a Google Fusion Table Datastore?

2011-02-02 Thread Chris Holmes
That's a great idea - it could be super useful for people who have non
spatial data and can use fusion tables to geocode it.  It didn't occur to me
you could connect straight to it.  We had been contemplating leveraging that
geocoding capability for GeoNode, but I think it could be a nicer story to
be able to tell people to upload there and we could connect directly.  So
yeah, I think the big win is the built in geocoding, less so the storage
thing, as spreadsheet people can understand it, no need to convert to a
shapefile or figure out geocoding.

Are there limits to how much data can be put in?  If not I wonder if it has
any type of spatial index.

C

On Wed, Feb 2, 2011 at 4:44 PM, Ian Turton  wrote:

> While I was reading
> http://blog.thematicmapping.org/2011/02/natural-earth-vectors-in-cloud.htm
> it occurred to me that it might be fun to build a GeoTools Datastore
> that could read data from GFT? I've cross posted to GeoServer to gauge
> interest over there as this might be a solution for people using the
> free AWS machines with limited disc space or just for people with a
> limited amount of space on their install.
>
> There is a java API http://code.google.com/apis/fusiontables/ which
> seems at first glance to allow basic SQL (-like) requests.
>
> Ian
>
> --
> Ian Turton
>
>
> --
> Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
> Finally, a world-class log management solution at an even better
> price-free!
> Download using promo code Free_Logger_4_Dev2Dev. Offer expires
> February 28th, so secure your free ArcSight Logger TODAY!
> http://p.sf.net/sfu/arcsight-sfd2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Inspire plugin

2011-02-02 Thread Chris Holmes
On Wed, Feb 2, 2011 at 9:16 AM, Robert Buckley wrote:

> Ah...I see.
>
> Then it´s a new metadata textbox for the ogc service, but not for the
> individual layers. I was thinking along the lines of offering extended
> metatdata textboxes for each layer. I´ve never understood why the
> metdatalink button was there and how this could be used to offer metadata
> about layers stores within geoserver.
>
> Do you have any idea how others have solved the problem of linking metadata
> with geoserver layers? I am now burdened with the task of having to publish
> metadata about layers served over wms/wfs and am honestly not sure how this
> can be linked with geoserver.
>
>
Just to clarify a few things, to make sure we're on the same page.
Publishing full metadata is a task for a CSW, like GeoNetwork, as Andrea
says.  One current hassle though is that GeoServer has a subset of full
metadata fields (title, abstract, keywords, etc.), so currently one
publishing a service has to manually keep the two in sync (the geonetwork
full metadata and the geoserver service metadata).  We solve this problem in
GeoNode - http://geonode.org  It lets you edit metadata in one place and
then keeps both geonetwork and geoserver in sync.

The GeoServer metadata link is just to provide a link to an ISO or FGDC
metadata document, and it's up to the user to keep it all up to date.  In
GeoNode we automatically make the metadata link in GeoServer, and the
WMS/WFS links in GeoNetwork.

I'm actually talking to our client right now about potentially improving it,
doing something where GeoServer is able to read in or transform the linked
metadata in to the capabilities document, to help avoid filling it all out
multiple times.



>
> yours,
>
> Robert
>
>
> --
> *Von:* Chris Holmes 
> *An:* Robert Buckley 
> *CC:* geoserver-users@lists.sourceforge.net
> *Gesendet:* Mittwoch, den 2. Februar 2011, 14:55:57 Uhr
> *Betreff:* Re: [Geoserver-users] Inspire plugin
>
> The plugin is to add INSPIRE specific view service parameters.  We're still
> working on it, and I keep neglecting to do a blog post on it.  Right now it
> populates the inspire extended capabilities params with geoserver metadata
> fields.  The only new editable one is the language though.  We're figuring
> out now how to handle more.  You can get versions that correspond with
> releases at
>
> http://files.opengeo.org/inspire/
>
> But there are 3-4 bugs fixed that need to wait for RC2.
>
> Chris
>
> On Wed, Feb 2, 2011 at 7:13 AM, Robert Buckley 
> wrote:
>
>> Hi,
>>
>> Is there any information about the inspire plugin for geoserver? As far as
>> I can see geoserver beta was updated to werver wms version 1.3...is this
>> what the plugin is for?
>> I did find this thread about it...
>>
>> http://old.nabble.com/inspire-community-module-td30475673.html
>>
>> which talks about a new metadata editor within geoserver. Does the
>> metadata conform to INSPIRE then?
>>
>> thanks for any info,
>>
>> Robert
>>
>>
>>
>>
>> --
>> Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
>> Finally, a world-class log management solution at an even better
>> price-free!
>> Download using promo code Free_Logger_4_Dev2Dev. Offer expires
>> February 28th, so secure your free ArcSight Logger TODAY!
>> http://p.sf.net/sfu/arcsight-sfd2d
>> ___
>> Geoserver-users mailing list
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>>
>
>
>
> --
> Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
> Finally, a world-class log management solution at an even better
> price-free!
> Download using promo code Free_Logger_4_Dev2Dev. Offer expires
> February 28th, so secure your free ArcSight Logger TODAY!
> http://p.sf.net/sfu/arcsight-sfd2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Inspire plugin

2011-02-02 Thread Chris Holmes
The plugin is to add INSPIRE specific view service parameters.  We're still
working on it, and I keep neglecting to do a blog post on it.  Right now it
populates the inspire extended capabilities params with geoserver metadata
fields.  The only new editable one is the language though.  We're figuring
out now how to handle more.  You can get versions that correspond with
releases at

http://files.opengeo.org/inspire/

But there are 3-4 bugs fixed that need to wait for RC2.

Chris

On Wed, Feb 2, 2011 at 7:13 AM, Robert Buckley wrote:

> Hi,
>
> Is there any information about the inspire plugin for geoserver? As far as
> I can see geoserver beta was updated to werver wms version 1.3...is this
> what the plugin is for?
> I did find this thread about it...
>
> http://old.nabble.com/inspire-community-module-td30475673.html
>
> which talks about a new metadata editor within geoserver. Does the metadata
> conform to INSPIRE then?
>
> thanks for any info,
>
> Robert
>
>
>
>
> --
> Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
> Finally, a world-class log management solution at an even better
> price-free!
> Download using promo code Free_Logger_4_Dev2Dev. Offer expires
> February 28th, so secure your free ArcSight Logger TODAY!
> http://p.sf.net/sfu/arcsight-sfd2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Fwd: Google Earth Tile vs. KML Generation

2011-02-01 Thread Chris Holmes
Hrm.  I'm on 5.2.1 and I also see this bug. It looks to be present in beta 2
and RC1.  I think the href is screwed up.  See 2.1.x


http://www.opengis.net/kml/2.2"; xmlns:gx="
http://www.google.com/kml/ext/2.2"; xmlns:kml="http://www.opengis.net/kml/2.2";
xmlns:atom="http://www.w3.org/2005/Atom";>

tiger:tiger_roads
0

http://localhost:8080/geoserver/layer_0.png
0.75


40.79879226908909
40.76363171731663
-73.93688121798309
-73.99751930085826




In 2.0.x we get


http://www.opengis.net/kml/2.2"; xmlns:gx="
http://www.google.com/kml/ext/2.2"; xmlns:kml="http://www.opengis.net/kml/2.2";
xmlns:atom="http://www.w3.org/2005/Atom";>

tiger_roads


http://demo.opengeo.org/geoserver/wms?height=1024&width=1024&layers=tiger%3Atiger_roads&request=GetMap&service=wms&styles=tiger_roads&format_options=SUPEROVERLAY%3Afalse%3BKMPLACEMARK%3Afalse%3BKMSCORE%3A40%3BKMATTR%3Atrue%3B&srs=EPSG%3A4326&format=application%2Fvnd.google-earth.kmz%2Bxml&transparent=false&version=1.1.1&BBOX=-74.06528942356405,40.72433381874588,-73.8690807472,40.83803156067457/layer_0.png

0.75


40.83803156067457
40.72433381874588
-73.8690807472
-74.06528942356405





Does anyone know why that changed?

Digging in to it, looks to be that beta1 works, so was probably introduced
during the WMS refactoring.  I'm pretty surprised no one has seen this
before though.  It consistently fails with tiger_roads and probably any of
the rasters.

C



On Mon, Jan 31, 2011 at 4:55 PM, David Collins wrote:

> Sorry, didn't reply all ..
>
> Is this a known bug?
>
> -- Forwarded message --
> From: David Collins 
> Date: Mon, Jan 31, 2011 at 12:16 PM
> Subject: Re: [Geoserver-users] Google Earth Tile vs. KML Generation
> To: Bob Wenzlau 
>
>
> Hello, Bob.
>
> I am using Geoserver 2.0.2 and I get the big red cross when Geoserver sends
> raster if I use Google Earth 6, but not if I use Google Earth 5.
>
> Regards,
> David
>
>
> On Mon, Jan 31, 2011 at 9:29 AM, Bob Wenzlau  wrote:
>
>> Hi,
>>
>> This is my first post in this forum, and obviously I am learning this
>> suite.
>>
>> I have a layer that has the daycare facilities in the state of California.
>> It comes off a PostGis DB on the GeoServer.
>>
>> For example:  this URL will resolve in KML at low zoom levels, but as one
>> zooms out the GeoServer throws tiles with red X's.
>>
>> http://184.106.68.77:8080/geoserver/wms/kml?layers=pgterradex:ca_daycare
>>
>> Alternately, this URL from the GeoCache Configure tool will resolve tiles,
>> but never shifts to the kml as one zooms in. (this is after running tile
>> generation)
>>
>> http://184.106.68.77:8080
>> /geoserver/gwc/service/kml/pgterradex:ca_daycare.png.kml
>>
>> This results in the following questions that I hope I can get some help
>> with:
>>
>>- How or where do I control the transition from a wms tiles to kml?
>>- How do I limit the number of features shown within a view so the map
>>does not stack up with icons. (icons overflow map)
>>- I used the GeoCache, but did not find web.xml file in the web-inf
>>folder - it is empty (Windows version). It is not clear where I find the
>>setting to understand where the cache tiles are going.
>>- Finally, is there away to set the 
>> $[description]
>>in order to avoid the drive to / from showing up in the Google Earth
>>Balloon.
>>
>> Thanks,
>>
>> Bob
>>
>>
>> --
>> Bob Wenzlau
>> *Terradex, Inc.*
>> 650-227-3251 | b...@terradex.com | Read the Monitor: A Terradex 
>> Blog
>>
>>
>> --
>> Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
>> Finally, a world-class log management solution at an even better
>> price-free!
>> Download using promo code Free_Logger_4_Dev2Dev. Offer expires
>> February 28th, so secure your free ArcSight Logger TODAY!
>> http://p.sf.net/sfu/arcsight-sfd2d
>> ___
>> Geoserver-users mailing list
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>>
>
>
>
> --
> Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
> Finally, a world-class log management solution at an even better
> price-free!
> Download using promo code Free_Logger_4_Dev2Dev. Offer expires
> February 28th, so secure your free ArcSight Logger TODAY!
> http://p.sf.net/sfu/arcsight-sfd2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a

Re: [Geoserver-users] Exception when inserting a new feature in PostGIS through GeoServer/WFS-T: java.lang.String cannot be cast to com.vividsolutions.jts.geom.Geometry

2011-01-20 Thread Chris Holmes
   at
> org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:360)
> at
> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
> at
> org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)
> at
> org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:726)
> at
> org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405)
> at
> org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
> at
> org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
> at
> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
> at org.mortbay.jetty.Server.handle(Server.java:324)
> at
> org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
> at
> org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:842)
> at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:648)
> at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:211)
> at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:380)
> at
> org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
> at
> org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
>
> Caused by: java.lang.ClassCastException: java.lang.String cannot be cast to
> com.vividsolutions.jts.geom.Geometry
> at
> org.geotools.jdbc.JDBCDataStore.insertSQL(JDBCDataStore.java:3245)
> at org.geotools.jdbc.JDBCDataStore.insert(JDBCDataStore.java:1249)
> at org.geotools.jdbc.JDBCDataStore.insert(JDBCDataStore.java:1207)
> at
> org.geotools.jdbc.JDBCInsertFeatureWriter.write(JDBCInsertFeatureWriter.java:73)
> at
> org.geotools.data.InProcessLockingManager$1.write(InProcessLockingManager.java:335)
> at
> org.geotools.data.store.ContentFeatureStore.addFeatures(ContentFeatureStore.java:255)
> at
> org.vfny.geoserver.global.GeoServerFeatureStore.addFeatures(GeoServerFeatureStore.java:81)
> at
> org.geoserver.wfs.InsertElementHandler.execute(InsertElementHandler.java:173)
> ... 69 more
>
> Request: transaction
> handle = null
> service = WFS
> version = 1.0.0
> baseUrl = http://mnsgeo:8080/geoserver/
> providedVersion = null
> lockId = null
> group =
> [wfs:insert=net.opengis.wfs.impl.InsertElementTypeImpl@174f6ce (feature:
> [SimpleFeatureImpl:zones=[SimpleFeatureImpl.Attribute: geom id=fid--38cac012_12da2e59234_-8000>=, SimpleFeatureImpl.Attribute:
> sitename=HAA]], handle: null,
> idgen: , inputFormat: , srsName: null)]
> insert = [net.opengis.wfs.impl.InsertElementTypeImpl@174f6ce(feature: 
> [SimpleFeatureImpl:zones=[SimpleFeatureImpl.Attribute: geom id=fid--38cac012_12da2e59234_-8000>=, SimpleFeatureImpl.Attribute:
> sitename=HAA]], handle: null,
> idgen: , inputFormat: , srsName: null)]
> update = []
> delete = []
> native = []
> releaseAction = ALL
>
> Any ideas?
>
> Regards,
> Rob.
>
>
> 2011/1/20 Chris Holmes 
>
>> You're going to need to provide some more info to give anyone the chance
>> to help solve the problem.
>>
>> Can you get what the actual transaction request that MapInfo is sending?
>>
>> Posting the logs with the logging level turned up also may help.
>>
>> Chris
>>
>> On Wed, Jan 19, 2011 at 11:20 AM, InterRob  wrote:
>>
>>> Dear list,
>>>
>>> I have a PostGIS table with just 8 geometries (polygons), each row having
>>> only one data attribute (character(8) ).
>>> Using MapInfo 10.5 as a client, I downloaded these through WFS. Then, I
>>> added one feature by drawing a polygon and assigning some text to the new
>>> records' single attribute.
>>>
>>> To commit the editing to DBMS, I instructed MapInfo to save the table:
>>> MapInfo then generates a transaction request. However, GeoServer fails to
>>> process the transaction, logging a org.geoserver.wfs.WFSTransactionException
>>> ("Error performing insert").
>>>
>>> It is stated that the exception was caused by:
>>> java.lang.ClassCastException: java.lang.String cannot be cast to
>>> com.vividsolutions.jts.geom.Geometry
>>>
>>> I'm running GeoServer 2.0.2.
>>>
>>> What is possibly causing this? Any help or hints are very much
>>> appreciated!
>>>
>>> Regards,
>>>
>>> Rob.
>>>
>>>
>>> --
>>> Protect Your Site and Customers from Malware Attacks
>>> Learn about various malware tactics and how to avoid them. Understand
>>> malware threats, the impact they can have on your business, and how you
>>> can protect your company and customers by using code signing.
>>> http://p.sf.net/sfu/oracle-sfdevnl
>>> ___
>>> Geoserver-users mailing list
>>> Geoserver-users@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>>
>>>
>>
>
--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Exception when inserting a new feature in PostGIS through GeoServer/WFS-T: java.lang.String cannot be cast to com.vividsolutions.jts.geom.Geometry

2011-01-19 Thread Chris Holmes
You're going to need to provide some more info to give anyone the chance to
help solve the problem.

Can you get what the actual transaction request that MapInfo is sending?

Posting the logs with the logging level turned up also may help.

Chris

On Wed, Jan 19, 2011 at 11:20 AM, InterRob  wrote:

> Dear list,
>
> I have a PostGIS table with just 8 geometries (polygons), each row having
> only one data attribute (character(8) ).
> Using MapInfo 10.5 as a client, I downloaded these through WFS. Then, I
> added one feature by drawing a polygon and assigning some text to the new
> records' single attribute.
>
> To commit the editing to DBMS, I instructed MapInfo to save the table:
> MapInfo then generates a transaction request. However, GeoServer fails to
> process the transaction, logging a org.geoserver.wfs.WFSTransactionException
> ("Error performing insert").
>
> It is stated that the exception was caused by:
> java.lang.ClassCastException: java.lang.String cannot be cast to
> com.vividsolutions.jts.geom.Geometry
>
> I'm running GeoServer 2.0.2.
>
> What is possibly causing this? Any help or hints are very much appreciated!
>
> Regards,
>
> Rob.
>
>
> --
> Protect Your Site and Customers from Malware Attacks
> Learn about various malware tactics and how to avoid them. Understand
> malware threats, the impact they can have on your business, and how you
> can protect your company and customers by using code signing.
> http://p.sf.net/sfu/oracle-sfdevnl
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] What is the current position on metadata with Geoserver?

2011-01-12 Thread Chris Holmes
On Wed, Jan 12, 2011 at 2:03 PM, Robert Buckley wrote:

> Hi,
>
> I was looking at the layer configurations of geoserver and noticed the
> metadata link config. Is this new or have a just overseen it?
>
>
It's not new.  But it's just a field you fill out, doesn't do any automatic
linking with anything.


> Regarding metadata and geoserver I have the following questions.
>
> 1. How can I link a layer name to an xml file?
>

I'm not sure what you mean here.  But if you fill out that metadata link on
the layer then it'll include that in the capabilities in GeoServer


> 2. Is there a to link metadata from Geonetwork?
>

Yeah, it's not a great link, they never made really readable links, so it's
just the CSW call.  But an example is:
http://demo.geonode.org/geonetwork/srv/en/csw?outputschema=http://www.isotc211.org/2005/gmd&service=CSW&request=GetRecordById&version=2.0.2&elementsetname=full&id=7bbcae0b-37ba-46f1-8293-3bb5598d7964


> 3. What is the easiest way to keep metadata and geoserver together and up
> to date?
>
>
We've talked about doing some nice direct GeoNetwork/GeoServer thing where
they communicate directly together, but no one's implemented.  In our
GeoNode project we do keep the two in sync, but we abstract out the UI for
both, so using Django is the only way to edit the service properties for
either.  It's nice because it keeps the links between the two right, and
also has their abstract, keywords, etc. stay the same.  But we use python to
do the coordination, using the service interfaces of both (CSW transactions
and RESTConfig), so we can't easily incorporate it in to GeoServer.


> Wouldn´t it be good if geoserver offered a metadata editor which kept the
> data and it´s metadata together?
>
>
We decided to do that in GeoNode.  I suppose one could build a java metadata
editor that talked CSW.


> ...or can I do this already?
>
>
Nope, for now you have to keep them in sync yourself.

best regards,

Chris


> thanks,
>
> Robert Buckley
>
>
>
>
> --
> Protect Your Site and Customers from Malware Attacks
> Learn about various malware tactics and how to avoid them. Understand
> malware threats, the impact they can have on your business, and how you
> can protect your company and customers by using code signing.
> http://p.sf.net/sfu/oracle-sfdevnl
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] ImageMosaic for timeseries dataset?

2011-01-09 Thread Chris Holmes
Hey Simone, did you guys ever get time stuff working with vector stuff as
well?

It'd be awesome to get 'time' in as a feature for geoserver 2.1.x, and it
sounds like you all did most of the work already, it just needs to be
documented?  I could probably help out with a bit of time to help document,
and/or in a few weeks OpenGeo may be able to put some resources towards it.
If it's there we also could soon work on a GeoExt time slider or something,
maybe incorporate simile, that could show off the capabilities.

C

On Mon, Nov 8, 2010 at 7:23 AM, Simone Giannecchini <
simone.giannecch...@geo-solutions.it> wrote:

> Ciao Jefferson,
> first a few questions:
>
> - can you point can you run a gdalinfo on two of those files and paste it
> over?
> - which version of geoserver are you playing with?
>
> Now about time management in the ImageMosaic plugin. That is still
> undocumented but I can give you a simple example of it is working
> right now.
> I have a attached a simple zip file that you can use as reference; it
> contains a few geotiff from the blue marble over various months, plus
> the properties files needed to driver the indexer
> which I am now going to explain.
> Notice that the outcome index will be a shapefile.
>
> - indexer.properties -
> Drives the indexer to automagically index the directory.  Here below
> an explanation of the params:
>
> - TimeAttribute=ingestion tell the indexer which name to use for the
> TimeAttribute in the index
> - Schema= the_geom:Polygon,location:String,ingestion:java.util.Date
> schema for the final index
> - PropertyCollectors=TimestampFileNameExtractorSPI[timeregex](ingestion)
>  tell the PropertyCollector TimestampFileNameExtractor to extract the
> value of the ingestion attribute for each granule of the mosaic and
> assign it to the ingestion attribute by using the timeregex regular
> expression.
>
> - timeregex.properties -
>
> Contains a regular expression that extract a time from the name of the
> file. In this case regex=[0-9]{6}
>
>
> == How this works ==
> - place the indexer.properites file as well as the sibling regex files
> inside the directory to index
> - point the imagemosaic to that directory and create a coverage for it
>
> A shapefile should be created automatically with the proper fields for
> time management.
> GeoServer will see by default the TIME attribute in the mosaic and
> will expose in the GetCapabilities response. There is one culprit
> though,
> shapefile does not allow time up to millisec since they are based on
> old version of the db4 database file. Therefore we have extended it
> to do so, but you need to enable such extension adding the following
> switch to GeoServer:
>
> -Dorg.geotools.shapefile.datetime=true
>
>  Once you get geoserver up and running and you confirm that the
> GetCapabilities looks like this:
>
> http://pastebin.com/CiPPxKBC
>
> you can open up the openlayers preview and play with the TIME in
> ISO8601 format like this:
>
> ...&format=application/openlayers&TIME=2004-05
>
> Hope that helps.
>
> Ciao,
> Simone.
>
>
>
> ---
> ===
> Notice that our office phone number has recently changed!
> Please, update your records!
> ===
> Ing. Simone Giannecchini
> GeoSolutions S.A.S.
> Founder
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
>
> phone: +39 0584962313
> fax:  +39 0584962313
> mob:+39 333 8128928
>
>
> http://www.geo-solutions.it
> http://geo-solutions.blogspot.com/
> http://www.linkedin.com/in/simonegiannecchini
> http://twitter.com/simogeo
>
> ---
>
>
>
> On Thu, Nov 4, 2010 at 3:49 PM, Jefferson Heard
>  wrote:
> > I have the following directory setup:
> > /opt/data/gis/rasters/ndfd/ds.sky
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.01.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.02.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.03.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.04.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.05.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.06.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.07.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.08.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.09.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.10.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.11.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.12.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.13.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.14.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.15.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.16.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.17.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.18.tiff
> > /opt/data/gis/rasters/ndfd/ds.sky/ds.sky.prj
> > All the tiles are exactly the same projection and dimensions, but they're
> > all different timeseries offsets.  Is there a way to treat this as a
> > timeseries instead of a mosaic and a way to get the ImageMosai

Re: [Geoserver-users] App Schema Transactions

2011-01-07 Thread Chris Holmes
Nope, it hasn't.  I can get you in touch with the guys who wrote it, maybe
if you have a bit of funding they can clean it up and contribute it.  Though
I know they intend to, they just haven't found the time.  People expressing
interest like this will probably help them, especially if you're willing to
help improve it and bug fix it.

On Fri, Jan 7, 2011 at 7:28 AM, Andrew Chamberlain wrote:

>  Hi Chris,
>
> Do you know if the parsing of complex GML features made it back into the
> trunk?
>
> Regards,
>
> Andy
>
> ----------
>
> On 16/12/2010 15:42, Chris Holmes wrote:
>
> Note there are some developers who have built support for parsing complex
> GML features.  They just haven't got the go ahead and time to contribute the
> code back.  Though I'm meeting them today, so will mention that there is
> real community interest.
>
> On Mon, Dec 13, 2010 at 9:08 PM, Ben Caradoc-Davies
>   wrote:
>
>> Andrew,
>>
>> there are technical barriers, such as the lack of support for parsing
>> complex GML features. WFS-T would require parsing complex features
>> before they could be inserted into a database. app-schema is build on
>> simple features, and so locking would have to be coordinated with these.
>> Furthermore, feature chaining would mean that related features would
>> also have to be locked.
>>
>> The biggest technical problem in my view is that CQL expressions are
>> used to implement polymorphism (conditionals) and to construct data in
>> the middleware. CQL expressions are in general irreversible. This is a
>> huge problem in using the existing mapping as it stands. So perhaps a
>> new mapping might be required? (Or a new ORM backend that addresses both
>> reversibility and efficiency in one go?)
>>
>> One conceptual hurdle is object identity and referential integrity. When
>> you update a complex feature, are you also updating nested properties,
>> or just the top-level feature? What about properties that are shared
>> between multiple features (associations)? What about multivalued
>> attributes: do you need to garbage collect to preserve foreign key
>> constraints?
>>
>> Sorry, I have more questions than answers. This is an interesting
>> problem.  :-)
>>
>> Kind regards,
>> Ben.
>>
>> On 13/12/10 20:02, Andrew Chamberlain wrote:
>> > Hi All,
>> >
>> > We were just sizing up the task of enabling transactions with the
>> > app-schema plugin, and were wondering if anyone knew of any major issues
>> > which might prevent / trouble the development of this?  Questions which
>> > immediately come to mind are:
>> >
>> > 1) Would the current mappings be re-usable, or would a separate set be
>> > needed for the reverse (i.e. write) direction?
>> > 2) Would such a reverse mapping be possible with the current mechanisms?
>> >
>> > I'm hoping that the original reason that transactions wasn't implemented
>> > was simply a matter of limited time and funds, and not something
>> technical.
>> >
>> > Any thoughts/pointers would be much appreciated.
>> >
>> > Best regards,
>> >
>> > Andy
>> >
>> >
>> --
>> > Oracle to DB2 Conversion Guide: Learn learn about native support for
>> PL/SQL,
>> > new data types, scalar functions, improved concurrency, built-in
>> packages,
>> > OCI, SQL*Plus, data movement tools, best practices and more.
>> > http://p.sf.net/sfu/oracle-sfdev2dev
>> > ___
>> > Geoserver-users mailing list
>> > Geoserver-users@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
>> >
>>
>>
>>  --
>> Ben Caradoc-Davies 
>> Software Engineering Team Leader
>> CSIRO Earth Science and Resource Engineering
>> Australian Resources Research Centre
>>
>>
>> --
>> Lotusphere 2011
>> Register now for Lotusphere 2011 and learn how
>> to connect the dots, take your collaborative environment
>> to the next level, and enter the era of Social Business.
>> http://p.sf.net/sfu/lotusphere-d2d
>>  ___
>> Geoserver-users mailing list
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>
>
--
Gaining the trust of online customers is vital for the success of any company
that requires sensitive data to be transmitted over the Web.   Learn how to 
best implement a security strategy that keeps consumers' information secure 
and instills the confidence they need to proceed with transactions.
http://p.sf.net/sfu/oracle-sfdevnl ___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Creating Repository

2011-01-03 Thread Chris Holmes
You also could try http://geonode.org  It built on GeoServer and has a
shapefile/geotiff through the web uploader, and we're working on an ftp
uploader (which will be a geoserver community module).  It uses Django as a
web framework, and its user access hooks in to GeoServer's security, so you
can use its gui to limit user access.  Also does things like styling through
the web and provides CS-W on layers uploaded, with metadata editing that
gets picked up by GeoServer and GeoNetwork.  It's a lot of software to set
up and coordinate, but we just about done with ubuntu packages that should
be released shortly.

On Thu, Dec 30, 2010 at 10:43 PM, Smitha V  wrote:

> Yes, i have a postgres/postgis DB. Can you pls give the steps in more
> detail?
>
> On Thu, Dec 30, 2010 at 7:30 PM, Meron  wrote:
>
>> you will need a postgres/postgis DB and to create a web interface that
>> enables users to load their data. It may require to put some hours of works
>> but possible.
>>
>>
>>
>>
>>
>>
>>
>> 
>> Meron A. Gebre
>> Software Engineer
>> Earth Resources Technology (ERT), Inc.,
>> Contractor to USGS/EROS
>> 47914 252nd Street
>> Sioux Falls, SD 57198
>> Tel.   : (605) - 594 - 6842
>> Fax.  : (605) - 594 - 6119
>> mabr...@usgs.gov
>>
>>
>> --
>> *From:* Smitha V 
>> *To:* geoserver-users@lists.sourceforge.net
>> *Sent:* Wed, 29 December, 2010 22:27:25
>> *Subject:* [Geoserver-users] Creating Repository
>>
>> I am new to Geoserver. Can somebody tell me if it is possible to create a
>> central repository using Geoserver, where people can deposit data and be
>> able to access it?
>>
>> --
>> Regards
>> Smitha V
>> MT2009149
>>
>>
>
>
> --
> Regards
> Smitha V
> MT2009149
>
>
> --
> Learn how Oracle Real Application Clusters (RAC) One Node allows customers
> to consolidate database storage, standardize their database environment,
> and,
> should the need arise, upgrade to a full multi-node Oracle RAC database
> without downtime or disruption
> http://p.sf.net/sfu/oracle-sfdevnl
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and, 
should the need arise, upgrade to a full multi-node Oracle RAC database 
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Pagination and WFS

2010-12-21 Thread Chris Holmes
There are definitely plans to, and I don't think it should take too much
work, we're all just waiting for an opportunity or someone to fund it.  I
believe it will be necessary for WFS 2.0, so it's on the roadmap for sure.

Chris

On Tue, Dec 21, 2010 at 10:15 AM, Fernando Barbat  wrote:

> Are there any plans add support for a startIndex parameter in WFS
> resquests? I found this feature was requested but there are no comments
> about it (http://jira.codehaus.org/browse/GEOS-3405). What other
> alternatives exist for implementing paging using WFS?
>
> I would like to use Filter based queries to get properties of geometries
> and their bounds but not the geometry themselves. Are there any clean ways
> to do pagination on that?
>
> Thanks.
>
>
> --
> Forrester recently released a report on the Return on Investment (ROI) of
> Google Apps. They found a 300% ROI, 38%-56% cost savings, and break-even
> within 7 months.  Over 3 million businesses have gone Google with Google
> Apps:
> an online email calendar, and document program that's accessible from your
> browser. Read the Forrester report: http://p.sf.net/sfu/googleapps-sfnew
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Forrester recently released a report on the Return on Investment (ROI) of
Google Apps. They found a 300% ROI, 38%-56% cost savings, and break-even
within 7 months.  Over 3 million businesses have gone Google with Google Apps:
an online email calendar, and document program that's accessible from your 
browser. Read the Forrester report: http://p.sf.net/sfu/googleapps-sfnew___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] mySQL

2010-12-20 Thread Chris Holmes
MySQL has limited spatial capabilities - they do have geometry storage and a
spatial index.  The main problem is that all spatial operations are done
against the bounds of the geometries.  So they're not exactly accurate.  So
if your polygons are all boxes then it'll work great, if not then it'll also
return points that are outside of polygon but in its box (at least this is
my understanding of MySQL functions).  Now, GeoTools does have the
capabilities to deal with this - to not pass the spatial filters to MySQL to
try to handle, but to do the filtering itself.  This is what we do for
Shapefiles.  I'm not sure where exactly the MySQL datastore stands though,
if it does the right thing.  It was coded pretty quickly and hasn't seen a
lot of love.  You should be able to test it pretty easily though.  And if it
didn't work but you could get dirty with java code it may not be that hard
to fix.

GeoServer does not have the ability to join across datastores, so your
second idea won't really work.

hope that helps,

Chris

On Fri, Dec 17, 2010 at 9:04 AM, Stephen Crawford  wrote:

> All.
>
> I've been using Geoserver with postgres/postgis for years and we use it
> in almost all of our tools.  I now have a project where the user has an
> existing mySQL database.  The data are all points, and for the most part
> we will be just plotting points, querying the data by some attribute;
> for this we don't even need geoserver.  However they would like the
> ability to also select points by polygons such as states or ecoregions
> or watersheds, etc.  Does mySQL have enough spatial capability to do
> this?  And/or with geoserver can one select the points from a feature
> layer in one datastore (mySQL) using a polygon layer from another data
> store?
>
> Thanks,
> Steve
>
> --
> Stephen Crawford
> Center for Environmental Informatics
> The Pennsylvania State University
> src...@psu.edu
> 814.865.9905
>
>
>
>
> --
> Lotusphere 2011
> Register now for Lotusphere 2011 and learn how
> to connect the dots, take your collaborative environment
> to the next level, and enter the era of Social Business.
> http://p.sf.net/sfu/lotusphere-d2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] App Schema Transactions

2010-12-16 Thread Chris Holmes
Note there are some developers who have built support for parsing complex
GML features.  They just haven't got the go ahead and time to contribute the
code back.  Though I'm meeting them today, so will mention that there is
real community interest.

On Mon, Dec 13, 2010 at 9:08 PM, Ben Caradoc-Davies
 wrote:

> Andrew,
>
> there are technical barriers, such as the lack of support for parsing
> complex GML features. WFS-T would require parsing complex features
> before they could be inserted into a database. app-schema is build on
> simple features, and so locking would have to be coordinated with these.
> Furthermore, feature chaining would mean that related features would
> also have to be locked.
>
> The biggest technical problem in my view is that CQL expressions are
> used to implement polymorphism (conditionals) and to construct data in
> the middleware. CQL expressions are in general irreversible. This is a
> huge problem in using the existing mapping as it stands. So perhaps a
> new mapping might be required? (Or a new ORM backend that addresses both
> reversibility and efficiency in one go?)
>
> One conceptual hurdle is object identity and referential integrity. When
> you update a complex feature, are you also updating nested properties,
> or just the top-level feature? What about properties that are shared
> between multiple features (associations)? What about multivalued
> attributes: do you need to garbage collect to preserve foreign key
> constraints?
>
> Sorry, I have more questions than answers. This is an interesting
> problem.  :-)
>
> Kind regards,
> Ben.
>
> On 13/12/10 20:02, Andrew Chamberlain wrote:
> > Hi All,
> >
> > We were just sizing up the task of enabling transactions with the
> > app-schema plugin, and were wondering if anyone knew of any major issues
> > which might prevent / trouble the development of this?  Questions which
> > immediately come to mind are:
> >
> > 1) Would the current mappings be re-usable, or would a separate set be
> > needed for the reverse (i.e. write) direction?
> > 2) Would such a reverse mapping be possible with the current mechanisms?
> >
> > I'm hoping that the original reason that transactions wasn't implemented
> > was simply a matter of limited time and funds, and not something
> technical.
> >
> > Any thoughts/pointers would be much appreciated.
> >
> > Best regards,
> >
> > Andy
> >
> >
> --
> > Oracle to DB2 Conversion Guide: Learn learn about native support for
> PL/SQL,
> > new data types, scalar functions, improved concurrency, built-in
> packages,
> > OCI, SQL*Plus, data movement tools, best practices and more.
> > http://p.sf.net/sfu/oracle-sfdev2dev
> > ___
> > Geoserver-users mailing list
> > Geoserver-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
> >
>
>
> --
> Ben Caradoc-Davies 
> Software Engineering Team Leader
> CSIRO Earth Science and Resource Engineering
> Australian Resources Research Centre
>
>
> --
> Lotusphere 2011
> Register now for Lotusphere 2011 and learn how
> to connect the dots, take your collaborative environment
> to the next level, and enter the era of Social Business.
> http://p.sf.net/sfu/lotusphere-d2d
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] App Schema Transactions

2010-12-13 Thread Chris Holmes
I'm not an app schema expert, but I'm pretty sure it's a lot more involved
than just reusing current mappings.

I know of one group that's done transactions against app schema stuff, but
I'm pretty sure they just did transactions against the underlying flat
schemas.  It'd be relatively easy to set up some triggers to make sure that
things get updated properly.  But doing it completely generically sounds
like a big task to me.  Though someone with more app-schema knowledge
hopefully will sound in with more specifics about the possibilities.

best regards,

Chris

On Mon, Dec 13, 2010 at 7:02 AM, Andrew Chamberlain wrote:

> Hi All,
>
> We were just sizing up the task of enabling transactions with the
> app-schema plugin, and were wondering if anyone knew of any major issues
> which might prevent / trouble the development of this?  Questions which
> immediately come to mind are:
>
> 1) Would the current mappings be re-usable, or would a separate set be
> needed for the reverse (i.e. write) direction?
> 2) Would such a reverse mapping be possible with the current mechanisms?
>
> I'm hoping that the original reason that transactions wasn't implemented
> was simply a matter of limited time and funds, and not something technical.
>
> Any thoughts/pointers would be much appreciated.
>
> Best regards,
>
> Andy
>
>
> --
> Oracle to DB2 Conversion Guide: Learn learn about native support for
> PL/SQL,
> new data types, scalar functions, improved concurrency, built-in packages,
> OCI, SQL*Plus, data movement tools, best practices and more.
> http://p.sf.net/sfu/oracle-sfdev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] [Geoserver-devel] GeoServer 2.1-beta2 released

2010-12-06 Thread Chris Holmes
Cool.  I'll try to take it on later tonight.

If anyone can help with what the major new things we've done between beta1
and 2 that'd be great, just reply here.  I'll also dig through jira.

On Mon, Dec 6, 2010 at 12:28 PM, Alessio Fabiani <
alessio.fabi...@geo-solutions.it> wrote:

> If you can help with the blog post it would be great.
>
> I had no chance yet today to write something.
>
>
> ---
> Ing. Alessio Fabiani
> Founder / CTO GeoSolutions S.A.S.
>
> GeoSolutions S.A.S.
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
>
> phone: (+39) 0584 96.23.13
> fax: (+39) 0584 96.23.13
> mobile:(+39) 349 82.27.000
>
> http://www.geo-solutions.it
> http://geo-solutions.blogspot.com
> http://www.linkedin.com/in/alessiofabiani
> http://twitter.com/simogeo
> ---
>
>
> On Mon, Dec 6, 2010 at 6:26 PM, Chris Holmes  wrote:
>
>> Woot!
>>
>> Great work guys, thanks for pushing it out.
>>
>> You have a blog post in the works?  I may be able to find a bit of time to
>> help out there.  Also we should update the front page when we have a blog
>> post.
>>
>> On Mon, Dec 6, 2010 at 9:11 AM, Alessio Fabiani <
>> alessio.fabi...@geo-solutions.it> wrote:
>>
>>> GeoServer 2.1-beta2 (December 06, 2010)
>>> 
>>>
>>> The second beta release of GeoServer 2.1.
>>>
>>> The entire change log is available here:
>>>
>>>
>>> http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10311&version=16728
>>>
>>> This release is based on the GeoTools 2.7-M4 release.
>>>
>>> ---
>>> Ing. Alessio Fabiani
>>> Founder / CTO GeoSolutions S.A.S.
>>>
>>> GeoSolutions S.A.S.
>>> Via Poggio alle Viti 1187
>>> 55054  Massarosa (LU)
>>> Italy
>>>
>>> phone: (+39) 0584 96.23.13
>>> fax: (+39) 0584 96.23.13
>>> mobile:(+39) 349 82.27.000
>>>
>>> http://www.geo-solutions.it
>>> http://geo-solutions.blogspot.com
>>> http://www.linkedin.com/in/alessiofabiani
>>> http://twitter.com/simogeo
>>> ---
>>>
>>>
>>> --
>>> What happens now with your Lotus Notes apps - do you make another costly
>>> upgrade, or settle for being marooned without product support? Time to
>>> move
>>> off Lotus Notes and onto the cloud with Force.com, apps are easier to
>>> build,
>>> use, and manage than apps on traditional platforms. Sign up for the Lotus
>>> Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
>>> ___
>>> Geoserver-devel mailing list
>>> geoserver-de...@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/geoserver-devel
>>>
>>>
>>
>>
>> --
>> What happens now with your Lotus Notes apps - do you make another costly
>> upgrade, or settle for being marooned without product support? Time to
>> move
>> off Lotus Notes and onto the cloud with Force.com, apps are easier to
>> build,
>> use, and manage than apps on traditional platforms. Sign up for the Lotus
>> Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
>> ___
>> Geoserver-devel mailing list
>> geoserver-de...@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-devel
>>
>>
>
--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] [Geoserver-devel] GeoServer 2.1-beta2 released

2010-12-06 Thread Chris Holmes
Woot!

Great work guys, thanks for pushing it out.

You have a blog post in the works?  I may be able to find a bit of time to
help out there.  Also we should update the front page when we have a blog
post.

On Mon, Dec 6, 2010 at 9:11 AM, Alessio Fabiani <
alessio.fabi...@geo-solutions.it> wrote:

> GeoServer 2.1-beta2 (December 06, 2010)
> 
>
> The second beta release of GeoServer 2.1.
>
> The entire change log is available here:
>
>
> http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10311&version=16728
>
> This release is based on the GeoTools 2.7-M4 release.
>
> ---
> Ing. Alessio Fabiani
> Founder / CTO GeoSolutions S.A.S.
>
> GeoSolutions S.A.S.
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
>
> phone: (+39) 0584 96.23.13
> fax: (+39) 0584 96.23.13
> mobile:(+39) 349 82.27.000
>
> http://www.geo-solutions.it
> http://geo-solutions.blogspot.com
> http://www.linkedin.com/in/alessiofabiani
> http://twitter.com/simogeo
> ---
>
>
> --
> What happens now with your Lotus Notes apps - do you make another costly
> upgrade, or settle for being marooned without product support? Time to move
> off Lotus Notes and onto the cloud with Force.com, apps are easier to
> build,
> use, and manage than apps on traditional platforms. Sign up for the Lotus
> Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
> ___
> Geoserver-devel mailing list
> geoserver-de...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-devel
>
>
--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] More CPU or more RAM?

2010-11-26 Thread Chris Holmes
How much data is going to be served up?  The advantage of more memory would
be that your shapefile disk block would make it in to the OS disk cache, and
then things would go quite fast.  Of course once that happens then you'll
definitely be CPU bound, so if most of your data will fit in the 7g of ram
then the more cpus will be faster.  Arne knows this stuff much better than
I, and he's the one I learned from, but giving less explicit memory to java
and postgis may help (or maybe it's smarter than that).

I guess the other thing to consider is how many concurrent users.  Even with
tiling I think you don't get more than 4 threads per user, so if you only
have a few concurrent users than all the extra cpus won't help much, since
geoserver's renderer doesn't use multiple cpus per thread.

On Fri, Nov 26, 2010 at 4:02 PM, Ariel Nunez wrote:

> On Fri, Nov 26, 2010 at 3:47 PM, Gabriel Roldán 
> wrote:
> > looks like it's only using ~500MB, and 1G for the OS buffers.
>
>
> > How're you running tomcat/jetty wrt to heap allocation? Be sure to pass
> > -Xmx as appropriate to the java virtual machine and follow this where
> > applicable:
> > 
>
> I have this in catalina.sh:
> JAVA_OPTS="$JAVA_OPTS -Xmx756m -XX:MaxPermSize=378m
> -XX:CompileCommandFile=/opt/tomcat/conf/hotspot_compiler"
>
> And logging is set to PRODUCTION, but I have not installed the native
> JAI libs yet.
>
>
> > I would go for the 7G RAM/20 cores instance. But that's gut feeling
> > since I really doubt geoserver is gonna need _that much_ memory and
> > think it would appreciate the extra cores.
>
> Yes, this is also what I would like to do. I guess I will give Tomcat
> around 4 gigs and Postgis 1.5 gigs (I need to host at least two
> GeoServer backends for two different GeoNodes)
>
> Ariel.
>
>
> --
> Increase Visibility of Your 3D Game App & Earn a Chance To Win $500!
> Tap into the largest installed PC base & get more eyes on your game by
> optimizing for Intel(R) Graphics Technology. Get started today with the
> Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs.
> http://p.sf.net/sfu/intelisp-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Increase Visibility of Your 3D Game App & Earn a Chance To Win $500!
Tap into the largest installed PC base & get more eyes on your game by
optimizing for Intel(R) Graphics Technology. Get started today with the
Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs.
http://p.sf.net/sfu/intelisp-dev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Geoserver: reference system

2010-11-18 Thread Chris Holmes
One thing you can use to help you get the right request is the WMS
Reflector.  See
http://docs.geoserver.org/stable/en/user/tutorials/wmsreflector.html

You can make a request like
http://suite.opengeo.org/geoserver/wms/reflect?layers=world and get a
default image of the full bounds with the default project projection.

Then you can change the projection,
http://suite.opengeo.org/geoserver/wms/reflect?layers=world&srs=epsg:900913

Or fun ones like
http://suite.opengeo.org/geoserver/wms/reflect?layers=world&srs=epsg:3032(obviously
polar projections aren't really supposed to be done on world
maps).

Can throw on formats as well, even get openlayers output -
http://suite.opengeo.org/geoserver/wms/reflect?layers=world&srs=epsg:3032&format=openlayers

On Thu, Nov 18, 2010 at 4:46 AM, Rahkonen Jukka
wrote:

> Hi,
>
> Of course Geoserver supports other projections but it is not enough to
> change SRS in the WMS requests, you must also give the BBOX to suit the
> target projection.  Now I suppose you have used the same BBOX and Geoserver
> did not find any data from that and sent you an empty map.
>
> -Jukka Rahkonen-
>
> > -Alkuperäinen viesti-
> > Lähettäjä: Antonio Diaz Sanchez [mailto:adiazsanc...@yahoo.es]
> > Lähetetty: 18. marraskuuta 2010 11:28
> > Vastaanottaja: geoserver-users@lists.sourceforge.net
> > Aihe: [Geoserver-users] Geoserver: reference system
> >
> >
> >   Hi,
> >
> >   I have installed a set of layers which are using the
> > reference system EPSG:4326. I was wondering if Geoserver is
> > able to dynamically provide these layers in other reference
> > system if the user requires so. It seems to me that the
> > answer is "no", because if I do a WMS request specifiying
> > other reference system (such as EPSG:32628 or EPSG:900913) it
> > returns nothing. Is Geoserver able to dynamically provide a
> > layer using other reference system than the declared?
> >
> >   Regards,
> >
> >   Anthony
> >
> >
> >
> >
> > --
> > 
> > Beautiful is writing same markup. Internet Explorer 9 supports
> > standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
> > Spend less time writing and  rewriting code and more time
> > creating great
> > experiences on the web. Be a part of the beta today
> > http://p.sf.net/sfu/msIE9-sfdev2dev
> > ___
> > Geoserver-users mailing list
> > Geoserver-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
> >
>
>
> --
> Beautiful is writing same markup. Internet Explorer 9 supports
> standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
> Spend less time writing and  rewriting code and more time creating great
> experiences on the web. Be a part of the beta today
> http://p.sf.net/sfu/msIE9-sfdev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today
http://p.sf.net/sfu/msIE9-sfdev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] download stats

2010-11-17 Thread Chris Holmes
Sourceforge seems to have a cool new download stat feature.

http://sourceforge.net/projects/geoserver/files//stats/map?dates=2010-02-01%20to%202010-11-17

Looks like 1/4 of all GeoServer downloads are from China.  And there's not
even yet a chinese translation for 2.0.x.  We should probably try to do more
outreach and see if we can get some contributors to the core, as there must
be people doing interesting stuff.  Looks like their forum is pretty active
-
http://translate.google.com/translate?js=n&prev=_t&hl=en&ie=UTF-8&layout=2&eotf=1&sl=zh-CN&tl=en&u=http://www.geoserver.org.cn/bbs/&act=url

We are only 215 downloads away from 200,000 all time downloads.

You can remove the extensions though, as that always inflates our download
numbers, see

http://sourceforge.net/projects/geoserver/files/GeoServer/stats/map?dates=1995-11-17+to+2010-11-17

137,000 is actually higher than I thought it would be.
--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today
http://p.sf.net/sfu/msIE9-sfdev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Mastermap

2010-11-15 Thread Chris Holmes
I've never done it, so I don't really know.  I know it's super easy with
Safe FME or Snowflake software's tool.  You also could probably do it with
OGR, just try to transform from the gml to postgis.  Or Oracle, or whatever
your spatial db is.

On Mon, Nov 15, 2010 at 9:39 AM, Stephen Thompson <
stephen.thomp...@cassidian.com> wrote:

>  Hello Chris.
>
> Thanks for this. Do you perhaps know what transforms need to be performed?
>
> Thanks again.
>
> Stephen.
>
>
>  --
> *From:* Chris Holmes [mailto:chol...@opengeo.org]
> *Sent:* 15 November 2010 05:17
> *To:* Simone Giannecchini
> *Cc:* Stephen Thompson; geoserver-users@lists.sourceforge.net
>
> *Subject:* Re: [Geoserver-users] Mastermap
>
> Note though that many people have successfully got GeoServer working with
> OS mastermap data.
>
> This includes OS OnDemand -
> http://www.ordnancesurvey.co.uk/oswebsite/services/osondemand/index.html
> Which is OS's primary WMS service for their customers.  And I know of many
> others who have got it working.  But you do have to do some transforms from
> the OS mastermap GML to load it in to GeoServer.
>
> Chris
>
> On Sun, Nov 14, 2010 at 6:34 PM, Simone Giannecchini <
> simone.giannecch...@geo-solutions.it> wrote:
>
>> Ciao Stephen,
>> I have to admit that I have not spent too much time on investigating
>> this format, but from what I saw I would say that this format, despite
>> of eing of mixture of other formats, is not supported out of the box
>> in GeoServer.
>>
>> Regards,
>> Simone.
>> ---
>> ===
>> Notice that our office phone number has recently changed!
>> Please, update your records!
>> ===
>> Ing. Simone Giannecchini
>> GeoSolutions S.A.S.
>> Founder
>> Via Poggio alle Viti 1187
>> 55054  Massarosa (LU)
>> Italy
>>
>> phone: +39 0584962313
>> fax:  +39 0584962313
>> mob:+39 333 8128928
>>
>>
>> http://www.geo-solutions.it
>> http://geo-solutions.blogspot.com/
>> http://www.linkedin.com/in/simonegiannecchini
>> http://twitter.com/simogeo
>>
>> ---
>>
>>
>>
>> On Wed, Nov 10, 2010 at 10:30 AM, Stephen Thompson
>>   wrote:
>> > Hello Simone,
>> >
>> > The MasterMap format I believe is shipped in GML format but using its'
>> own namespace (I am sure others will correct me if I am wrong). It is issued
>> by the Ordnance Survey in the UK.
>> >
>> > http://en.wikipedia.org/wiki/OS_MasterMap
>> >
>> http://www.ordnancesurvey.co.uk/oswebsite/products/osmastermap/information/technical/index.html
>> >
>> > Regards,
>> >
>> > Stephen.
>> >
>> >
>> > -Original Message-
>> > From: Simone Giannecchini [mailto:simone.giannecch...@geo-solutions.it]
>> > Sent: 09 November 2010 23:42
>> > To: Stephen Thompson
>> > Cc: geoserver-users@lists.sourceforge.net
>> > Subject: Re: [Geoserver-users] Mastermap
>> >
>> > Ciao Stephen,
>> > can you provide more info on this format?
>> >
>> > Simone.
>> > ---
>> > ===
>> > Notice that our office phone number has recently changed!
>> > Please, update your records!
>> > ===
>> > Ing. Simone Giannecchini
>> > GeoSolutions S.A.S.
>> > Founder
>> > Via Poggio alle Viti 1187
>> > 55054  Massarosa (LU)
>> > Italy
>> >
>> > phone: +39 0584962313
>> > fax:  +39 0584962313
>> > mob:+39 333 8128928
>> >
>> >
>> > http://www.geo-solutions.it
>> > http://geo-solutions.blogspot.com/
>> > http://www.linkedin.com/in/simonegiannecchini
>> > http://twitter.com/simogeo
>> >
>> > ---
>> >
>> >
>> >
>> > On Tue, Nov 9, 2010 at 5:13 PM, Stephen Thompson <
>> stephen.thomp...@cassidian.com> wrote:
>> >> Stephen
>> >
>> >
>> --
>> > The Next 800 Companies to Lead America's Growth: New Video Whitepaper
>> David G. Thomson, author of the best-selling book "Blueprint to a Billion"
>> shares his insights and actions to help propel your business during the next
>> growth cycle. Listen Now!
&

Re: [Geoserver-users] demo.opengeo.org issue:too many open files

2010-11-15 Thread Chris Holmes
I just restarted it, hopefully should be working now.

On Mon, Nov 15, 2010 at 5:32 AM, Bart van den Eijnden (OSGIS) <
bart...@osgis.nl> wrote:

> See:
>
>
> http://demo.opengeo.org/geoserver/wms?LAYERS=topp%3Atasmania_cities&FORMAT=image%2Fgif&TRANSPARENT=TRUE&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&EXCEPTIONS=application%2Fvnd.ogc.se_inimage&SRS=EPSG%3A4326&BBOX=142.48817480471,-43.554616210938,150.89271582033,-39.368825195313&WIDTH=765&HEIGHT=381
>
> TIA for fixing it.
>
> Best regards,
> Bart
>
>
>
> --
> Centralized Desktop Delivery: Dell and VMware Reference Architecture
> Simplifying enterprise desktop deployment and management using
> Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
> client virtualization framework. Read more!
> http://p.sf.net/sfu/dell-eql-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Centralized Desktop Delivery: Dell and VMware Reference Architecture
Simplifying enterprise desktop deployment and management using
Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
client virtualization framework. Read more!
http://p.sf.net/sfu/dell-eql-dev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Mastermap

2010-11-14 Thread Chris Holmes
Note though that many people have successfully got GeoServer working with OS
mastermap data.

This includes OS OnDemand -
http://www.ordnancesurvey.co.uk/oswebsite/services/osondemand/index.html
Which is OS's primary WMS service for their customers.  And I know of many
others who have got it working.  But you do have to do some transforms from
the OS mastermap GML to load it in to GeoServer.

Chris

On Sun, Nov 14, 2010 at 6:34 PM, Simone Giannecchini <
simone.giannecch...@geo-solutions.it> wrote:

> Ciao Stephen,
> I have to admit that I have not spent too much time on investigating
> this format, but from what I saw I would say that this format, despite
> of eing of mixture of other formats, is not supported out of the box
> in GeoServer.
>
> Regards,
> Simone.
> ---
> ===
> Notice that our office phone number has recently changed!
> Please, update your records!
> ===
> Ing. Simone Giannecchini
> GeoSolutions S.A.S.
> Founder
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
>
> phone: +39 0584962313
> fax:  +39 0584962313
> mob:+39 333 8128928
>
>
> http://www.geo-solutions.it
> http://geo-solutions.blogspot.com/
> http://www.linkedin.com/in/simonegiannecchini
> http://twitter.com/simogeo
>
> ---
>
>
>
> On Wed, Nov 10, 2010 at 10:30 AM, Stephen Thompson
>  wrote:
> > Hello Simone,
> >
> > The MasterMap format I believe is shipped in GML format but using its'
> own namespace (I am sure others will correct me if I am wrong). It is issued
> by the Ordnance Survey in the UK.
> >
> > http://en.wikipedia.org/wiki/OS_MasterMap
> >
> http://www.ordnancesurvey.co.uk/oswebsite/products/osmastermap/information/technical/index.html
> >
> > Regards,
> >
> > Stephen.
> >
> >
> > -Original Message-
> > From: Simone Giannecchini [mailto:simone.giannecch...@geo-solutions.it]
> > Sent: 09 November 2010 23:42
> > To: Stephen Thompson
> > Cc: geoserver-users@lists.sourceforge.net
> > Subject: Re: [Geoserver-users] Mastermap
> >
> > Ciao Stephen,
> > can you provide more info on this format?
> >
> > Simone.
> > ---
> > ===
> > Notice that our office phone number has recently changed!
> > Please, update your records!
> > ===
> > Ing. Simone Giannecchini
> > GeoSolutions S.A.S.
> > Founder
> > Via Poggio alle Viti 1187
> > 55054  Massarosa (LU)
> > Italy
> >
> > phone: +39 0584962313
> > fax:  +39 0584962313
> > mob:+39 333 8128928
> >
> >
> > http://www.geo-solutions.it
> > http://geo-solutions.blogspot.com/
> > http://www.linkedin.com/in/simonegiannecchini
> > http://twitter.com/simogeo
> >
> > ---
> >
> >
> >
> > On Tue, Nov 9, 2010 at 5:13 PM, Stephen Thompson <
> stephen.thomp...@cassidian.com> wrote:
> >> Stephen
> >
> >
> --
> > The Next 800 Companies to Lead America's Growth: New Video Whitepaper
> David G. Thomson, author of the best-selling book "Blueprint to a Billion"
> shares his insights and actions to help propel your business during the next
> growth cycle. Listen Now!
> > http://p.sf.net/sfu/SAP-dev2dev
> > ___
> > Geoserver-users mailing list
> > Geoserver-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
> >
> >
> > The information contained within this e-mail and any files attached to
> this e-mail is private and in addition may include commercially sensitive
> information. The contents of this e-mail are for the intended recipient only
> and therefore if you wish to disclose the information contained within this
> e-mail or attached files, please contact the sender prior to any such
> disclosure.
> >
> > If you are not the intended recipient, any disclosure, copying or
> distribution is
> > prohibited. Please also contact the sender and inform them of the error
> and delete the e-mail, including any attached files from your system.
> >
> > EADS Defence and Security Systems Ltd., UK Limited Registered Office :
> Quadrant House, Celtic Springs, Coedkernew, Newport , NP10 8FZ Company No:
> 04191036
> > http://www.cassidian.com
> >
> >
> --
> > The Next 800 Companies to Lead America's Growth: New Video Whitepaper
> > David G. Thomson, author of the best-selling book "Blueprint to a
> > Billion" shares his insights and actions to help propel your
> > business during the next growth cycle. Listen Now!
> > http://p.sf.net/sfu/SAP-dev2dev
> > ___
> > Geoserver-users mailing list
> > Geoserver-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
> >
>
>
> --
> Centralized Desktop Deli

Re: [Geoserver-users] WMTS in geoserver

2010-11-13 Thread Chris Holmes
Actually OpenLayers got WMTS support in July, see
http://openlayers.org/blog/2010/07/02/wmts-support-in-openlayers/

Demo at http://openlayers.org/dev/examples/wmts.html (against GeoWebCache
embedded in GeoServer).

On Fri, Nov 12, 2010 at 2:55 PM, Arne Kepp  wrote:

>  GeoServer doesn't have any native support for WMTS at this point, you can
> use GeoWebCache (/geoserver/gwc/service/wmts , only support KVP) and
> configure layers manually (in /gwc/geowebcache.xml)  so
> that they're not really cached.
>
> However, this was mostly implemented against one of the last drafts of the
> WMTS standard, and no real clients were available. So this still needs some
> testing.
>
> Out of curiosity, what client(s) are you intending to use?
>
> -Arne
>
>
>
> On 10/26/10 6:31 AM, aditya kumar wrote:
>
> Hello,
>I am new to Geoserver and I want to know how to use the WMTS in
> Geoserver.
> waiting for your reply.
>
> --
> *Aditya Kumar Singh*
> Geo Spatial Application Developer
> MOb:+918099340111
> +917702873935
>
>
>
>
> --
> Centralized Desktop Delivery: Dell and VMware Reference Architecture
> Simplifying enterprise desktop deployment and management using
> Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
> client virtualization framework. Read more!
> http://p.sf.net/sfu/dell-eql-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Centralized Desktop Delivery: Dell and VMware Reference Architecture
Simplifying enterprise desktop deployment and management using
Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
client virtualization framework. Read more!
http://p.sf.net/sfu/dell-eql-dev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Google Maps and GeoServer without open layer

2010-11-03 Thread Chris Holmes
You also might check out using GeoWebCache, since if you use straight WMS
with GWC you can swamp your server with requests pretty fast.

See http://geowebcache.sourceforge.net/docs/current/services/gmaps.html

All GeoServers ship with GWC, at geoserver/gwc, like
http://suite.opengeo.org/geoserver/gwc

So you should be able to do something like:

var tilelayer = new GTileLayer(null, null, null, {
  tileUrlTemplate:
'http://localhost:8080/geoserver/gwc/service/gmaps?layers=layer-name&zoom={Z}&x={X}&y={Y}&format=image/png',
  isPng:true,
  opacity:0.5 } );

(There's a slight chance that needs to be updated for v3, but I think it
should work ok)

C



On Tue, Nov 2, 2010 at 12:20 PM, David Winslow  wrote:

> I'd recommend searching for information on using WMS with Google Maps,
> searching for GeoServer specifically might be a bit too specific (and get
> drowned out by the Google Earth section of the manual, etc.)
>
> A quick check on google seems to show lots of relevant results.
>
> --
> David Winslow
> OpenGeo - http://opengeo.org/
>
> On Tue, Nov 2, 2010 at 11:14 AM, Rickard Pettersson <
> rickard.petters...@viewserve.com> wrote:
>
>> Hello, i am new to GeoServer and i whant to use GeoServer as WMS server to
>> a Google Maps i developing.
>>
>> But i can not find any good example codes for GeoServer with Google Maps
>> V3, someone that has done this and can give me code example?
>>
>> Kind regards
>> Rickard Pettersson
>>
>>
>> --
>> Nokia and AT&T present the 2010 Calling All Innovators-North America
>> contest
>> Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
>> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in
>> marketing
>> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store
>> http://p.sf.net/sfu/nokia-dev2dev
>> ___
>> Geoserver-users mailing list
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>>
>
>
> --
> Nokia and AT&T present the 2010 Calling All Innovators-North America
> contest
> Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in
> marketing
> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store
> http://p.sf.net/sfu/nokia-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Is it possible to edit SHP files via Geoserver Web interface?

2010-10-25 Thread Chris Holmes
The way to edit a shapefile through the web is using the WFS-Transactional
standard.  This is a web interface to perform changes on the underlying data
format, be it shapefile, postgis, oracle, etc.

GeoServer does not ship with a wfs-t client.  But there are a number of
them, like uDig, and I think qgis may now support wfs-t.  These are both
desktop.  On the web there's openlayers, and we've built some geoext
components on top (which we hope to eventually get in to the geoext
library).  See

http://suite.opengeo.org/geoeditor/

On Mon, Oct 25, 2010 at 6:51 PM, Stefan Stefanov wrote:

> Hi,
> I'm new member in Geoserver community.
> Is it possible to edit SHP files via Geoserver Web interface /attributes or
> add and edit: new point, line, poligon/?
> I mean SHP files that are already published.
> Is it possible to post link for solutions?
> Thanks
>
>
>
> --
> Nokia and AT&T present the 2010 Calling All Innovators-North America
> contest
> Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in
> marketing
> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store
> http://p.sf.net/sfu/nokia-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Nokia and AT&T present the 2010 Calling All Innovators-North America contest
Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
$10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing
Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store 
http://p.sf.net/sfu/nokia-dev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Is it possible to use dynamically generated SLD?

2010-10-25 Thread Chris Holmes
Part of the WMS spec is you can just use the SLD parameter.  Instead of
saying style=StyleName you say SLD=http://link.to/style/name.  See
http://old.nabble.com/Applying-a-remote-SLD-to-a-Openlayer-GetMap-request-td15767436.htmlfor
some discussion of it.  It's specified in 1.0 of the SLD spec, see
http://www.opengeospatial.org/standards/sld

If you're wanting to do more there are a couple things that give you even
more power:

http://docs.geoserver.org/2.0.x/en/user/styling/sld-extensions/substitution.html
and
http://geoserver.org/display/GEOS/GSIP+48+-+Parametric+SQL+views+in+GeoServer



On Tue, Oct 5, 2010 at 7:55 PM, Alexander Chilingaryan
wrote:

> Hello All!
>
> We've just started to use GeoServer 2.1-beta1 in our project.
> We're generating layers from SQL. Geometry parameters are also generated
> with SQL dynamicaly.
> The map should be styled according to those parameters.
>
> The problem is that we unfortunately can't use static SLD on file system
> with all tags PropertyIsBetween etc
> because parameters always has different value range.
>
> But I can't understand how to apply dynamically generated (via script URL)
> SLD to the map.
>
> Can you just give me any direction of thinking please or point to the
> appropriate documentation?
>
> Thank you!
>
> With Best Regards
> Alex Chilingaryan
>
>
>
> --
> Nokia and AT&T present the 2010 Calling All Innovators-North America
> contest
> Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in
> marketing
> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store
> http://p.sf.net/sfu/nokia-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Nokia and AT&T present the 2010 Calling All Innovators-North America contest
Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
$10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing
Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store 
http://p.sf.net/sfu/nokia-dev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] WMS Max Image Size Problem

2010-10-17 Thread Chris Holmes
Looks like out of memory.  Did you try increasing the memory to your servlet
container to see if it works?

See
http://docs.geoserver.org/2.0.x/en/user/production/container.html#optimize-your-jvmfor
the java flag to increase it.  You can pass that in to the start up of
any container.

2010/10/17 Frederick Löbig 

> After incrementally increasing the requested size for the map via direct
> url-access, the maximum requestable or renderable size seems to be around
> 2500x2333 pixels. If that is exeeded, i get the following return:
>
>  ServiceExceptionReport SYSTEM
> "
> http://192.168.2.64:8080/geoserver/schemas/wms/1.1.1/WMS_exception_1_1_1.dtd
> ">
> code="Internal error ">
>  org.vfny.geoserver.wms.WmsException: Rendering process failed
> Rendering process failed
> Exception rendering layer FeatureCollectionMapLayer[ planet_osm_roads,
> VISIBLE, UNSELECTED, style=StyleImpl[ name=osm_roads],
> data=org.vfny.geoserver.global.geoserverfeaturesou...@1d2279c,
> query=Query:
>   feature type: planet_osm_roads
>   filter: [Filter.INCLUDE AND Filter.INCLUDE]
>   [properties:  ALL ]]
> Java heap space
> 
>
> Does this mean, that Geoserver is trying to render the map, but is running
> out of memory while doing so?
>
> --
> Frederick Löbig
> Röderichstraße 59
> 60489 Frankfurt am Main
> Email: f...@frederick-loebig.de
>
> Tel.: +49 (0) 69 / 78 99 52 41
> Mobil: +49 (0) 174 / 70 89 296
>
> www.frederick-loebig.de
>
>
>
>
>
> --
> Download new Adobe(R) Flash(R) Builder(TM) 4
> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly
> Flex(R) Builder(TM)) enable the development of rich applications that run
> across multiple browsers and platforms. Download your free trials today!
> http://p.sf.net/sfu/adobe-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Download new Adobe(R) Flash(R) Builder(TM) 4
The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly 
Flex(R) Builder(TM)) enable the development of rich applications that run
across multiple browsers and platforms. Download your free trials today!
http://p.sf.net/sfu/adobe-dev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] GeoServer + glal + OSX

2010-10-17 Thread Chris Holmes
I'm not sure if we bundle everything you need for dted, but in the OpenGeo
Suite we have a mac installer and I think we bundle gdal and JAI for
GeoServer.  Download at http://opengeo.org/community/suite/download/

On Sun, Oct 17, 2010 at 5:25 AM, Armisael  wrote:

> Thank you for your replay,
> nothing new from my side, unfortunately...
>
> I switched to a redhat server, and there everything's working.
>
> Now I have to import my DTED data, and I have some problems with them...
> But I'll write it in another thread, since it's not related with this...
>
> Again, thanks!
>
> --
> Stefano
>
>
>
> On 14 October 2010 11:43, Daniele Romagnoli
>  wrote:
> > Hi Stefano,
> > please, read below...
> >
> > On Thu, Oct 14, 2010 at 3:05 PM, armisael 
> wrote:
> >>
> >> Hi everybody,
> >> I have installed gdal using macports, and this is the result:
> >>
> >> $ gdalinfo --version
> >> GDAL 1.6.2, released 2009/07/31
> >
> > GeoServer is based on ImageI/O-Ext which requires a specific GDAL
> version.
> > Actually, the stable version uses a patched GDAL 1.4.5 version.
> >
> >
> >>
> >> $ geoserver-start
> >> AVVERTENZA: Native library load failed.java.lang.UnsatisfiedLinkError:
> no
> >> gdaljni in java.library.path
> >> ...
> >>
> >> It seems that some gdal jar is missing, but which one?
> >
> > The gdal jars are properly on place but you are missing the proper native
> > libs version as reported by this message:
> > Native library load failed.java.lang.UnsatisfiedLinkError: no gdaljni in
> > java.library.path
> >
> >> How can I get an updated version? I
> >> tried to compile the imageio-ext from the sources taken by svn, but I
> >> don't
> >> understand where the created file are placed (I found
> >> imageio-ext-gdal-bindings-1.7.2.jar in
> >>
> >>
> ~/.m2/repository/it/geosolutions/imageio-ext/imageio-ext-gdal-bindings/1.7.2/
> >> but again, not my version)
> >
> >
> > It is not necessary to build the imageio-ext source code and jar bindings
> > because they are still created to work against GDAL 1.4.5* (The 1.7.2
> > version you are seeing is for the imageio-ext-trunk whilst GeoServer is
> > actually based on imageio-ext-1.0.x branch).
> >
> > I think the UDIG guys did some work in building the GDAL 1.4.5 native
> libs
> > for Mac in order to support some ImageIO-Ext plugins. I will suggest to
> ask
> > for help on their mailing list. I have CCed the list on this reply.
> >
> > Hope this helps. Let us know.
> > Regards,
> > Daniele
> >
> >
> >>
> >> In the GeoServer status page I have:
> >> Native JAI  true
> >> Native JAI ImageIO  false
> >>
> >> I know that the Native JAI ImageIO for MacOSX is not available yet, but
> I
> >> don't care if I have some native implementation or not, right now I just
> >> want it working... I tried downloading the linux version as suggested in
> >> the
> >> pdf guide, copying it somewhere (I don't remember the directory, at the
> >> moment) but I still have that problem...
> >
> > This is not related to the GDAL loading issue.
> >
> >>
> >> Thank you in advance!
> >> Best,
> >>
> >> Stefano
> >> --
> >> View this message in context:
> >>
> http://old.nabble.com/GeoServer-%2B-glal-%2B-OSX-tp29948382p29948382.html
> >> Sent from the GeoServer - User mailing list archive at Nabble.com.
> >>
> >>
> >>
> >>
> --
> >> Beautiful is writing same markup. Internet Explorer 9 supports
> >> standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
> >> Spend less time writing and  rewriting code and more time creating great
> >> experiences on the web. Be a part of the beta today.
> >> http://p.sf.net/sfu/beautyoftheweb
> >> ___
> >> Geoserver-users mailing list
> >> Geoserver-users@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/geoserver-users
> >>
> >
> >
> >
> > --
> > ---
> > Ing. Daniele Romagnoli
> > Software Engineer
> >
> > GeoSolutions S.A.S.
> > Via Poggio alle Viti 1187
> > 55054  Massarosa (LU)
> > Italy
> >
> > phone: +39 0584962313
> > fax: +39 0584962313
> > mob:   +39 328 0559267
> >
> >
> > http://www.geo-solutions.it
> > http://geo-solutions.blogspot.com/
> >
> > ---
> >
> >
>
>
> --
> Download new Adobe(R) Flash(R) Builder(TM) 4
> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly
> Flex(R) Builder(TM)) enable the development of rich applications that run
> across multiple browsers and platforms. Download your free trials today!
> http://p.sf.net/sfu/adobe-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
Do

Re: [Geoserver-users] Problems visualizing layers in GS 2.1

2010-09-21 Thread Chris Holmes
I don't see anything attached?  Could you perhaps put the images online and
supply links to them?

best regards,

Chris

On Tue, Sep 21, 2010 at 11:19 AM, Barbara Cintoli  wrote:

> Dear we realized that there is a problem in the representation of the
> geometry in Geoserver 2.1 which was not occurring in version 1.7.2 (see
> Antarctica).
> Attached is a picture of the layer visualized in Geoserver 2.1.
> Consider that the layer is the same and has not been altered.
> Could you please advise.
>
> Thank you.
>
> --
> Barbara Cintoli
>
>
> --
> Start uncovering the many advantages of virtual appliances
> and start using them to simplify application deployment and
> accelerate your shift to cloud computing.
> http://p.sf.net/sfu/novell-sfdev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Geoserver print module source

2010-09-16 Thread Chris Holmes
I believe it's at http://www.mapfish.org/svn/mapfish/print/trunk/  Part 
of the mapfish project, would be great to contribute your fix back there.

best regards,

Chris

On 9/16/10 7:44 AM, Balázs Bámer wrote:
> Hi All,
>
> Where can I get the source for print module in Geoserver 2.0.2? I need
> to enhance it to allow OpenLayers.Feature.Vector labels described in
> the attributes field to be displayed. Currently it gets the data from
> the client, displays the feature but not the labels.
>
> thank you in advance.
>
> Best regards: Balázs Bámer
>
> --
> Start uncovering the many advantages of virtual appliances
> and start using them to simplify application deployment and
> accelerate your shift to cloud computing.
> http://p.sf.net/sfu/novell-sfdev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users

--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Palettes from Vector data

2010-09-16 Thread Chris Holmes


On 9/16/10 5:19 AM, Till Kirchner wrote:
>Hello everybody,
>
> I installed GeoServer (DE) 2.0.1 which came with the precompiled
> binaries from the GeoNetwork OpenSource package.
>
> I wanted to try out the use of palettes for vector data, but frankly
> speaking I don't understand the tutorial from the GeoServer User Manual
> (http://docs.geoserver.org/stable/en/user/tutorials/palettedimage/palettedimage.html).
>
> The tutorial says that one can generate a custom palette from a vector
> data source using IrfanView.
> The tutorial starts with loading a png 24 bit into IrfanView.
> But how do I get this png file?
> Is it the rendered map from a WMS?

Yes.  The best thing to do is take screen shots from several zoom levels 
if you have scale dependent SLD rules.  If all the colors are the same 
at all zoom levels then you can just use one zoom level.

> And doesn't the created palette need a geo referencing file as well to
> be used?
>

Nope.  What the palette is doing is picking which are the most important 
256 colors out of the thousands that a png24 renders.  Then it just sets 
those as the ones for GeoServer to use when rendering, which makes 
things much faster.  And generates the smaller images.  So all the 
palette contains is a list of those 256 colors - no geo referencing needed.

> One completly other thing I couldn't find out! What does the (DE) stands
> for?
>

I have no idea...

best regards,

Chris

> Thanks for your help in advance!
>
> Cheers
>
> Till
>

--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Labeling a "static text" ie. not xyz

2010-08-21 Thread Chris Holmes
I'm not sure if you're looking something more complex, but if just want to
hard code in your SLD the Swamp Forest I'm pretty sure you can say


Swamp Forest


On Thu, Aug 12, 2010 at 11:51 AM, anders.soder...@gisassistans.se <
anders.soder...@gisassistans.se> wrote:

>
>  Hello.
> In scales between 1:1 - approx. 1:25 000 I often use
>   
>  xyz
>
> and it works fine. In smaller scales (1:25 000 - 1:500 000) I would like to
> put a "name" for "the type of  polygon", for example swamp forest, using a
> "static text" label i.e. Swamp Forest because the areas are to small to
> show
> any renderingresult or attribute text.
> I would like the "static text" to be written above or on top of the
> polygon.
> Hope somebody has tried this  :blush:
> Regards Anders Stockholm Sweden
> --
> View this message in context:
> http://old.nabble.com/Labeling-a-%22static-text%22-ie.-not-%3Cogc%3APropertyName%3Exyz%3C-ogc%3APropertyName%3E-tp29420204p29420204.html
> Sent from the GeoServer - User mailing list archive at Nabble.com.
>
>
>
> --
> This SF.net email is sponsored by
>
> Make an app they can't live without
> Enter the BlackBerry Developer Challenge
> http://p.sf.net/sfu/RIM-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev ___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] how to make map pretty

2010-08-21 Thread Chris Holmes
It's on the GeoServer side, not OpenLayers.  It's hard to give advice on how
to exactly make it pretty, as it depends on many factors.  But there's a
good page on all the options you have for labeling, at
http://docs.geoserver.org/2.0.x/en/user/styling/sld-reference/labeling.html

On Sat, Aug 21, 2010 at 1:46 AM, sgfu  wrote:

>
> hi  everyone
> Recent I learn about openlayers and geoserver,I use
> geoserver+openlayer+oracle,when i add  multiple layers ,
> i found that there are many Surface features Stacking together like this
> picture
> http://old.nabble.com/file/p29497352/problem%2B.jpg
> it's very Crowd,though i make the Zoom level higher but aslo have the
> problem,
> like this picture many label not show,although many bilding have show
> I don't kown how to make the map friendly and pretty
> i want point and label show together or not show together,and make the map
> more pretty
> where should the work do?  geoserver or openlayer?
> somebody could tell me how to solve the problem?
> --
> View this message in context:
> http://old.nabble.com/how-to-make-map-pretty-tp29497352p29497352.html
> Sent from the GeoServer - User mailing list archive at Nabble.com.
>
>
>
> --
> This SF.net email is sponsored by
>
> Make an app they can't live without
> Enter the BlackBerry Developer Challenge
> http://p.sf.net/sfu/RIM-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev ___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Geo-ext Styler

2010-08-21 Thread Chris Holmes
It's evolved to be part of the OpenGeo Suite.

You can see a demo at
http://suite.opengeo.org/geoserver/www/styler/index.html

You can get the source at http://svn.opengeo.org/suite/trunk/styler/

The community version of the suite can be downloaded at
http://opengeo.org/community/suite/download/

I'll update that wiki page.

Chris

On Mon, Aug 9, 2010 at 4:40 AM, Nicolas Mancone  wrote:

> Hello,
> "current demo" link doesn't work on http://projects.opengeo.org/styler/
>
>
> I would to know the progression of this project.
>
> Nicolas
>
>
>
>
> --
> This SF.net email is sponsored by
>
> Make an app they can't live without
> Enter the BlackBerry Developer Challenge
> http://p.sf.net/sfu/RIM-dev2dev
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev ___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users