Re: [Geoserver-users] GeoServer Point Stacker: does identify work on non-clustered points?

2014-08-21 Thread cesare gerbino
Hi Mauro!

I've been involved in other issues but now I'm come back on this one.

Searching on the web I've found that probably there is a bug on GeoServer
about this functionality (ref: https://jira.codehaus.org/browse/GEOS-5228.
See also discussion
http://comments.gmane.org/gmane.comp.gis.geoserver.user/39166),  and this
is a point, bad point but a point.

https://jira.codehaus.org/browse/GEOS-5228. See also discussion
http://comments.gmane.org/gmane.comp.gis.geoserver.user/39166.

So I'm started form your suggestion and now I've found a little workaround
that seems working quite fine using a single SLD and avoiding to use a
GroupLayer too.

Here you are my new SLD


  http://www.opengis.net/sld StyledLayerDescriptor.xsd"
   xmlns="http://www.opengis.net/sld";
   xmlns:ogc="http://www.opengis.net/ogc";
   xmlns:xlink="http://www.w3.org/1999/xlink";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>

  Cluster points
  
  
Cluster points
Styling using cluster points server side

  

  
data
  
  
cellSize
30
  
  
outputBBOX

   wms_bbox

  
  
outputWidth

   wms_width

  
  
outputHeight

  wms_height

  

  

  rule1
  Singoli punti
  2000
  

  
circle

  #ff

  
  6

  

  
ruleGT1
Cluster

  
count
1
  

1000

  

  circle
  
#ff
  

22
  


  
count
  
  
Arial
12
bold
  
  

  
0.5
0.8
  

  
  
 2
 
   #ff
   0.9
 
  
  
#FF
1.0
  

  

  

  

I've tried to use it using GeoExplorer and also using QGIS as WMS service
client and it's working.

NOTE: in this manner, I don't know why,  I can also identify point cluster
too :-)

Thanks for the suggestions and I hope this could be useful for others!!

 Bye

 Cesare

Cesare Gerbino

http://cesaregerbino.wordpress.com/
http://www.facebook.com/cesare.gerbino
http://www.facebook.com/pages/Cesare-Gerbino-GIS-Blog/246234455498174?ref=hl
https://twitter.com/CesareGerbino
http://www.linkedin.com/pub/cesare-gerbino/56/494/77b



2014-06-03 9:04 GMT+02:00 Mauro Bartolomeoli <
mauro.bartolome...@geo-solutions.it>:

> Hi Cesare,
> I think the problem is that rendering transformations are not correctly
> supported, currently, in GetFeatureInfo.
> Your SLD is correct, but is referring a property (count) that is in the
> transformed feature (PointStacker) but not in your original one, while the
> GetFeatureInfo code tries to apply the filter to your original feature and
> so it fails.
> Maybe you could try using a layergroup where the pointstacker is used only
> until a certain scale, and then the original layer is used for lower scales.
>
> Mauro Bartolomeoli
>
>
> 2014-05-31 17:57 GMT+02:00 cesare gerbino :
>
>> I'm a newbie to use GeoServer and SLDs so, sorry in advance if my
>> question is stupid.
>>
>> I'm trying to use the Point Stacker rendering transfomation for to
>> cluster my point layer. I've a POSTGIS point layer with more than 514.000
>> points (all the OSM addresses in Italy ), and so I can't to render them
>> with a simple "red point" in my map and I can't render them using a
>> clustering in the browser using Leaflet, OpenLayers, ecc ...
>>
>> The structure of my POSTGIS layer is the following
>> field_1 BigDecimal true 0/1 field_2 BigDecimal true 0/1 field_3
>> BigDecimal true 0/1 field_4 String true 0/1 geom Point true 0/1
>>
>> The field I'm interested on is "field_4"
>>
>> If I try to use a default point symbol to render my layer the
>> visualization is obviously slow but it works right and I can also to
>> identify my point.
>>
>> I've tried to use the SLD that I've found here
>> http://suite.opengeo.org/opengeo-docs/cartography/rt/pointstacker.html
>> for clustering server side and it's

Re: [Geoserver-users] Cache Invalidation (expiration) between GWC and GS

2014-08-21 Thread Rahkonen Jukka (Tike)
Hi,

Not GeoRSS feeds but the following SQL creates truncate commands for GWC in 
json format for all the mapsheeet numbers which are listed as updated in 2014.  
List of updated mapsheets is in table “aerials” and the geometries of the 
mapsheets are in table “a.mapsheet”.

Adjust the SQL for PostGIS and your tables, make a trigger and it should be 
possible to make your database into an active party which creates truncate 
requests immediately after the data has been changed.


select
'
curl -x cache.mmm.fi:800 -v -k -u admin:geoserver -XPOST -H "Content-type: 
application/json" -d 
"{''seedRequest'':{''name'':''GWC_layer'',''bounds'':{''coords'':{ 
''double'':['''

||
MbrMinX(one.geometry)||''','''||
MbrMinY(one.geometry)||''','''||
MbrMaxX(one.geometry)||''','''||
MbrMaxY(one.geometry)||||
']}},''srs'':{''number'':2393},''zoomStart'':8,''zoomStop'':13,''format'':''image\/png'',''type'':''truncate'',''threadCount'':4}}}"
 "http://host.com:8080/geoserver/gwc/rest/seed/GWC_layer.json";

'
from a.mapsheet as "one"
join "aerials" as "two" on ("one"."mapsheeet_id" = "two"."mapsheet_id")
where "two"."updated"=2014


-Jukka Rahkonen-

Jody Garnett wrote:

Part of the integration of GWC clears areas of the cache based on WFS-T 
transactions. You can produce a similar effect in a standalone GWC by giving it 
a georss feed.

Anyone up for turning your PostGIS changes into a GeoRSS feed :)





Jody Garnett

On Thu, Aug 21, 2014 at 6:25 AM, Nachtigall, Jens (init) 
mailto:jens.nachtig...@init.de>> wrote:
Hi,

I have a typical setup like:

PostGIS => GS => GWC => Browser.


Can I have preseeded tiles at GeoWebCache that are invalidated (i.e. get 
expired) on the fly based on caching headers?

That is, is the following possible?:

1. Browser re-requests a certain tile including If-Modified-Since header
2. GWC has a preseeded tile but needs to know if the tile is still valid. So 
GWC passes the request (still with If-Modified-Since) on to GS
3. GS looks up PostGIS to decide if tile is still valid or not. That is, if the 
data for the requested area has changed. Depending on that finding…
4. GS answers “304 Not Modified” or gives GWC the freshly generated tile
5. GWC updates its cache and passes answer along (either “304 Not Modified” or 
new tile)

I’ve read about Caching with Last-Modified or E-Tag headers at 
http://geowebcache.org/docs/current/services/responseheaders.html#last-modified-and-if-modified-since
However, this only handles the communication between browser and GWC. How about 
the “backend communication” between GS and GWC?

Best,
Jens




--
Slashdot TV.
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users

--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Upgrade to geoserver-2.5.2 leaves geoserver 'Unable to get reader' for MrSid files

2014-08-21 Thread Garey Mills
I just attempted to upgrade from 2.4 to 2.5.2. I am running Geoserver in
Tomcat 7 using JDK1.7 on a RedHat system (RHEL6). I am using GDAL (1.9.2),
jp2k and ImageCollection plugins.

Geoserver 2.4 was working well, but the new version is generating a
"org.geotools.data.DataSourceException: Unable to get a reader for the
specified path" stacktrace for every access to a MrSid file.

Any ideas how to proceed?;



-- 
Generate messages about directories that cannot  be
read,  files  that  cannot be opened ... rather than being silent ...
(from `man du`)
--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Cache Invalidation (expiration) between GWC and GS

2014-08-21 Thread Jody Garnett
Part of the integration of GWC clears areas of the cache based on WFS-T
transactions. You can produce a similar effect in a standalone GWC by
giving it a georss feed.

Anyone up for turning your PostGIS changes into a GeoRSS feed :)





Jody Garnett


On Thu, Aug 21, 2014 at 6:25 AM, Nachtigall, Jens (init) <
jens.nachtig...@init.de> wrote:

>  Hi,
>
>
>
> I have a typical setup like:
>
>
>
> PostGIS => GS => GWC => Browser.
>
>
>
>
>
> Can I have preseeded tiles at GeoWebCache that are invalidated (i.e. get
> expired) on the fly based on caching headers?
>
>
>
> That is, is the following possible?:
>
>
>
> 1. Browser re-requests a certain tile including If-Modified-Since header
>
> 2. GWC has a preseeded tile but needs to know if the tile is still valid.
> So GWC passes the request (still with If-Modified-Since) on to GS
>
> 3. GS looks up PostGIS to decide if tile is still valid or not. That is,
> if the data for the requested area has changed. Depending on that finding…
>
> 4. GS answers “304 Not Modified” or gives GWC the freshly generated tile
>
> 5. GWC updates its cache and passes answer along (either “304 Not
> Modified” or new tile)
>
>
>
> I’ve read about Caching with Last-Modified or E-Tag headers at
> http://geowebcache.org/docs/current/services/responseheaders.html#last-modified-and-if-modified-since
>
> However, this only handles the communication between browser and GWC. How
> about the “backend communication” between GS and GWC?
>
>
>
> Best,
>
> Jens
>
>
>
>
>
>
>
>
> --
> Slashdot TV.
> Video for Nerds.  Stuff that matters.
> http://tv.slashdot.org/
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Geoserver can´t Start - Error Creating Bean

2014-08-21 Thread Marcelo Pires


Hi All, 

My Box is a Centos-6.5, java 1.7.0.65, tomcat7, GeoServer 2.5.2. 

I´ve just installed GeoServer and can´t bring it up. (I have other machines 
with previous releases working fine) 

I´ve checked the jar files (gs-rest and gs-rest-config) and the mentioned file 
'storedFileFinder' is there. 


Any suggestions ? I´ ve browsed similar topics but the classpath continues 
enigmatic for me. 

Thanks in advance.

Marcelo Pires


Log Extract --> 

2014-08-21 09:55:24,300 ERROR [context.ContextLoader] - Context initialization 
failed
org.springframework.beans.factory.BeanCreationException: Error creating bean 
with name 'restWrapper' defined in URL 
[jar:file:/var/lib/tomcat/webapps/geoserver/WEB-INF/lib/gs-rest-2.5.2.jar!/applicationContext.xml]:
 Initialization of bean failed; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating bean 
with name 'storeFileFinder' defined in URL 
[jar:file:/var/lib/tomcat/webapps/geoserver/WEB-INF/lib/gs-restconfig-2.5.2.jar!/applicationContext.xml]:
 Instantiation of bean failed; nested exception is 
java.lang.NoClassDefFoundError: Could not initialize class 
org.geoserver.data.util.CoverageStoreUtils--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] GeoServer2.1.0 with Oracle Spatial performance issue

2014-08-21 Thread Jody Garnett
In that case turn on SQL logging, capture the SQL query that is taking so
long, and try it yourself with whatever query analysis tools provided by
Oracle. At the very least you can narrow the issue down to a) connection
time b) query execution c) result set processing/rendering

Tip: You may also want to cut down on the "Privileged/Confidential" footer
when posting to a public email list :)

Jody Garnett


On Thu, Aug 21, 2014 at 12:38 AM, Samyajit Talukdar <
samyajit.taluk...@scottishwater.co.uk> wrote:

> Hi,
> I understand that GeoServer 2.1.0 is quite outdated but there is no
> upgrade plan at the minute by the customer. Any suggestion would help us
> immensely.
>
> Thanks & Regards,
>
> Samyajit Talukdar
>
> 
> From: Jody Garnett [jody.garn...@gmail.com]
> Sent: 20 August 2014 21:41
> To: Samyajit Talukdar
> Cc: geoserver-users@lists.sourceforge.net
> Subject: Re: [Geoserver-users] GeoServer2.1.0 with Oracle Spatial
> performance issue
>
> GeoServer 2.1.0 was released in 2011 and is no longer in development. Can
> you update to a newer version of GeoServer and run your benchmark again?
>
> Jody Garnett
>
>
> On Wed, Aug 20, 2014 at 11:11 AM, Samyajit Talukdar <
> samyajit.taluk...@scottishwater.co.uk samyajit.taluk...@scottishwater.co.uk>> wrote:
> Hi,
> We have a GeoServer2.1.0 with Oracle plug-in deployed on Weblogic as an
> application. We have created layers for the Oracle Spatial data for
> projection on BIng maps. We are facing performance issues with a single
> overlay taking around 35 seconds to render on screen. On analysis of the
> GeoServer log(snippet below), it is noticed that there is a gap between
> 2014-08-20 15:37:03,232 and 2014-08-20 15:37:07,662. Is it the database
> queries running for 4 seconds? We are using JDBC connection pools to
> connect to the Oracle database. The spatial indexes have been analysed
> recently. Any suggestions to tune the database or tips to improving the
> performance will be highly appreciated.
>
> 2014-08-20 15:37:03,216 DEBUG [org.geotools.jdbc] - 1 = POLYGON
> ((-608830.7182036353 354213.0151268281, -608830.7182036353
> 578637.1600929049, -383996.34103620437 578637.1600929049,
> -383996.34103620437 354213.0151268281, -608830.7182036353
> 354213.0151268281))
> 2014-08-20 15:37:03,216 DEBUG [org.geotools.rendering] - Expanding
> rendering area by 2 pixels to consider stroke width
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.rendering] - Querying layer
> http://sw.opengeo.org/iccsa:ICC_SA_LAYER_WOA_COVERAGE with bbox:
> ReferencedEnvelope[-16.89697265625 : -14.04052734375, 58.80260054809615 :
> 60.25095233761055]
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - CREATE CONNECTION
> 2014-08-20 15:37:03,232 TRACE [org.geotools.core] - ENTRY 4
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.filter] - exporting
> PropertyName
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - SELECT
> ID,NAME,LOCATION as LOCATION FROM DW_GIS_STAGING.WOA_COVERAGE WHERE
> SDO_FILTER(LOCATION, ?, 'mask=anyinteract querytype=WINDOW') = 'TRUE'
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.data.oracle.sdo] - Using layer
> SRID: 27700
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - Setting parameter 1 as
> MDSYS.SDO_GEOMETRY(2003,27700,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,3),MDSYS.SDO_ORDINATE_ARRAY(-456108.5008002104,1053235.9528774032,-263904.20541160624,1245178.5366634205))
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - 1 = POLYGON
> ((-456108.5008002104 1053235.9528774032, -456108.5008002104
> 1245178.5366634205, -263904.20541160624 1245178.5366634205,
> -263904.20541160624 1053235.9528774032, -456108.5008002104
> 1053235.9528774032))
> 2014-08-20 15:37:07,662 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION
> 2014-08-20 15:37:07,662 DEBUG [org.geotools.rendering] - Style cache hit
> ratio: NaN , hits 0, requests 0
>
> Thanks & Regards,
>
> Samyajit Talukdar
>
> Privileged/Confidential information may be contained in this Email and any
> files transmitted with it. If you are not the intended recipient you should
> not retain, copy or use this Email for any purpose or disclose all or part
> of its contents to any person. If you have received this Email in error
> please notify the postmaster and sender immediately and delete this Email
> from your system.
>
> Opinions, conclusions and other information in this message that do not
> relate to the official business of Scottish Water ("SW"), Scottish Water
> Solutions Ltd ("SWS") or Scottish Water Solutions 2 Ltd ("SWS2") shall be
> understood as neither given nor endorsed by them. The contents of Emails
> sent and received by SW, SWS and SWS2 are monitored.
>
> WARNING: Although SW, SWS and SWS2 have taken reasonable precautions to
> ensure no viruses or other malicious software are present, SW, SWS and SWS2
> cannot accept responsibility for any loss or damage arising from the use of
> this Email or attachments however caused. The recipient should therefore
> check this Email 

Re: [Geoserver-users] [Release] - SLD's for Ordnance Survey data

2014-08-21 Thread Jody Garnett
That is really cool - would you be in position to take some screen snaps so
we can write this up as a geoserver blog post?

(we had a similar one a couple months back with some great maps from
france- and are always on the lookout for more).


Jody Garnett


On Thu, Aug 21, 2014 at 7:17 AM, Jonathan Moules <
jonathanmou...@warwickshire.gov.uk> wrote:

> Hi All
> Something that may be of interest to some on this list: I've released a
> number of our corporate assets to GitHub.
>
> The SLD's have a few of the more advanced filters in them so may be of
> interest even to those who don't wish to load Ordnance Survey data, but
> instead use them as an implementation reference (Use them with a good
> Desktop search and "find within" for instance).
>
>
> * SLD files for our Ordnance Survey styling, including four different
> MasterMap stylings, and two complete view stacks (1:250 to 1:10,000,000).
> https://github.com/warwickshire/SLDs
>
>
> * FME Workspaces - mostly for loading OS Data, but there's also a fairly
> decent data quality checker in there to.
> https://github.com/warwickshire/FME-Workspaces
>
>
> * General Python scripts, one of which converts a WMS GetCapabilities
> document to a KML file (I've posted this to the list before).
> https://github.com/warwickshire/GIS-Python-scripts
>
>
> Hope someone finds these useful.
>
> Cheers,
> Jonathan
>
> This transmission is intended for the named addressee(s) only and may
> contain confidential, sensitive or personal information and should be
> handled accordingly. Unless you are the named addressee (or authorised to
> receive it for the addressee) you may not copy or use it, or disclose it to
> anyone else. If you have received this transmission in error please notify
> the sender immediately. All email traffic sent to or from us, including
> without limitation all GCSX traffic, may be subject to recording and/or
> monitoring in accordance with relevant legislation.
>
> --
> Slashdot TV.
> Video for Nerds.  Stuff that matters.
> http://tv.slashdot.org/
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] [Release] - SLD's for Ordnance Survey data

2014-08-21 Thread Russell Hore
Of course that should have read “…OS shp files…"

Russ

On 21 Aug 2014, at 17:01, Russell Hore  wrote:

> One thing to watch out for if you are importing the OS sip files into 
> Postgresql is maintain the case of the fields.
> 
> All(?) of the SLD use uppercase for attribute names e.g. CODE, ROADNUM, etc.
> 
> Use the -k switch on shp2pgsql tool.
> 
> Russ (Once bitten, etc.)
> 
> On 21 Aug 2014, at 16:39, McDonaldR  wrote:
> 
>> How’s that for timing!
>>  
>> I’ve just spent the last couple of days getting Geoserver SLDs prepped for 
>> OS MasterMap, VML, VMD, Meridian and Strategi using the OS SLDs as a 
>> starter.  They are on Github too at 
>> https://github.com/mixedbredie/Geoserver-OS-SLDs (more to come).  I’ll be 
>> interested to see how you handle the changeover between layers.
>>  
>> Cheers
>>  
>> Ross
>>  
>> From: Jonathan Moules [mailto:jonathanmou...@warwickshire.gov.uk] 
>> Sent: 21 August 2014 15:18
>> To: geoserver-users@lists.sourceforge.net
>> Subject: [Geoserver-users] [Release] - SLD's for Ordnance Survey data
>>  
>> Hi All
>> Something that may be of interest to some on this list: I've released a 
>> number of our corporate assets to GitHub.
>>  
>> The SLD's have a few of the more advanced filters in them so may be of 
>> interest even to those who don't wish to load Ordnance Survey data, but 
>> instead use them as an implementation reference (Use them with a good 
>> Desktop search and "find within" for instance).
>>  
>>  
>> * SLD files for our Ordnance Survey styling, including four different 
>> MasterMap stylings, and two complete view stacks (1:250 to 1:10,000,000).
>> https://github.com/warwickshire/SLDs
>>  
>>  
>> * FME Workspaces - mostly for loading OS Data, but there's also a fairly 
>> decent data quality checker in there to.
>> https://github.com/warwickshire/FME-Workspaces
>>  
>>  
>> * General Python scripts, one of which converts a WMS GetCapabilities 
>> document to a KML file (I've posted this to the list before).
>> https://github.com/warwickshire/GIS-Python-scripts
>>  
>>  
>> Hope someone finds these useful.
>>  
>> Cheers,
>> Jonathan
>> 
>> This transmission is intended for the named addressee(s) only and may 
>> contain confidential, sensitive or personal information and should be 
>> handled accordingly. Unless you are the named addressee (or authorised to 
>> receive it for the addressee) you may not copy or use it, or disclose it to 
>> anyone else. If you have received this transmission in error please notify 
>> the sender immediately. All email traffic sent to or from us, including 
>> without limitation all GCSX traffic, may be subject to recording and/or 
>> monitoring in accordance with relevant legislation.
>>  
>> This message is strictly confidential. If you have received this in error, 
>> please inform the sender and remove it from your system. If received in 
>> error you may not copy, print, forward or use it or any attachment in any 
>> way. This message is not capable of creating a legal contract or a binding 
>> representation and does not represent the views of Angus Council. Emails may 
>> be monitored for security and network management reasons.  Messages 
>> containing inappropriate content may be intercepted. Angus Council does not 
>> accept any liability for any harm that may be caused to the recipient system 
>> or data on it by this message or any attachment.
>> --
>> Slashdot TV.  
>> Video for Nerds.  Stuff that matters.
>> http://tv.slashdot.org/___
>> Geoserver-users mailing list
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
> 
> --
> Slashdot TV.  
> Video for Nerds.  Stuff that matters.
> http://tv.slashdot.org/___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users

--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] [Release] - SLD's for Ordnance Survey data

2014-08-21 Thread Russell Hore
One thing to watch out for if you are importing the OS sip files into 
Postgresql is maintain the case of the fields.

All(?) of the SLD use uppercase for attribute names e.g. CODE, ROADNUM, etc.

Use the -k switch on shp2pgsql tool.

Russ (Once bitten, etc.)

On 21 Aug 2014, at 16:39, McDonaldR  wrote:

> How’s that for timing!
>  
> I’ve just spent the last couple of days getting Geoserver SLDs prepped for OS 
> MasterMap, VML, VMD, Meridian and Strategi using the OS SLDs as a starter.  
> They are on Github too at https://github.com/mixedbredie/Geoserver-OS-SLDs 
> (more to come).  I’ll be interested to see how you handle the changeover 
> between layers.
>  
> Cheers
>  
> Ross
>  
> From: Jonathan Moules [mailto:jonathanmou...@warwickshire.gov.uk] 
> Sent: 21 August 2014 15:18
> To: geoserver-users@lists.sourceforge.net
> Subject: [Geoserver-users] [Release] - SLD's for Ordnance Survey data
>  
> Hi All
> Something that may be of interest to some on this list: I've released a 
> number of our corporate assets to GitHub.
>  
> The SLD's have a few of the more advanced filters in them so may be of 
> interest even to those who don't wish to load Ordnance Survey data, but 
> instead use them as an implementation reference (Use them with a good Desktop 
> search and "find within" for instance).
>  
>  
> * SLD files for our Ordnance Survey styling, including four different 
> MasterMap stylings, and two complete view stacks (1:250 to 1:10,000,000).
> https://github.com/warwickshire/SLDs
>  
>  
> * FME Workspaces - mostly for loading OS Data, but there's also a fairly 
> decent data quality checker in there to.
> https://github.com/warwickshire/FME-Workspaces
>  
>  
> * General Python scripts, one of which converts a WMS GetCapabilities 
> document to a KML file (I've posted this to the list before).
> https://github.com/warwickshire/GIS-Python-scripts
>  
>  
> Hope someone finds these useful.
>  
> Cheers,
> Jonathan
> 
> This transmission is intended for the named addressee(s) only and may contain 
> confidential, sensitive or personal information and should be handled 
> accordingly. Unless you are the named addressee (or authorised to receive it 
> for the addressee) you may not copy or use it, or disclose it to anyone else. 
> If you have received this transmission in error please notify the sender 
> immediately. All email traffic sent to or from us, including without 
> limitation all GCSX traffic, may be subject to recording and/or monitoring in 
> accordance with relevant legislation.
>  
> This message is strictly confidential. If you have received this in error, 
> please inform the sender and remove it from your system. If received in error 
> you may not copy, print, forward or use it or any attachment in any way. This 
> message is not capable of creating a legal contract or a binding 
> representation and does not represent the views of Angus Council. Emails may 
> be monitored for security and network management reasons.  Messages 
> containing inappropriate content may be intercepted. Angus Council does not 
> accept any liability for any harm that may be caused to the recipient system 
> or data on it by this message or any attachment.
> --
> Slashdot TV.  
> Video for Nerds.  Stuff that matters.
> http://tv.slashdot.org/___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users

--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Upgraded installation of geoserver to 2.5.2. Getting exception trying to see layer previews.

2014-08-21 Thread Garey Mills
Stack trace below:


org.apache.wicket.WicketRuntimeException: Can't instantiate page using
constructor public org.geoserver.web.demo.MapPreviewPage() at
org.apache.wicket.session.DefaultPageFactory.createPage(DefaultPageFactory.java:212)
at
org.apache.wicket.session.DefaultPageFactory.newPage(DefaultPageFactory.java:57)
at
org.apache.wicket.request.target.component.BookmarkablePageRequestTarget.newPage(BookmarkablePageRequestTarget.java:298)
at
org.apache.wicket.request.target.component.BookmarkablePageRequestTarget.getPage(BookmarkablePageRequestTarget.java:320)
at
org.apache.wicket.request.target.component.BookmarkablePageRequestTarget.processEvents(BookmarkablePageRequestTarget.java:234)
at
org.apache.wicket.request.AbstractRequestCycleProcessor.processEvents(AbstractRequestCycleProcessor.java:92)
at
org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1250)
at org.apache.wicket.RequestCycle.step(RequestCycle.java:1329) at
org.apache.wicket.RequestCycle.steps(RequestCycle.java:1436) at
org.apache.wicket.RequestCycle.request(RequestCycle.java:545) at
org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:484)
at
org.apache.wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:138)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:621) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:722) at
org.springframework.web.servlet.mvc.ServletWrappingController.handleRequestInternal(ServletWrappingController.java:159)
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:923)
at
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:852)
at
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:882)
at
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:778)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:621) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:722) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:306)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at
org.geoserver.filters.ThreadLocalsCleanupFilter.doFilter(ThreadLocalsCleanupFilter.java:27)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:244)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:74)
at
org.geoserver.wms.animate.AnimatorFilter.doFilter(AnimatorFilter.java:70)
at
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:70)
at
org.geoserver.filters.SpringDelegatingFilter.doFilter(SpringDelegatingFilter.java:45)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:244)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at
org.geoserver.platform.AdvancedDispatchFilter.doFilter(AdvancedDispatchFilter.java:49)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:244)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:311)
at
org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:68)
at
org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:116)
at
org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83)
at
org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:72)
at
org.geoserver.security.filter.GeoServerCompositeFilter.doFilter(GeoServerCompositeFilter.java:91)
at
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)
at
org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:68)
at
org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:113)
at
org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:72)
at
org.geoserver.security.filter.GeoServerCompositeFilter.doFilter(GeoServerCompositeFilter.java:91)
at
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)
at
org.geoserver.security.filter.GeoServerAnonymousAuthenticationFilter.doFilter(GeoServerAnonymousAuthenticationFilt

Re: [Geoserver-users] [Release] - SLD's for Ordnance Survey data

2014-08-21 Thread McDonaldR
How's that for timing!

I've just spent the last couple of days getting Geoserver SLDs prepped for OS 
MasterMap, VML, VMD, Meridian and Strategi using the OS SLDs as a starter.  
They are on Github too at https://github.com/mixedbredie/Geoserver-OS-SLDs 
(more to come).  I'll be interested to see how you handle the changeover 
between layers.

Cheers

Ross

From: Jonathan Moules [mailto:jonathanmou...@warwickshire.gov.uk]
Sent: 21 August 2014 15:18
To: geoserver-users@lists.sourceforge.net
Subject: [Geoserver-users] [Release] - SLD's for Ordnance Survey data

Hi All
Something that may be of interest to some on this list: I've released a number 
of our corporate assets to GitHub.

The SLD's have a few of the more advanced filters in them so may be of interest 
even to those who don't wish to load Ordnance Survey data, but instead use them 
as an implementation reference (Use them with a good Desktop search and "find 
within" for instance).


* SLD files for our Ordnance Survey styling, including four different MasterMap 
stylings, and two complete view stacks (1:250 to 1:10,000,000).
https://github.com/warwickshire/SLDs


* FME Workspaces - mostly for loading OS Data, but there's also a fairly decent 
data quality checker in there to.
https://github.com/warwickshire/FME-Workspaces


* General Python scripts, one of which converts a WMS GetCapabilities document 
to a KML file (I've posted this to the list before).
https://github.com/warwickshire/GIS-Python-scripts


Hope someone finds these useful.

Cheers,
Jonathan

This transmission is intended for the named addressee(s) only and may contain 
confidential, sensitive or personal information and should be handled 
accordingly. Unless you are the named addressee (or authorised to receive it 
for the addressee) you may not copy or use it, or disclose it to anyone else. 
If you have received this transmission in error please notify the sender 
immediately. All email traffic sent to or from us, including without limitation 
all GCSX traffic, may be subject to recording and/or monitoring in accordance 
with relevant legislation.
 
This message is strictly confidential. If you have received this in error, 
please inform the sender and remove it from your system. If received in error 
you may not copy, print, forward or use it or any attachment in any way. This 
message is not capable of creating a legal contract or a binding representation 
and does not represent the views of Angus Council. Emails may be monitored for 
security and network management reasons.  Messages containing inappropriate 
content may be intercepted. Angus Council does not accept any liability for any 
harm that may be caused to the recipient system or data on it by this message 
or any attachment.
--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] [Release] - SLD's for Ordnance Survey data

2014-08-21 Thread Ismail, Mark
I look forward to taking a look at these

Thanks for sharing

Mark Ismail
Principal IT Officer
Tel: 0151 443 3021
Knowsley Council  *  Westmorland Road  * Huyton * L36 9GL

Save time - use the IT Service Desk Self Serve 
Application

From: Jonathan Moules [mailto:jonathanmou...@warwickshire.gov.uk]
Sent: 21 August 2014 15:24
To: geoserver-users@lists.sourceforge.net
Subject: [Geoserver-users] [Release] - SLD's for Ordnance Survey data

Hi All
Something that may be of interest to some on this list: I've released a number 
of our corporate assets to GitHub.

The SLD's have a few of the more advanced filters in them so may be of interest 
even to those who don't wish to load Ordnance Survey data, but instead use them 
as an implementation reference (Use them with a good Desktop search and "find 
within" for instance).


* SLD files for our Ordnance Survey styling, including four different MasterMap 
stylings, and two complete view stacks (1:250 to 1:10,000,000).
https://github.com/warwickshire/SLDs


* FME Workspaces - mostly for loading OS Data, but there's also a fairly decent 
data quality checker in there to.
https://github.com/warwickshire/FME-Workspaces


* General Python scripts, one of which converts a WMS GetCapabilities document 
to a KML file (I've posted this to the list before).
https://github.com/warwickshire/GIS-Python-scripts


Hope someone finds these useful.

Cheers,
Jonathan

This transmission is intended for the named addressee(s) only and may contain 
confidential, sensitive or personal information and should be handled 
accordingly. Unless you are the named addressee (or authorised to receive it 
for the addressee) you may not copy or use it, or disclose it to anyone else. 
If you have received this transmission in error please notify the sender 
immediately. All email traffic sent to or from us, including without limitation 
all GCSX traffic, may be subject to recording and/or monitoring in accordance 
with relevant legislation.
This e-mail and any attachments are confidential. It may contain privileged 
information and is intended for the named recipient(s) only. It must not be 
distributed without consent. If you are not one of the intended recipients, 
please notify the sender immediately and do not disclose, distribute, or retain 
this email or any part of it and do not take any action based on it.

Unless expressly stated, opinions in this email are those of the individual 
sender, and not of Knowsley MBC. Legally binding obligations can only be 
created for, or be entered into on behalf of, Knowsley MBC by duly authorised 
officers or representatives.

Knowsley MBC excludes any liability whatsoever for any offence caused, any 
direct or consequential loss arising from the use, or reliance on, this e-mail 
or its contents. We believe but do not warrant that this e-mail and any 
attachments are virus free. You must therefore take full responsibility for 
virus checking and no responsibility is accepted for loss or damage arising 
from viruses or changes made to this message after it was sent. Knowsley MBC 
reserves the right to monitor and/or record all e-mail communications through 
its network in accordance with relevant legislation.
--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] repo.opengeo.org deprecated

2014-08-21 Thread Justin Deoliveira
Ok cool, those modules should be up now. They actually should have been
uploaded as part of the release so I am not sure why they weren't there...
i am looking into that.

-Justin


On Thu, Aug 21, 2014 at 7:15 AM, Jeroen Dries  wrote:

> Hi Justin,
>
> I'm using version the latest 2.6-RC1, I did manage to retrieve maven
> artifacts
> for non-community modules. The particular module that I  got an error on
> was
> gs-wms-eo.
>
> thanks,
> Jeroen
>
> On Thursday 21 August 2014 07:12:12 Justin Deoliveira wrote:
> > Hey Jeroen,
> >
> > I didn't transfer all the artifacts from the old repository, and have
> been
> > reseeding the new repository from scratch, so right now only newer
> versions
> > are showing up.
> >
> > Which plugins and which versions in particular are you referring to? Let
> me
> > know and I can upload them into the new repository.
> >
> > Thanks.
> >
> > -Justin
> >
> > On Thu, Aug 21, 2014 at 1:51 AM, Jeroen Dries 
> wrote:
> > >  Hi,
> > >
> > > the jars for the community plugins do not seem to be available at:
> > >
> > > http://repo.boundlessgeo.com/main/org/geoserver/community/
> > >
> > >
> > >
> > > in the old repo they were available at:
> > >
> > > http://repo.opengeo.org/org/geoserver/community/
> > >
> > >
> > >
> > > is this intentional? (Or did I miss another message about this?)
> > >
> > >
> > >
> > > thanks,
> > >
> > > Jeroen
> > >
> > > On Wednesday 13 August 2014 11:20:52 Justin Deoliveira wrote:
> > > > Hi all,
> > > >
> > > >
> > > >
> > > > This is a notice for users who pull snapshots from the
> > > >
> > > > http://repo.opengeo.org maven repository. This repository is being
> > > >
> > > > deprecated and is switching to http://repo.boundlessgeo.com/main.
> > > >
> > > >
> > > >
> > > > The new repository will contain snapshots for versions 2.4.x and up.
> The
> > > >
> > > > old repository will remain active for about a month or so, and then
> will
> > >
> > > be
> > >
> > > > shut off.
> > > >
> > > >
> > > >
> > > > Please feel free to report any issues with the new repository to this
> > >
> > > list.
> > >
> > > > Thanks.
> > > >
> > > >
> > > >
> > > > -Justin
> > >
> > >
> --
> > >  Slashdot TV.
> > > Video for Nerds.  Stuff that matters.
> > > http://tv.slashdot.org/
> > > ___
> > > Geoserver-users mailing list
> > > Geoserver-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
Justin Deoliveira
VP Engineering | Boundless 
jdeol...@boundlessgeo.com
@boundlessgeo 
--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] [Release] - SLD's for Ordnance Survey data

2014-08-21 Thread Jonathan Moules
Hi All
Something that may be of interest to some on this list: I've released a
number of our corporate assets to GitHub.

The SLD's have a few of the more advanced filters in them so may be of
interest even to those who don't wish to load Ordnance Survey data, but
instead use them as an implementation reference (Use them with a good
Desktop search and "find within" for instance).


* SLD files for our Ordnance Survey styling, including four different
MasterMap stylings, and two complete view stacks (1:250 to 1:10,000,000).
https://github.com/warwickshire/SLDs


* FME Workspaces - mostly for loading OS Data, but there's also a fairly
decent data quality checker in there to.
https://github.com/warwickshire/FME-Workspaces


* General Python scripts, one of which converts a WMS GetCapabilities
document to a KML file (I've posted this to the list before).
https://github.com/warwickshire/GIS-Python-scripts


Hope someone finds these useful.

Cheers,
Jonathan

-- 
This transmission is intended for the named addressee(s) only and may 
contain confidential, sensitive or personal information and should be 
handled accordingly. Unless you are the named addressee (or authorised to 
receive it for the addressee) you may not copy or use it, or disclose it to 
anyone else. If you have received this transmission in error please notify 
the sender immediately. All email traffic sent to or from us, including 
without limitation all GCSX traffic, may be subject to recording and/or 
monitoring in accordance with relevant legislation.
--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] set different parameters with cURL

2014-08-21 Thread pablo zader
Hi list

I have a script that loads the geoserver layers using cURL. I need to
assign to each layer resume and title (see attach image) as is done by
graphical interface. It can be done using cURL?

Thanks in advanced

Pablo


​
--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Cache Invalidation (expiration) between GWC and GS

2014-08-21 Thread Stephen V. Mather
Hi Jens,


You could wire PostGIS with a trigger that invalidates portions of the GWC 
cache as changes take place, i.e. with pgsql-http.


https://github.com/pramsey/pgsql-http


Because, who doesn't want a browser in their database? J


Best,

Steve

[http://sig.cmparks.net/cmp-ms-90x122.png] Stephen V. Mather
GIS Manager
(216) 635-3243 (Work)
clevelandmetroparks.com




From: Nachtigall, Jens (init) 
Sent: Thursday, August 21, 2014 9:25 AM
To: geoserver-users@lists.sourceforge.net
Subject: [Geoserver-users] Cache Invalidation (expiration) between GWC and GS

Hi,

I have a typical setup like:

PostGIS => GS => GWC => Browser.


Can I have preseeded tiles at GeoWebCache that are invalidated (i.e. get 
expired) on the fly based on caching headers?

That is, is the following possible?:

1. Browser re-requests a certain tile including If-Modified-Since header
2. GWC has a preseeded tile but needs to know if the tile is still valid. So 
GWC passes the request (still with If-Modified-Since) on to GS
3. GS looks up PostGIS to decide if tile is still valid or not. That is, if the 
data for the requested area has changed. Depending on that finding...
4. GS answers "304 Not Modified" or gives GWC the freshly generated tile
5. GWC updates its cache and passes answer along (either "304 Not Modified" or 
new tile)

I've read about Caching with Last-Modified or E-Tag headers at 
http://geowebcache.org/docs/current/services/responseheaders.html#last-modified-and-if-modified-since
However, this only handles the communication between browser and GWC. How about 
the "backend communication" between GS and GWC?

Best,
Jens



--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Cache Invalidation (expiration) between GWC and GS

2014-08-21 Thread Nachtigall, Jens (init)
Hi,

I have a typical setup like:

PostGIS => GS => GWC => Browser.


Can I have preseeded tiles at GeoWebCache that are invalidated (i.e. get 
expired) on the fly based on caching headers?

That is, is the following possible?:

1. Browser re-requests a certain tile including If-Modified-Since header
2. GWC has a preseeded tile but needs to know if the tile is still valid. So 
GWC passes the request (still with If-Modified-Since) on to GS
3. GS looks up PostGIS to decide if tile is still valid or not. That is, if the 
data for the requested area has changed. Depending on that finding...
4. GS answers "304 Not Modified" or gives GWC the freshly generated tile
5. GWC updates its cache and passes answer along (either "304 Not Modified" or 
new tile)

I've read about Caching with Last-Modified or E-Tag headers at 
http://geowebcache.org/docs/current/services/responseheaders.html#last-modified-and-if-modified-since
However, this only handles the communication between browser and GWC. How about 
the "backend communication" between GS and GWC?

Best,
Jens



--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] repo.opengeo.org deprecated

2014-08-21 Thread Jeroen Dries
Hi Justin,

I'm using version the latest 2.6-RC1, I did manage to retrieve maven artifacts 
for non-community modules. The particular module that I  got an error on was 
gs-wms-eo. 

thanks,
Jeroen

On Thursday 21 August 2014 07:12:12 Justin Deoliveira wrote:
> Hey Jeroen,
> 
> I didn't transfer all the artifacts from the old repository, and have been
> reseeding the new repository from scratch, so right now only newer versions
> are showing up.
> 
> Which plugins and which versions in particular are you referring to? Let me
> know and I can upload them into the new repository.
> 
> Thanks.
> 
> -Justin
> 
> On Thu, Aug 21, 2014 at 1:51 AM, Jeroen Dries  wrote:
> >  Hi,
> > 
> > the jars for the community plugins do not seem to be available at:
> > 
> > http://repo.boundlessgeo.com/main/org/geoserver/community/
> > 
> > 
> > 
> > in the old repo they were available at:
> > 
> > http://repo.opengeo.org/org/geoserver/community/
> > 
> > 
> > 
> > is this intentional? (Or did I miss another message about this?)
> > 
> > 
> > 
> > thanks,
> > 
> > Jeroen
> > 
> > On Wednesday 13 August 2014 11:20:52 Justin Deoliveira wrote:
> > > Hi all,
> > > 
> > > 
> > > 
> > > This is a notice for users who pull snapshots from the
> > > 
> > > http://repo.opengeo.org maven repository. This repository is being
> > > 
> > > deprecated and is switching to http://repo.boundlessgeo.com/main.
> > > 
> > > 
> > > 
> > > The new repository will contain snapshots for versions 2.4.x and up. The
> > > 
> > > old repository will remain active for about a month or so, and then will
> > 
> > be
> > 
> > > shut off.
> > > 
> > > 
> > > 
> > > Please feel free to report any issues with the new repository to this
> > 
> > list.
> > 
> > > Thanks.
> > > 
> > > 
> > > 
> > > -Justin
> > 
> > --
> >  Slashdot TV.
> > Video for Nerds.  Stuff that matters.
> > http://tv.slashdot.org/
> > ___
> > Geoserver-users mailing list
> > Geoserver-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/geoserver-users


--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] repo.opengeo.org deprecated

2014-08-21 Thread Justin Deoliveira
Hey Jeroen,

I didn't transfer all the artifacts from the old repository, and have been
reseeding the new repository from scratch, so right now only newer versions
are showing up.

Which plugins and which versions in particular are you referring to? Let me
know and I can upload them into the new repository.

Thanks.

-Justin





On Thu, Aug 21, 2014 at 1:51 AM, Jeroen Dries  wrote:

>  Hi,
>
>
>
> the jars for the community plugins do not seem to be available at:
>
> http://repo.boundlessgeo.com/main/org/geoserver/community/
>
>
>
> in the old repo they were available at:
>
> http://repo.opengeo.org/org/geoserver/community/
>
>
>
> is this intentional? (Or did I miss another message about this?)
>
>
>
> thanks,
>
> Jeroen
>
>
>
>
>
> On Wednesday 13 August 2014 11:20:52 Justin Deoliveira wrote:
>
> > Hi all,
>
> >
>
> > This is a notice for users who pull snapshots from the
>
> > http://repo.opengeo.org maven repository. This repository is being
>
> > deprecated and is switching to http://repo.boundlessgeo.com/main.
>
> >
>
> > The new repository will contain snapshots for versions 2.4.x and up. The
>
> > old repository will remain active for about a month or so, and then will
> be
>
> > shut off.
>
> >
>
> > Please feel free to report any issues with the new repository to this
> list.
>
> >
>
> > Thanks.
>
> >
>
> > -Justin
>
>
>
>
> --
> Slashdot TV.
> Video for Nerds.  Stuff that matters.
> http://tv.slashdot.org/
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>


-- 
Justin Deoliveira
VP Engineering | Boundless 
jdeol...@boundlessgeo.com
@boundlessgeo 
--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] GeoServer2.1.0 with Oracle Spatial performance issue

2014-08-21 Thread Samyajit Talukdar
 Thanks for the pointer.


Thanks & Regards,
 
Samyajit Talukdar


-Original Message-
From: Rahkonen Jukka (Tike) [mailto:jukka.rahko...@mmmtike.fi] 
Sent: 21 August 2014 09:09
To: Samyajit Talukdar
Cc: 'geoserver-users@lists.sourceforge.net'
Subject: Re: [Geoserver-users] GeoServer2.1.0 with Oracle Spatial performance 
issue

Hi,

It seems that user is making a request to an area of about 225x225 km. This is 
based on the polygon which I took from your log snippet

POLYGON ((-456108.5008002104 1053235.9528774032, 
-456108.5008002104 1245178.5366634205, -263904.20541160624 1245178.5366634205, 
-263904.20541160624 1053235.9528774032, -456108.5008002104 1053235.9528774032))

Funny side observation, something in the copy-paste-htmt-mail program-web 
formatting etc. chain or wherever has changed one coordinate into telephone 
number
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - 1 = POLYGON ((-
> 456108.5008002104 1053235.9528774032, -

If your source data has lots of small features like land parcels or buildings 
then there can be huge number of features inside that BBOX. However, rendering 
for example 10 parcels into 800x800 pixel sized output does not make sense 
because no one can see them as distinct objects. What you can do immediately:
- Set scale limit for the layer and render nothing at this scale
- If you need to draw something at this scale, prepare a simplified dataset 
from most important features and less vertices for small scales.


-Jukka Rahkonen-

Samyajit Talukdar


> 
> Hi,
> I understand that GeoServer 2.1.0 is quite outdated but there is no 
> upgrade plan at the minute by the customer. Any suggestion would help us 
> immensely.
> 
> Thanks & Regards,
> 
> Samyajit Talukdar
> 
> 
> From: Jody Garnett [jody.garn...@gmail.com]
> Sent: 20 August 2014 21:41
> To: Samyajit Talukdar
> Cc: geoserver-users@lists.sourceforge.net
> Subject: Re: [Geoserver-users] GeoServer2.1.0 with Oracle Spatial 
> performance issue
> 
> GeoServer 2.1.0 was released in 2011 and is no longer in development. 
> Can you update to a newer version of GeoServer and run your benchmark again?
> 
> Jody Garnett
> 
> 
> On Wed, Aug 20, 2014 at 11:11 AM, Samyajit Talukdar 
> mailto:Samyajit.Talukdar@scotti
> shwa
> ter.co.uk>> wrote:
> Hi,
> We have a GeoServer2.1.0 with Oracle plug-in deployed on Weblogic as 
> an application. We have created layers for the Oracle Spatial data for 
> projection on BIng maps. We are facing performance issues with a 
> single overlay taking around 35 seconds to render on screen. On 
> analysis of the GeoServer log(snippet below), it is noticed that there 
> is a gap between 2014-08-20 15:37:03,232 and 2014-08-20 15:37:07,662. 
> Is it the database queries running for 4 seconds? We are using JDBC 
> connection pools to connect to the Oracle database. The spatial 
> indexes have been analysed recently. Any suggestions to tune the database or 
> tips to improving the performance will be highly appreciated.
> 
> 2014-08-20 15:37:03,216 DEBUG [org.geotools.jdbc] - 1 = POLYGON ((-
> 608830.7182036353 354213.0151268281, -608830.7182036353 
> 578637.1600929049, -383996.34103620437 578637.1600929049, -
> 383996.34103620437 354213.0151268281, -608830.7182036353
> 354213.0151268281))
> 2014-08-20 15:37:03,216 DEBUG [org.geotools.rendering] - Expanding 
> rendering area by 2 pixels to consider stroke width 2014-08-20 
> 15:37:03,232 DEBUG [org.geotools.rendering] - Querying layer 
> http://sw.opengeo.org/iccsa:ICC_SA_LAYER_WOA_COVERAGE with bbox:
> ReferencedEnvelope[-16.89697265625 : -14.04052734375, 
> 58.80260054809615
> : 60.25095233761055]
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - CREATE CONNECTION 
> 2014-08-20 15:37:03,232 TRACE [org.geotools.core] - ENTRY 4 2014-08-20 
> 15:37:03,232 DEBUG [org.geotools.filter] - exporting PropertyName 
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - SELECT 
> ID,NAME,LOCATION as LOCATION FROM DW_GIS_STAGING.WOA_COVERAGE WHERE 
> SDO_FILTER(LOCATION, ?, 'mask=anyinteract querytype=WINDOW') = 'TRUE'
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.data.oracle.sdo] - Using 
> layer
> SRID: 27700
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - Setting parameter 
> 1 as MDSYS.SDO_GEOMETRY(2003,27700,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,
> 1003,3),MDSYS.SDO_ORDINATE_ARRAY(-
> 456108.5008002104,1053235.9528774032,-
> 263904.20541160624,1245178.5366634205))
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - 1 = POLYGON ((-
> 456108.5008002104 1053235.9528774032, -
> 456108.5008002104 1245178.5366634205, -263904.20541160624 
> 1245178.5366634205, -263904.20541160624 1053235.9528774032, -
> 456108.5008002104 1053235.9528774032)) 2014-08-20 15:37:07,662 DEBUG 
> [org.geotools.jdbc] - CLOSE CONNECTION 2014-08-20 15:37:07,662 DEBUG 
> [org.geotools.rendering] - Style cache hit
> ratio: NaN , hits 0, requests 0
> 
> Thanks & Regards,
> 
> Samyajit Talukdar
> 
> Privileged/Confidential information 

Re: [Geoserver-users] GeoServer2.1.0 with Oracle Spatial performance issue

2014-08-21 Thread Rahkonen Jukka (Tike)
Hi,

It seems that user is making a request to an area of about 225x225 km. This is 
based on the polygon which I took from your log snippet

POLYGON ((-456108.5008002104 1053235.9528774032, 
-456108.5008002104 1245178.5366634205, -263904.20541160624 1245178.5366634205, 
-263904.20541160624 1053235.9528774032, -456108.5008002104 1053235.9528774032))

Funny side observation, something in the copy-paste-htmt-mail program-web 
formatting etc. chain or wherever has changed one coordinate into telephone 
number
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - 1 = POLYGON ((-
> 456108.5008002104 1053235.9528774032, -

If your source data has lots of small features like land parcels or buildings 
then there can be huge number of features inside that BBOX. However, rendering 
for example 10 parcels into 800x800 pixel sized output does not make sense 
because no one can see them as distinct objects. What you can do immediately:
- Set scale limit for the layer and render nothing at this scale
- If you need to draw something at this scale, prepare a simplified dataset 
from most important features and less vertices for small scales.


-Jukka Rahkonen-

Samyajit Talukdar


> 
> Hi,
> I understand that GeoServer 2.1.0 is quite outdated but there is no upgrade 
> plan
> at the minute by the customer. Any suggestion would help us immensely.
> 
> Thanks & Regards,
> 
> Samyajit Talukdar
> 
> 
> From: Jody Garnett [jody.garn...@gmail.com]
> Sent: 20 August 2014 21:41
> To: Samyajit Talukdar
> Cc: geoserver-users@lists.sourceforge.net
> Subject: Re: [Geoserver-users] GeoServer2.1.0 with Oracle Spatial performance
> issue
> 
> GeoServer 2.1.0 was released in 2011 and is no longer in development. Can you
> update to a newer version of GeoServer and run your benchmark again?
> 
> Jody Garnett
> 
> 
> On Wed, Aug 20, 2014 at 11:11 AM, Samyajit Talukdar
> mailto:Samyajit.Talukdar@scottishwa
> ter.co.uk>> wrote:
> Hi,
> We have a GeoServer2.1.0 with Oracle plug-in deployed on Weblogic as an
> application. We have created layers for the Oracle Spatial data for 
> projection on
> BIng maps. We are facing performance issues with a single overlay taking
> around 35 seconds to render on screen. On analysis of the GeoServer 
> log(snippet
> below), it is noticed that there is a gap between 2014-08-20 15:37:03,232 and
> 2014-08-20 15:37:07,662. Is it the database queries running for 4 seconds? We
> are using JDBC connection pools to connect to the Oracle database. The spatial
> indexes have been analysed recently. Any suggestions to tune the database or
> tips to improving the performance will be highly appreciated.
> 
> 2014-08-20 15:37:03,216 DEBUG [org.geotools.jdbc] - 1 = POLYGON ((-
> 608830.7182036353 354213.0151268281, -608830.7182036353
> 578637.1600929049, -383996.34103620437 578637.1600929049, -
> 383996.34103620437 354213.0151268281, -608830.7182036353
> 354213.0151268281))
> 2014-08-20 15:37:03,216 DEBUG [org.geotools.rendering] - Expanding
> rendering area by 2 pixels to consider stroke width
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.rendering] - Querying layer
> http://sw.opengeo.org/iccsa:ICC_SA_LAYER_WOA_COVERAGE with bbox:
> ReferencedEnvelope[-16.89697265625 : -14.04052734375, 58.80260054809615
> : 60.25095233761055]
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - CREATE CONNECTION
> 2014-08-20 15:37:03,232 TRACE [org.geotools.core] - ENTRY 4
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.filter] - exporting PropertyName
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - SELECT
> ID,NAME,LOCATION as LOCATION FROM DW_GIS_STAGING.WOA_COVERAGE
> WHERE SDO_FILTER(LOCATION, ?, 'mask=anyinteract querytype=WINDOW') =
> 'TRUE'
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.data.oracle.sdo] - Using layer
> SRID: 27700
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - Setting parameter 1 as
> MDSYS.SDO_GEOMETRY(2003,27700,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,
> 1003,3),MDSYS.SDO_ORDINATE_ARRAY(-
> 456108.5008002104,1053235.9528774032,-
> 263904.20541160624,1245178.5366634205))
> 2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - 1 = POLYGON ((-
> 456108.5008002104 1053235.9528774032, -
> 456108.5008002104 1245178.5366634205, -263904.20541160624
> 1245178.5366634205, -263904.20541160624 1053235.9528774032, -
> 456108.5008002104 1053235.9528774032))
> 2014-08-20 15:37:07,662 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION
> 2014-08-20 15:37:07,662 DEBUG [org.geotools.rendering] - Style cache hit
> ratio: NaN , hits 0, requests 0
> 
> Thanks & Regards,
> 
> Samyajit Talukdar
> 
> Privileged/Confidential information may be contained in this Email and any 
> files
> transmitted with it. If you are not the intended recipient you should not 
> retain,
> copy or use this Email for any purpose or disclose all or part of its 
> contents to
> any person. If you have received this Email in error please notify the 
> postmaster
> and sender immediately and delete this Email from your 

Re: [Geoserver-users] repo.opengeo.org deprecated

2014-08-21 Thread Jeroen Dries
Hi,

the jars for the community plugins do not seem to be available at:
http://repo.boundlessgeo.com/main/org/geoserver/community/[1] 

in the old repo they were available at:
http://repo.opengeo.org/org/geoserver/community/[2] 

is this intentional? (Or did I miss another message about this?)

thanks,
Jeroen


On Wednesday 13 August 2014 11:20:52 Justin Deoliveira wrote:
> Hi all,
> 
> This is a notice for users who pull snapshots from the
> http://repo.opengeo.org maven repository. This repository is being
> deprecated and is switching to http://repo.boundlessgeo.com/main.
> 
> The new repository will contain snapshots for versions 2.4.x and up. The
> old repository will remain active for about a month or so, and then will be
> shut off.
> 
> Please feel free to report any issues with the new repository to this list.
> 
> Thanks.
> 
> -Justin



[1] http://repo.boundlessgeo.com/main/org/geoserver/community/
[2] http://repo.opengeo.org/org/geoserver/community/
--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] GeoServer2.1.0 with Oracle Spatial performance issue

2014-08-21 Thread Samyajit Talukdar
Hi,
I understand that GeoServer 2.1.0 is quite outdated but there is no upgrade 
plan at the minute by the customer. Any suggestion would help us immensely.

Thanks & Regards,

Samyajit Talukdar


From: Jody Garnett [jody.garn...@gmail.com]
Sent: 20 August 2014 21:41
To: Samyajit Talukdar
Cc: geoserver-users@lists.sourceforge.net
Subject: Re: [Geoserver-users] GeoServer2.1.0 with Oracle Spatial performance 
issue

GeoServer 2.1.0 was released in 2011 and is no longer in development. Can you 
update to a newer version of GeoServer and run your benchmark again?

Jody Garnett


On Wed, Aug 20, 2014 at 11:11 AM, Samyajit Talukdar 
mailto:samyajit.taluk...@scottishwater.co.uk>>
 wrote:
Hi,
We have a GeoServer2.1.0 with Oracle plug-in deployed on Weblogic as an 
application. We have created layers for the Oracle Spatial data for projection 
on BIng maps. We are facing performance issues with a single overlay taking 
around 35 seconds to render on screen. On analysis of the GeoServer log(snippet 
below), it is noticed that there is a gap between 2014-08-20 15:37:03,232 and 
2014-08-20 15:37:07,662. Is it the database queries running for 4 seconds? We 
are using JDBC connection pools to connect to the Oracle database. The spatial 
indexes have been analysed recently. Any suggestions to tune the database or 
tips to improving the performance will be highly appreciated.

2014-08-20 15:37:03,216 DEBUG [org.geotools.jdbc] - 1 = POLYGON 
((-608830.7182036353 354213.0151268281, -608830.7182036353 578637.1600929049, 
-383996.34103620437 578637.1600929049, -383996.34103620437 354213.0151268281, 
-608830.7182036353 354213.0151268281))
2014-08-20 15:37:03,216 DEBUG [org.geotools.rendering] - Expanding rendering 
area by 2 pixels to consider stroke width
2014-08-20 15:37:03,232 DEBUG [org.geotools.rendering] - Querying layer 
http://sw.opengeo.org/iccsa:ICC_SA_LAYER_WOA_COVERAGE with bbox: 
ReferencedEnvelope[-16.89697265625 : -14.04052734375, 58.80260054809615 : 
60.25095233761055]
2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - CREATE CONNECTION
2014-08-20 15:37:03,232 TRACE [org.geotools.core] - ENTRY 4
2014-08-20 15:37:03,232 DEBUG [org.geotools.filter] - exporting PropertyName
2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - SELECT ID,NAME,LOCATION as 
LOCATION FROM DW_GIS_STAGING.WOA_COVERAGE WHERE SDO_FILTER(LOCATION, ?, 
'mask=anyinteract querytype=WINDOW') = 'TRUE'
2014-08-20 15:37:03,232 DEBUG [org.geotools.data.oracle.sdo] - Using layer 
SRID: 27700
2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - Setting parameter 1 as 
MDSYS.SDO_GEOMETRY(2003,27700,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,3),MDSYS.SDO_ORDINATE_ARRAY(-456108.5008002104,1053235.9528774032,-263904.20541160624,1245178.5366634205))
2014-08-20 15:37:03,232 DEBUG [org.geotools.jdbc] - 1 = POLYGON 
((-456108.5008002104 1053235.9528774032, -456108.5008002104 
1245178.5366634205, -263904.20541160624 1245178.5366634205, -263904.20541160624 
1053235.9528774032, -456108.5008002104 1053235.9528774032))
2014-08-20 15:37:07,662 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION
2014-08-20 15:37:07,662 DEBUG [org.geotools.rendering] - Style cache hit ratio: 
NaN , hits 0, requests 0

Thanks & Regards,

Samyajit Talukdar

Privileged/Confidential information may be contained in this Email and any 
files transmitted with it. If you are not the intended recipient you should not 
retain, copy or use this Email for any purpose or disclose all or part of its 
contents to any person. If you have received this Email in error please notify 
the postmaster and sender immediately and delete this Email from your system.

Opinions, conclusions and other information in this message that do not relate 
to the official business of Scottish Water ("SW"), Scottish Water Solutions Ltd 
("SWS") or Scottish Water Solutions 2 Ltd ("SWS2") shall be understood as 
neither given nor endorsed by them. The contents of Emails sent and received by 
SW, SWS and SWS2 are monitored.

WARNING: Although SW, SWS and SWS2 have taken reasonable precautions to ensure 
no viruses or other malicious software are present, SW, SWS and SWS2 cannot 
accept responsibility for any loss or damage arising from the use of this Email 
or attachments however caused. The recipient should therefore check this Email 
and any attachments for the presence of viruses or other malicious software.



Scottish Water
www.scottishwater.co.uk
www.scottishwatersolutions.co.uk
postmas...@scottishwater.co.uk



--
Slashdot TV.
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-use