Re: [Geoserver-users] App-Schema Publish Layer Exception

2013-06-10 Thread Ben Caradoc-Davies
On 10/06/13 19:38, Ryan Moody wrote:
> This is progress, but I noticed that only the ID was being mapped - the town 
> name was not being mapped. Referring back to extracts of my latest mapping 
> file and my GML Application Schema, I have entries for "townName" as shown 
> below. I have confirmed that TOWN is a character column in my PostGIS 
> database, and I have tried various combinations of AttributeMappings that 
> unfortunately haven't worked.
[...]
> = = =
> Mapping File (Attempt 1)
> = = =
> 
>   town:townName
>   TOWN
> 

Almost right. PostGIS identifiers should be lowercase; unless you 
really, really defined your table with 'create table "TOWN" ...' in 
PostGIS (and I have seen this particular insanity), names are stored in 
lowercase. You should be able to make this work by changing it to:
town

See: 
http://docs.geoserver.org/latest/en/user/data/app-schema/mapping-file.html#database-identifiers

> = = =
> Mapping File (Attempt 2)
> = = =
>
> 
>   town:townName
>   "test"
> 

Invalid as you have no  enclosing your literal; a validating XML 
editor should warn you about this. The nonvalidating parser that reads 
the mapping file see you have no  and ignores the extraneous 
content. Furthermore, CQL literal strings are delimited with single (') 
not double (") quotes. You should be able to make this work by changing 
it to:
'test'

(Attempt 3 is a variation on this. I prefer 2 as it has namespace 
prefixes and omits redundant information.)

Kind regards,

-- 
Ben Caradoc-Davies 
Software Engineer
CSIRO Earth Science and Resource Engineering
Australian Resources Research Centre

--
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] How to group values in SLD

2013-06-10 Thread cmaul
Hello Pedro,

not unfortunately not to my knowledge. You need to do it like this:


 

ID
1 


ID
2


ID
3


 
 

Cheers

Christian



-


Dr Christian Maul
Project Manager

Information Services Branch
Department of Sustainability and Environment
Level13, Marland House, 570 Bourke Street
Melbourne 3000

PO Box 500, East Melbourne Vic 3002


Telephone:+61-3-8636 2325
Telefax:  +61-3-8636 2813
--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/How-to-group-values-in-SLD-tp5059193p5059251.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


Re: [Geoserver-users] SQL Server 2008 e Geoserver

2013-06-10 Thread txrpls
I am having the same issue. I am running Windows Server 2008 R2 and SQL
Server 2008 R2. I have installed the files as directed with no luck. I am
not running Tomcat. installed so the first file is installed in 
D:\Program Files (x86)\GeoServer 2.3.1\WEB-INF\lib the others as in step two
below. I have restarted GeoServer, SQl Server and Windows Server and nothing
is showing up. Server is the 64 bit version BTW




--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/SQL-Server-2008-e-Geoserver-tp4664552p5059240.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


[Geoserver-users] JPEG2000 crashed GeoServer

2013-06-10 Thread GeoGEOrge
I am using:
Ubuntu 12.10 32-bit
GeoServer 2.3.2
geoserver-2.3.2-gdal-plugin.zip
gdal-data.zip
gdal192-Ubuntu12-gcc4.6.3-i386.tar.gz

I added to geoserver startup:
export GDAL_DATA
export LD_LIBRARY_PATH

geoserver lists the new store types including:
JP2MrSID - JP2K (MrSID) Coverage Format

when I add one of my .jp2 files as a store, geoserver crashes:
org.apache.wicket.RequestListenerInterface ... 'std::length_error'



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/JPEG2000-crashed-GeoServer-tp5059217.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


Re: [Geoserver-users] Image Mosaic JDBC single band raster losing data values

2013-06-10 Thread mrollans
Hi Christian,

Thanks for the suggestion.  I attempted what you said, but learned that
st_numbands expects a raster type not a bytea type as returned by st_astiff.

Running

select st_numbands(st_astiff(rast)) from test

in pgadmin returns

ERROR:  function st_numbands(bytea) does not exist
LINE 1: select st_numbands(st_astiff(rast)) from test

If you know a way to make this work in some other way, let me know.

As an additional data point, I found something else that I think supports my
hypothesis that the plugin does not support bands of any type other than
8BUI or 16BUI.  I attempted to create a store in the same way in my previous
email, except this time I used an older version of GeoServer and the Image
Mosaic JDBC plugin (2.1.4).  When I attempt to create the store, I
immediately get the following stacktrace in the log.

10 Jun 13:53:15 ERROR [jdbc.custom] - ERROR: The pixel type of band 1 in the
raster is not 8BUI or 16BUI.  The PNG format can only be used with 8BUI and
16BUI pixel types.
org.postgresql.util.PSQLException: ERROR: The pixel type of band 1 in the
raster is not 8BUI or 16BUI.  The PNG format can only be used with 8BUI and
16BUI pixel types.
at
org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2062)
at
org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1795)
at
org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:257)
at
org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:479)
at
org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:367)
at
org.postgresql.jdbc2.AbstractJdbc2Statement.executeQuery(AbstractJdbc2Statement.java:271)
at
org.apache.commons.dbcp.DelegatingPreparedStatement.executeQuery(DelegatingPreparedStatement.java:96)
at
org.apache.commons.dbcp.DelegatingPreparedStatement.executeQuery(DelegatingPreparedStatement.java:96)
at
org.geotools.gce.imagemosaic.jdbc.custom.JDBCAccessPGRaster.startTileDecoders(JDBCAccessPGRaster.java:194)
at
org.geotools.gce.imagemosaic.jdbc.ImageMosaicJDBCReader.loadTiles(ImageMosaicJDBCReader.java:460)
at
org.geotools.gce.imagemosaic.jdbc.ImageMosaicJDBCReader.read(ImageMosaicJDBCReader.java:316)
at
org.geoserver.catalog.CatalogBuilder.buildCoverage(CatalogBuilder.java:906)
at
org.geoserver.catalog.CatalogBuilder.buildCoverage(CatalogBuilder.java:815)
at
org.geoserver.web.data.layer.NewLayerPageProvider.getItemsInternal(NewLayerPageProvider.java:90)
at
org.geoserver.web.data.layer.NewLayerPageProvider.getItems(NewLayerPageProvider.java:56)
at
org.geoserver.web.wicket.GeoServerDataProvider.fullSize(GeoServerDataProvider.java:225)
at
org.geoserver.web.wicket.GeoServerTablePanel$PagerDelegate.updateMatched(GeoServerTablePanel.java:519)
at
org.geoserver.web.wicket.GeoServerTablePanel$PagerDelegate.(GeoServerTablePanel.java:512)
at
org.geoserver.web.wicket.GeoServerTablePanel.(GeoServerTablePanel.java:200)
at
org.geoserver.web.wicket.GeoServerTablePanel.(GeoServerTablePanel.java:91)
at
org.geoserver.web.data.layer.NewLayerPage$1.(NewLayerPage.java:104)
at 
org.geoserver.web.data.layer.NewLayerPage.(NewLayerPage.java:104)
at
org.geoserver.web.data.store.CoverageStoreNewPage.onSave(CoverageStoreNewPage.java:71)
at
org.geoserver.web.data.store.AbstractCoverageStorePage$1.onSubmit(AbstractCoverageStorePage.java:114)
at
org.apache.wicket.ajax.markup.html.form.AjaxSubmitLink$1.onSubmit(AjaxSubmitLink.java:68)
at
org.apache.wicket.ajax.form.AjaxFormSubmitBehavior.onEvent(AjaxFormSubmitBehavior.java:143)
at
org.apache.wicket.ajax.AjaxEventBehavior.respond(AjaxEventBehavior.java:177)
at
org.apache.wicket.ajax.AbstractDefaultAjaxBehavior.onRequest(AbstractDefaultAjaxBehavior.java:300)
at
org.apache.wicket.request.target.component.listener.BehaviorRequestTarget.processEvents(BehaviorRequestTarget.java:119)
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.doPost(WicketServlet.java:160)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at
org.springframework.web.servlet.mvc.ServletWrappingController.handleRequestInternal(ServletWrappingController.java:158)
at
org.springframework

Re: [Geoserver-users] Request/change to a low resolution image when using WMS Animator

2013-06-10 Thread Andrea Aime
On Mon, Jun 10, 2013 at 5:35 PM, Ameet  wrote:

> Using the WMS Animator service, I am giving aparam=layers and a total of 56
> layers in the avalues.
>
> This is returning a single 6.8 MB animated gif and takes time to display in
> browser. This image is 24-bit gif.
>
> How can I request a lower resolution image from this service (I want only
> 16-bit colors, infact 8-bit will also be fine).
>

All GIFs are paletted images, so there is a table linking a integer number
between
0 and 255 to a color, and then all the pixels refer to indexes in that
table.
So, reducing the color size from 24 to 16 bits is just going to save you:

1 (saved byte) * 255 (entries in the table) * 56 (number of images) = 14KB
more or less

So you're not going to get any significant saving by trying to go that way.

I believe the only thing you can control is the image size in pixels, and
the number
of frames in the animation, if you cannot reduce neither of these I believe
you'll
have to just accept the current file size.

Cheers
Andrea

-- 
==
GeoServer training in Milan, 6th & 7th June 2013!  Visit
http://geoserver.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

---
--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Caching single layer having several different styles

2013-06-10 Thread Mörtsell David
Hi,

I'm having trouble caching a layer that has a number of different styles. 
Previously we had a GeoServer 2.1.3 with GeoWebCache 1.3-RC2. Now we have done 
some upgrading and are now using GeoServer version 2.3.2 with GeoWebCache 
1.4-M20130509a.

In the GeoWebCache web interface there used to be a parameter to set which 
style to seed. This parameter is, however, not present anymore.

What should I do to be able to seed the cache for one layer for several 
different styles?

Cheers,
David

--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Request/change to a low resolution image when using WMS Animator

2013-06-10 Thread Ameet
Using the WMS Animator service, I am giving aparam=layers and a total of 56
layers in the avalues.

This is returning a single 6.8 MB animated gif and takes time to display in
browser. This image is 24-bit gif. 

How can I request a lower resolution image from this service (I want only
16-bit colors, infact 8-bit will also be fine). 

I'm not an expert in Geoserver settings and also new to WMS Animator.
Help considering this will be appreciated.

Regards,
Ameet



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/Request-change-to-a-low-resolution-image-when-using-WMS-Animator-tp5059154.html
Sent from the GeoServer - User mailing list archive at Nabble.com.

--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] invalid shapefile archive

2013-06-10 Thread Rudolf
Hi,

Can please someone verfiy if shapefile export on geoserver 2.3.2 is still
working?
On each layer in Layer Preview with output format Shapefile-Export, I get a
403 bytes zip archive which is invalid. (GML, openlayers and JSON output
works)

Also the temporary dbf, prj and shx files in /var/cache/geoserver_home/temp
have size of 0kb

Here is my geotools-developer logging output:

2013-06-10 14:27:56,498 INFO [org.geoserver.wfs] - 
Request: getServiceInfo
2013-06-10 14:27:56,500 INFO [org.geoserver.wfs] - 
Request: getFeature
service = WFS
version = 1.0.0
baseUrl = http://localhost:8080/geoserver/
query[0]:
typeName[0] = {http://www.wien.gv.at/ogdwien}WELTKULTERBEOGD
maxFeatures = 50
outputFormat = SHAPE-ZIP
resultType = results
2013-06-10 14:27:56,504 DEBUG [org.geotools.jdbc] - CREATE CONNECTION
2013-06-10 14:27:56,550 DEBUG [org.geotools.jdbc] - SELECT * FROM (SELECT
OBJECTID,SHAPE as SHAPE,NAME,TYP,BEZEICHNUNG,INFO,SE_ANNO_CAD_DATA FROM
MySchema.MYTable) WHERE ROWNUM <= 50
2013-06-10 14:27:56,565 DEBUG [org.geotools.data.shapefile] - Write lock:
file:/var/cache/adv-geoserver/temp/shpziptemp0.15797235458022774/WELTKULTERBEOGDPolygon.shp
by ShpFiles for deleting all files
2013-06-10 14:27:56,565 DEBUG [org.geotools.data.shapefile] - Write lock:
file:/var/cache/adv-geoserver/temp/shpziptemp0.15797235458022774/WELTKULTERBEOGDPolygon.shp
by ShpFiles for deleting all files
2013-06-10 14:27:56,565 TRACE [org.geotools.data.shapefile] - SHP Channel in
ShapefileWriter has been opened. Number open: 1
2013-06-10 14:27:56,565 TRACE [org.geotools.data.shapefile] - SHX Channel in
ShapefileWriter has been opened. Number open: 1
2013-06-10 14:27:56,566 TRACE [org.geotools.data.shapefile] - SHP Channel in
ShapefileWriter has been closed. Number open: 0
2013-06-10 14:27:56,566 TRACE [org.geotools.data.shapefile] - SHX Channel in
ShapefileWriter has been closed. Number open: 0
2013-06-10 14:27:56,566 DEBUG [org.geotools.data.shapefile] - Field Length
for OBJECTID set to 33 Preserving length, but should be set to Max of 18 for
dbase III specification.
2013-06-10 14:27:56,566 WARN [org.geoserver.wfs.response] - Error while
writing featuretype 'WELTKULTERBEOGD' to shapefile.
java.io.IOException: Unable to write : [B
at
org.geotools.data.shapefile.ShapefileDataStore.createDbaseHeader(ShapefileDataStore.java:1217)
at
org.geotools.data.shapefile.ShapefileDataStore.createSchema(ShapefileDataStore.java:1003)
at
org.geoserver.wfs.response.ShapeZipOutputFormat.buildStore(ShapeZipOutputFormat.java:792)
at
org.geoserver.wfs.response.ShapeZipOutputFormat.getFeatureWriter(ShapeZipOutputFormat.java:703)
at
org.geoserver.wfs.response.ShapeZipOutputFormat.writeCollectionToShapefiles(ShapeZipOutputFormat.java:625)
at
org.geoserver.wfs.response.ShapeZipOutputFormat.write(ShapeZipOutputFormat.java:235)
at
org.geoserver.wfs.response.ShapeZipOutputFormat.write(ShapeZipOutputFormat.java:208)
at
org.geoserver.wfs.WFSGetFeatureOutputFormat.write(WFSGetFeatureOutputFormat.java:190)
at org.geoserver.ows.Dispatcher.response(Dispatcher.java:919)
at 
org.geoserver.ows.Dispatcher.handleRequestInternal(Dispatcher.java:276)
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: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:27)
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.AdvancedD

Re: [Geoserver-users] GeoServer 2.3.2 Direct Connect to ArcSDE 10.0

2013-06-10 Thread PREVOSTO, Laurent
Hi,
If your data is stored using SDO_GEOMETRY, you can bypass the SDE layer and 
have geoserver connect using the Oracle Spatial driver. If it is ST_GEOMETRY or 
SDE_BINARY (ESRI specific), you can't.

Of course, all stuff relying on the ESRI metamodel will be ignored. For example 
if your data is versioned, you won't see up to date data.

Regards,

Laurent

De : Jonathan Moules [mailto:jonathanmou...@warwickshire.gov.uk]
Envoyé : samedi 8 juin 2013 15:20
À : Downie, Sonya (DPIPWE)
Cc : geoserver-users@lists.sourceforge.net
Objet : Re: [Geoserver-users] GeoServer 2.3.2 Direct Connect to ArcSDE 10.0

Hi Sonya,
Just a thought, but why not just connect GeoServer directly to Oracle? We have 
both Oracle and ArcSDE and are simply connecting directly to Oracle. I'm not 
sure if ArcSDE can offer anything other than another step in the chain for 
things to go wrong or a layer to be mis-configured or Less is more. :-)

Jonathan


On 5 June 2013 04:04, Downie, Sonya (DPIPWE) 
mailto:sonya.dow...@dpipwe.tas.gov.au>> wrote:
Hi there,

I am testing GeoServer 2.3.2 on an XP PC and a Windows7 PC and am having 
trouble making a direct connect to ArcSDE.

We have an Oracle 11g database on a Linux server with ArcSDE10.  I have 
downloaded the appropriate ArcSDE extension for my version of GeoServer and 
added the 2 jar files for ArcSDE 10.

I can create a standard connection (3 tier) successfully and publish layers.  
However I cannot create a direct connect.

I followed the documentation 
(http://docs.geoserver.org/stable/en/user/data/database/arcsde.html#configuring-an-arcsde-vector-data-store-with-direct-connect)
 and set my parameters accordingly (I think!)

Server: none
Port: sde:oracle11g:
Instance name: none
User: 
Password: 

But I get the error:
Error creating data store, check the parameters. Error message: Can't create 
connection to none for Session #13[SDE error -66][Error desc=SPECIFIED 
PARAMETER VALUE IS INVALID.][Extended desc= ]

I have searched the mailing lists and the web but still no luck.  Any help in 
which direction I should take will be most appreciated.

Regards,

Sonya





CONFIDENTIALITY NOTICE AND DISCLAIMER
The information in this transmission may be confidential and/or protected by 
legal professional privilege, and is intended only for the person or persons to 
whom it is addressed. If you are not such a person, you are warned that any 
disclosure, copying or dissemination of the information is unauthorised. If you 
have received the transmission in error, please immediately contact this office 
by telephone, fax or email, to inform us of the error and to enable 
arrangements to be made for the destruction of the transmission, or its return 
at our cost. No liability is accepted for any unauthorised use of the 
information contained in this transmission.

--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


This transmission is intended for the named addressee(s) only and may contain 
sensitive or protectively marked material up to RESTRICTED 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.
--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] MrSID store creation not completing

2013-06-10 Thread Gavin Fleming

Hi Daniele

Ubuntu server 10.04 LTS
Geoserver 2.2.4
Tomcat 6

From http://geoserver.org/display/GEOS/GeoServer+2.2.4:

GDAL extension: geoserver-2.2.4-gdal-plugin.zip
--> extracted to /var/lib/tomcat6/webapps/geoserver/WEB-INF/lib/

From 

http://demo.geo-solutions.it/share/github/imageio-ext/releases/1.1.X/1.1.6/:

GDAL native libs: gdal192-Ubuntu11-gcc4.5.2-x86_64.tar.gz
 --> extracted to /usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/amd64/

/usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/amd64/gdalinfo --version
/usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/amd64/gdalinfo: error while 
loading shared libraries: libltidsdk.so: cannot open shared object file: 
No such file or directory


(I've also tried the previous one, gdal1.7.3-linux64-base-gcc43.tar.gz. 
That doesn't work either, but didn't give the libltidsdk.so error.)


ImageIO-Ext version: from imageio-ext-1.1.6-jars.zip
--> extracted to /var/lib/tomcat6/webapps/geoserver/WEB-INF/lib/

gdal-data.zip --> extracted to /usr/local/gdal_data

/etc/environment:
LD_LIBRARY_PATH="/usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/amd64/"
GDAL_DATA="/usr/local/gdal_data"

System GDAL: GDAL 1.10dev (compiled from source to add mrsid and ecw). 
cli gdal utilies work fine with mrsids. e.g. gdal_retile.py built a 
pyramid from mrsids no problem.


thanks in advance

Gavin


On 10/06/2013 10:03, Daniele Romagnoli wrote:

Hi Gavin,
can you please provide us some more details on your system?
Which OS are you using?
Which Set of GDAL extensions, ImageIO-EXT version and GDAL native libs 
are you using?


Please, let us know.
Cheers,
Daniele



==
GeoServer training in Milan, 6th & 7th June 2013! Visit
http://geoserver.geo-solutions.it for more information.
==

Ing. Daniele Romagnoli
Senior Software Engineer

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

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

---


On Sat, Jun 8, 2013 at 2:59 PM, Gavin Fleming > wrote:


Hi

I can see all the GDAL raster types and can complete the form for
creation of a MrSID or ECW store. However, when I Save, the screen
doesn't revert to the Publish screen, yet no errors are returned.
I have
to click Cancel. Nevertheless, the store does appear in the list of
stores, yet I cannot create a layer from it. Even on verbose, there's
nothing obvious in the logs.

Geoserver 2.2.4

Any known issues with this version of Geoserver? I'd appreciate
any tips.

I really need to get this working so I can use the MrSIDs as level
0 of
an Image pyramid layer and geotiffs generated by gdal_retile as the
pyramid layers, thus avoiding having to generate a massive level 0 of
geotiffs.

--
thanks in advance

Gavin



--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net

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




--
regards

Gavin

Gavin Fleming
http://afrispatial.co.za
t: 0218620670
c: 0845965680
f: 0866164820

--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] App-Schema Publish Layer Exception

2013-06-10 Thread Ryan Moody
Hi Ben,

Thanks again - I have checked my workspace.xml and namespace.xml and have 
updated them to use the "town" prefix. I also realised that I needed a 
TownSurvey directory and a corresponding featuretype.xml underneath my data 
store directory in order for it to be picked up in the GetCapabilities document.

I then tried the following WFS request:

http://localhost:8080/geoserver/wfs?request=GetFeature&version=1.1.0&maxFeatures=2&typeName=town:TownSurvey

Which gave me back the following response:


http://www.opengis.net/wfs"; 
xmlns:ogc="http://www.opengis.net/ogc"; xmlns:tiger="http://www.census.gov"; 
xmlns:cite="http://www.opengeospatial.net/cite"; 
xmlns:nurc="http://www.nurc.nato.int"; xmlns:sde="http://geoserver.sf.net"; 
xmlns:topp="http://www.openplans.org/topp"; 
xmlns:town="http://www.envitia.com/schemas/1.0"; 
xmlns:it.geosolutions="http://www.geo-solutions.it"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xmlns:sf="http://www.openplans.org/spearfish"; 
xmlns:ows="http://www.opengis.net/ows"; xmlns:gml="http://www.opengis.net/gml"; 
xmlns:xlink="http://www.w3.org/1999/xlink"; numberOfFeatures="2" 
timeStamp="2013-06-10T11:10:31.990Z" 
xsi:schemaLocation="http://www.envitia.com/schemas/1.0 
http://test3.test2.test1/MyGMLAS.xsd http://www.opengis.net/wfs 
http://schemas.opengis.net/wfs/1.1.0/wfs.xsd";>








This is progress, but I noticed that only the ID was being mapped - the town 
name was not being mapped. Referring back to extracts of my latest mapping file 
and my GML Application Schema, I have entries for "townName" as shown below. I 
have confirmed that TOWN is a character column in my PostGIS database, and I 
have tried various combinations of AttributeMappings that unfortunately haven't 
worked.

If you have a spare moment, would you be able to advise me as to where I'm 
going wrong please? 

Many thanks for your support so far, it's much appreciated :-)

Ryan

= = = 
Mapping File (Attempt 1) 
= = =


town:townName
TOWN


= = = 
Mapping File (Attempt 2) 
= = =


town:townName
"test"


= = = 
Mapping File (Attempt 3) 
= = =


town:TownSurvey/townName
"test"


= = =
GML Application Schema
= = =


http://www.w3.org/2001/XMLSchema"; 
xmlns:gml="http://www.opengis.net/gml/3.2"; 
xmlns:town="http://www.envitia.com/schemas/1.0"; 
targetNamespace="http://www.envitia.com/schemas/1.0"; 
elementFormDefault="qualified">
http://www.opengis.net/gml/3.2"; 
schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd"/>












= = =

-Original Message-
From: Ben Caradoc-Davies [mailto:ben.caradoc-dav...@csiro.au] 
Sent: 10 June 2013 10:29
To: Ryan Moody
Cc: geoserver-users@lists.sourceforge.net; Ian Turton; Neil Kirk
Subject: Re: [Geoserver-users] App-Schema Publish Layer Exception

Ryan,

I think you have defined a namespace called "town_workspace", which is not what 
you want. Please check your workspace folder layout and your namespace.xml (and 
its namespace/prefix) and workspace.xml (and its workspace/name).

Kind regards,
Ben.

On 10/06/13 17:23, Ryan Moody wrote:
> We then tried a GetCapabilities request on the WFS - this returned a 
> valid capabilities document, but the only mention of "town" that it 
> contained was the workspace ( 
> xmlns:town_workspace="http://www.envitia.com/schemas/1.0"; )


--
Ben Caradoc-Davies  Software Engineer CSIRO Earth 
Science and Resource Engineering Australian Resources Research Centre
--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] OGC service log analysis

2013-06-10 Thread Jonathan Moules
Hi Just,
Thanks for these. They all look good (very flashy and web 2.0 :-) ) but
none of them are free services as best I can see. I'll see what I can come
up with and maybe release it to the community if it actually works.

Cheers,
Jonathan



On 9 June 2013 12:57, Just van den Broecke  wrote:

> And, if you want to monitor your Tomcat's health I recommend
> JavaMonitor: http://java-monitor.com, using it myself. best, Just
>
> On 08-06-13 13:26, Jonathan Moules wrote:
> > Hi List,
> >  More of a general question, is there any software or script that
> > does log analysis on OGC service request URL's.
> >  So it would parse the logs and give a breakdown of what layers have
> > been accessed most, who by, what services, what requests, etc.
> >
> >  I can roll my own, but don't want to re-invent the wheel.
> >  Cheers,
> >  Jonathan
> > This transmission is intended for the named addressee(s) only and may
> > contain sensitive or protectively marked material up to RESTRICTED 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.
> >
> >
> >
> --
> > How ServiceNow helps IT people transform IT departments:
> > 1. A cloud service to automate IT design, transition and operations
> > 2. Dashboards that offer high-level views of enterprise services
> > 3. A single system of record for all IT processes
> > http://p.sf.net/sfu/servicenow-d2d-j
> >
> >
> >
> > ___
> > Geoserver-users mailing list
> > Geoserver-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
> >
>
>
>
>
> --
> How ServiceNow helps IT people transform IT departments:
> 1. A cloud service to automate IT design, transition and operations
> 2. Dashboards that offer high-level views of enterprise services
> 3. A single system of record for all IT processes
> http://p.sf.net/sfu/servicenow-d2d-j
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>

-- 
This transmission is intended for the named addressee(s) only and may 
contain sensitive or protectively marked material up to RESTRICTED 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.
--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Publishing a tiled GeoTIFF as a WMS

2013-06-10 Thread Jacob Overgaard Madsen
Thanks for your response, Edward. I just found out, that I can merge the
files to a single GeoTIFF using Quantum GIS' support for gdal-tools'
"merge" (Raster->Miscellanous->Merge in QGIS). Now my question is - what
performs best?

- A single large GeoTIFF file without ImageMosaic.
- Multiple files published with ImageMosaic.

Anyone can give me some general guidance on this? What approach is best?

Thanks in advance
Jacob


2013/6/10 Edward Mac Gillavry 

> That's where the ImageMosaic plugin comes in:
>
>
> http://docs.geoserver.org/latest/en/user/tutorials/image_mosaic_plugin/imagemosaic.html
>
> HTH
>
> Edward
>
>
> --
> Date: Mon, 10 Jun 2013 11:08:43 +0200
> From: u2ja...@gmail.com
> To: geoserver-users@lists.sourceforge.net
> Subject: [Geoserver-users] Publishing a tiled GeoTIFF as a WMS
>
>
> Hi list
>
> Can someone please tell me, if it's possible to publish 4 tiled GeoTIFF
> files as a single WMS service? When creating a data store for the GeoTIFF,
> I usually put the single file name in the "Connection Parameters->URL", and
> then I can access this single file through WMS.
>
> Earlier, my GeoTIFF provider supplied me with a single GeoTIFF file. But
> now, my provider (Pix4D) has begun giving me GeoTIFF files for the area as
> 4 files with the names "xxx_orthomosaic_geo_rgb_0_0.tif",
> "xxx_orthomosaic_geo_rgb_0_1.tif", "xxx_orthomosaic_geo_rgb_1_0.tif" and
> "xxx_orthomosaic_geo_rgb_1_1.tif". How do I configure these 4 files as a
> single data store for publishing through WMS? Apparently, Pix4D can no
> longer be configured to give me a single GeoTIFF. Should I combine the
> files in Quantum GIS, or what is the right procedure?
>
> I'm on 2.3.1.
>
> Thanks in advance,
> Jacob Madsen
>
> --
> How ServiceNow helps IT people transform IT departments: 1. A cloud service
> to automate IT design, transition and operations 2. Dashboards that offer
> high-level views of enterprise services 3. A single system of record for
> all IT processes http://p.sf.net/sfu/servicenow-d2d-j
> ___ Geoserver-users mailing
> list Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] App-Schema Publish Layer Exception

2013-06-10 Thread Ben Caradoc-Davies
Ryan,

I think you have defined a namespace called "town_workspace", which is 
not what you want. Please check your workspace folder layout and your 
namespace.xml (and its namespace/prefix) and workspace.xml (and its 
workspace/name).

Kind regards,
Ben.

On 10/06/13 17:23, Ryan Moody wrote:
> We then tried a GetCapabilities request on the WFS - this returned a valid 
> capabilities document, but the only mention of "town" that it contained was 
> the workspace ( xmlns:town_workspace="http://www.envitia.com/schemas/1.0"; )


-- 
Ben Caradoc-Davies 
Software Engineer
CSIRO Earth Science and Resource Engineering
Australian Resources Research Centre

--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] App-Schema Publish Layer Exception

2013-06-10 Thread Ryan Moody
Hi Ben,

Thanks for your assistance - I have removed the app-schema layer from the web 
interface and changed the DataStore ID in my mapping file accordingly. I then 
restarted GeoServer and then attempted the following WFS requests:

1) http://localhost:8080/geoserver/wfs?request=GetFeature&typeName=TownSurvey
2) 
http://localhost:8080/geoserver/wfs?request=GetFeature&typeName=TownSurveyType
3) 
http://localhost:8080/geoserver/wfs?request=GetFeature&typeName=town:TownSurvey
4) http://localhost:8080/geoserver/wfs?request=GetFeature&typeName= 
town:TownSurveyType

Unfortunately 1) and 2) came back with the error "Could not find type name 
TownSurvey / TownSurveyType" and 3) and 4) returned the error "Unknown 
namespace [town]"

We then tried a GetCapabilities request on the WFS - this returned a valid 
capabilities document, but the only mention of "town" that it contained was the 
workspace ( xmlns:town_workspace="http://www.envitia.com/schemas/1.0"; )

This led me to believe that something is still misconfigured in my 
datastore.xml, mapping file or GML Application Schema.

Would you be able to take a quick look at the latest versions of my 
configuration files and let me know if you can spot any spanner in the works 
please?

Best Regards,

Ryan

= = =
Datastore.xml
= = =


  DataStoreInfoImpl-170c2841:13f1f0e2686:-7ffe
  town_data_source
  true
  
WorkspaceInfoImpl-170c2841:13f1f0e2686:-8000
  
  
app-schema
file:workspaces/town_workspace/town_data_source/mapping_file.xml
http://www.envitia.com/schemas/1.0
  
  <__default>false


= = =
mapping_file.xml
= = =


http://www.geotools.org/app-schema";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xsi:schemaLocation="http://www.geotools.org/app-schema 
AppSchemaDataAccess.xsd">


gml
http://www.opengis.net/gml/3.2


town
http://www.envitia.com/schemas/1.0




MyDataStore


dbtype
postgis


host
localhost


port
MyPort


database
MyDatabase


user
MyUser


passwd
MyPassword







http://test3.test2.test1/MyGMLAS.xsd




MyDataStore
townssurvey_poly
town:TownSurvey



town:TownSurvey

GID
 


town:townName

TOWN


   



= = =
MyGMLAS.xsd
= = =


http://www.w3.org/2001/XMLSchema"; 
xmlns:gml="http://www.opengis.net/gml/3.2"; 
xmlns:town="http://www.envitia.com/schemas/1.0"; 
targetNamespace="http://www.envitia.com/schemas/1.0"; 
elementFormDefault="qualified">
http://www.opengis.net/gml/3.2"; 
schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd"/>












= = =

-Original Message-
From: Ben Caradoc-Davies [mailto:ben.caradoc-dav...@csiro.au] 
Sent: 10 June 2013 03:16
To: Ryan Moody
Cc: geoserver-users@lists.sourceforge.net; Ian Turton; Neil Kirk
Subject: Re: [Geoserver-users] App-Schema Publish Layer Exception

Ryan,

the web administration interface does not support the app-schema plugin. 
Attempting to use the web administration interface to publish app-schema layers 
will generate confusing and unhelpful errors. Note that the app-schema plugin 
*does* honour WFS service setting configured t

Re: [Geoserver-users] app-schema and gazetteer

2013-06-10 Thread Ben Caradoc-Davies
Gianni,

these are not app-schema problems: they are problems caused by GeoTools 
encoder peculiarities and the various attempts the GeoServer WFS service 
tries to support your non-standards-compliant requests. You have 
namespace problems.

I do not think that you have defined a namespace/workspace for iso19112. 
This may cause encoder to fail (see this six-year-old issue):
http://jira.codehaus.org/browse/GEOT-1276

This is the workaround for secondary namespaces:
http://docs.geoserver.org/latest/en/user/data/app-schema/secondary-namespaces.html

Note also that your GET request does not specify the namespace prefix of 
"name". GeoServer will be permissive and guess what you mean by 
iso19112:name if you have a namespace/workspace of this name.

The POST request handling is slightly more forgiving. You also do not 
define the meaning of the iso19112 prefix in this document. It should 
contain an xmlns:iso19112="..." in the root element.

More inline (only the parts I think I can help with) ...

On 10/06/13 16:11, Gianni Barrotta wrote:
> Can you confirm that a feature published with app-schema can be queried
> with a url, passing in get all params?

Yes.

> _*Problems with join*_
> With app-schema.joining = true in the app-schema.properties file (that
> is the default) nothing works and the GetFeature ends in an infinite loop.
> With app-schema.joining = true the GetFeatures works fine (I wonder if
> this setting is needed/useful).

I do not understand this statement. Both cases seem the same. Because it 
is the default, "app-schema.joining = true" should have no effect.

> Setting the schema uri in the mapping file turns in a response that show
> just a link to the target xsd; can we nest the schema inside the
> DescribeFeatureTypes response, instead of show a link?

The behaviour you request becomes problematic when DescribeFeatureType 
has multiple typeNames from different namespaces. What is wrong with 
import/include? Both approaches will require you to resolve further 
references in the schema document.

WFS 2.1 will allow this to be an HTTP 3xx redirect to the schema.

> _*Problmes with spatial index
> If we define a spatial index in the table used by the mapping file,
> everything become slow and the GetFeatures does not work.

This I cannot explain.

Kind regards,

-- 
Ben Caradoc-Davies 
Software Engineer
CSIRO Earth Science and Resource Engineering
Australian Resources Research Centre

--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Publishing a tiled GeoTIFF as a WMS

2013-06-10 Thread Jacob Overgaard Madsen
Hi list

Can someone please tell me, if it's possible to publish 4 tiled GeoTIFF
files as a single WMS service? When creating a data store for the GeoTIFF,
I usually put the single file name in the "Connection Parameters->URL", and
then I can access this single file through WMS.

Earlier, my GeoTIFF provider supplied me with a single GeoTIFF file. But
now, my provider (Pix4D) has begun giving me GeoTIFF files for the area as
4 files with the names "xxx_orthomosaic_geo_rgb_0_0.tif",
"xxx_orthomosaic_geo_rgb_0_1.tif", "xxx_orthomosaic_geo_rgb_1_0.tif" and
"xxx_orthomosaic_geo_rgb_1_1.tif". How do I configure these 4 files as a
single data store for publishing through WMS? Apparently, Pix4D can no
longer be configured to give me a single GeoTIFF. Should I combine the
files in Quantum GIS, or what is the right procedure?

I'm on 2.3.1.

Thanks in advance,
Jacob Madsen
--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] app-schema and gazetteer

2013-06-10 Thread Gianni Barrotta
Hi Rini,
thanks a lot for your reply.

We are using geoserver 2.3.2; my mapping files and the geoserver log are
avaiable here:

http://coreweb1.coremed.it/download/app-schema.zip

http://coreweb1.coremed.it/download/logs.zip

The geoserver we are using is avaiable here:

http://coreweb2.corenet.it/geoserver-dbtr/

Eventually we managed to perform simple queries (those not using joins) but
we are still experiencing problems.

*Problems with "parent" and "locationType" as xlink:href*

We defined the parent and locationType fields of the iso19112 standard as
xlink:href, according to the standard; the getFeature response shows
correctly the url of a getFeatures request that apparently is fine; but if
you try to open this url in a browser, you get a java.io.IOException:
javax.xml.transform.

Below you have two request in get that are not workning, taken from the
response of the getFeatures; both requests are defined with
 in the mapping file.

http://coreweb1.coremed.it/geoserver-dbtr/wfs?request=GetFeature&typeName=iso19112:SI_LocationType&FILTER=%3CFilter%20xmlns=%22http://www.opengis.net/ogc%22%3E%3CPropertyIsEqualTo%3E%3CPropertyName%3Ename%3C/PropertyName%3E%3CLiteral%3ETPS%3C/Literal%3E%3C/PropertyIsEqualTo%3E%3C/Filter%3E

http://coreweb1.coremed.it/geoserver-dbtr/wfs?request=GetFeature&typeName=iso19112:SI_LocationInstance&FILTER=%3CFilterxmlns=";
http://www.opengis.net/ogc"%3E%3CPropertyIsEqualTo%3E%3CPropertyName%3Eistat%3C/PropertyName%3E%3CLiteral%3E036019%3C/Literal%3E%3C/PropertyIsEqualTo%3E%3C/Filter%3E";
xlink:role="in_county

The same request works fine if you send the filter in post, inside a
 request; so I think that should be a problem using app-schema
and getFeatures in Get insted of Post.

You can try the GetFeatures with this xml request:

http://www.openplans.org/topp"; xmlns:wfs="http://www.opengis.net/wfs";
xmlns:ogc="http://www.opengis.net/ogc"; xmlns:gml="http://www.opengis.net/gml";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="
http://www.opengis.net/wfs
http://schemas.opengis.net/wfs/1.1.0/wfs.xsd";>
  

  

alternativeGeographicIdentifiers/alternativeGeographicIdentifier/name
VIA AMEDEO MODIGLIANI
  

  


Can you confirm that a feature published with app-schema can be queried
with a url, passing in get all params?


*Problems with join*

With app-schema.joining = true in the app-schema.properties file (that is
the default) nothing works and the GetFeature ends in an infinite loop.

With app-schema.joining = true the GetFeatures works fine (I wonder if this
setting is needed/useful).

We need to query a LocationInstance with a join between the
"alternativeGeographicIdentifiers/alternativeGeographicIdentifier/name" and
the parent coming from the xlink:href field; do you know how to write down
a query to accomplish this request?

*Problems with describeFeatureType
*
*
*
Setting the schema uri in the mapping file turns in a response that show
just a link to the target xsd; can we nest the schema inside the
DescribeFeatureTypes response, instead of show a link?



http://coreweb1.coremed.it/download/SI_Gazetteer.xsd




This is the request:
http://coreweb1.coremed.it/geoserver-dbtr/wfs?request=DescribeFeatureType&version=1.1.0&typeName=iso19112:SI_Gazetteer

and the response:

http://www.isotc211.org/19112";>http://coreweb1.coremed.it/download/SI_Gazetteer.xsd"/>
*
*
*Problmes with spatial index

*
If we define a spatial index in the table used by the mapping file,
everything become slow and the GetFeatures does not work.
*
*



On Fri, May 31, 2013 at 6:11 AM, Rini Angreani wrote:

> Hi Gianni,
>
> There's been a lot of bug fixes recently to support joining with feature
> chaining. Also, make sure you're not using functions (including getID()) in
> your idExpression inside your mapping files, but point directly to the
> database id columns instead.
>
> I'm wondering which version you're using?  If you are already using the
> latest, then this is possibly a new bug. Can you please point me to your
> mapping files and the problematic query?
>
> Thanks
> Rini
>
>
>
> --
> View this message in context:
> http://osgeo-org.1560.x6.nabble.com/app-schema-and-gazetteer-tp5053723p5057083.html
> Sent from the GeoServer - User mailing list archive at Nabble.com.
>
>
> --
> Get 100% visibility into Java/.NET code with AppDynamics Lite
> It's a free troubleshooting tool designed for production
> Get down to code-level detail for bottlenecks, with <2% overhead.
> Download for free and get started troubleshooting in minutes.
> http://p.sf.net/sfu/appdyn_d2d_ap2
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
How ServiceNow help

Re: [Geoserver-users] MrSID store creation not completing

2013-06-10 Thread Daniele Romagnoli
Hi Gavin,
can you please provide us some more details on your system?
Which OS are you using?
Which Set of GDAL extensions, ImageIO-EXT version and GDAL native libs are
you using?

Please, let us know.
Cheers,
Daniele



==
GeoServer training in Milan, 6th & 7th June 2013! Visit
http://geoserver.geo-solutions.it for more information.
==

Ing. Daniele Romagnoli
Senior Software Engineer

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

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

---


On Sat, Jun 8, 2013 at 2:59 PM, Gavin Fleming wrote:

> Hi
>
> I can see all the GDAL raster types and can complete the form for
> creation of a MrSID or ECW store. However, when I Save, the screen
> doesn't revert to the Publish screen, yet no errors are returned. I have
> to click Cancel. Nevertheless, the store does appear in the list of
> stores, yet I cannot create a layer from it. Even on verbose, there's
> nothing obvious in the logs.
>
> Geoserver 2.2.4
>
> Any known issues with this version of Geoserver? I'd appreciate any tips.
>
> I really need to get this working so I can use the MrSIDs as level 0 of
> an Image pyramid layer and geotiffs generated by gdal_retile as the
> pyramid layers, thus avoiding having to generate a massive level 0 of
> geotiffs.
>
> --
> thanks in advance
>
> Gavin
>
>
>
> --
> How ServiceNow helps IT people transform IT departments:
> 1. A cloud service to automate IT design, transition and operations
> 2. Dashboards that offer high-level views of enterprise services
> 3. A single system of record for all IT processes
> http://p.sf.net/sfu/servicenow-d2d-j
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Chaining Render Transformations: InvalidParameterException

2013-06-10 Thread Andrea Aime
2013/6/6 

>  This message says it cannot convert a GridCoverage2D into a
> GridCoverage2D – strange?
>
> ** **
>
> Any idea what could help here?
>
> ** **
>
> I’m running Geoserver 2.2.0 with the corresponding WPS module in a Java6
> environment.
>

Strange indeed,
but I also remember that transformation chaining was problematic in 2.2.0.
It seems that in 2.3.x there are still issues, but in this report the user
states he can chain
Barnes surfaces with countour with no issues (while chaining Barns and
point extraction apparently
does not):
http://jira.codehaus.org/browse/GEOS-5741

Cheers
Andrea

-- 
==
GeoServer training in Milan, 6th & 7th June 2013!  Visit
http://geoserver.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

---
--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users