Re: [Geoserver-users] Time dimension - Exact Match Only option?

2024-02-10 Thread Andrea Aime
Hi Scott,
the nearest match is something that you have to enable explicitly, so it
won't be available if you don't enable it.
The default value is always there, but you can specify a value by hand that
does not match anything.
In recent versions of GeoServer, you can match that with having GeoServer
throw an InvalidDimensionException
when there is no match:
https://docs.geoserver.org/latest/en/user/services/wms/webadmin.html#dimensions-settings

That's for WMS. I don't remember what WCS does, off the top of my head, but
I'd guess it also throws an exception
(I'm hopeful for WCS 2.0, less so for 1.1 and 1.0)

Cheers
Andrea

On Fri, Feb 9, 2024 at 10:01 PM Scott Lewis  wrote:

> Hello again, I had another question regarding some of the work I've been
> doing recently.
>
> I have an ImageMosaic store with various layers, and I've enable the
> "Time" dimension for these layers.  Is it possible to force an "exact
> match" only for queries against these layers (particularly with WCS), and
> not have a default or "nearest match" value?  The reason is that because
> the time dimension information is not part of the resulting output TIF, the
> user would have no way of knowing if the data they requested actually
> matched the time they queried for, so I'd rather it return something to
> tell the user "there is no data for this time" than just return a default
> file.
>
> As always, thanks!
>
> Scott Lewis
> NSIDC
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>


-- 

Regards,

Andrea Aime

==
GeoServer Professional Services from the experts!

Visit http://bit.ly/gs-services-us for more information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions Group
phone: +39 0584 962313

fax: +39 0584 1660272

mob:   +39  339 8844549

https://www.geosolutionsgroup.com/

http://twitter.com/geosolutions_it

---

Con riferimento alla normativa sul trattamento dei dati personali (Reg. UE
2016/679 - Regolamento generale sulla protezione dei dati “GDPR”), si
precisa che ogni circostanza inerente alla presente email (il suo
contenuto, gli eventuali allegati, etc.) è un dato la cui conoscenza è
riservata al/i solo/i destinatario/i indicati dallo scrivente. Se il
messaggio Le è giunto per errore, è tenuta/o a cancellarlo, ogni altra
operazione è illecita. Le sarei comunque grato se potesse darmene notizia.

This email is intended only for the person or entity to which it is
addressed and may contain information that is privileged, confidential or
otherwise protected from disclosure. We remind that - as provided by
European Regulation 2016/679 “GDPR” - copying, dissemination or use of this
e-mail or the information herein by anyone other than the intended
recipient is prohibited. If you have received this email by mistake, please
notify us immediately by telephone or e-mail
___
Geoserver-users mailing list

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

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] trouble with cql_filter

2024-02-10 Thread Jody Garnett
Huh, I wonder if that is even supported …

The FeatureID check is done different by WFS, and does not always integrate
well with functions and so on. There is a configuration option to both use
primary keys to generate FeatureID and also make available as an attribute
for use with functions.

Are you comfortable trying the same request with an XML query? …to see if
it is a problem with the data store, or if it is a problem with CQL
constructing a query …

Reading
https://docs.geoserver.org/main/en/user/filter/ecql_reference.html you may
wish to try:

in('R403139')

Assuming R403139 is a feature identifier.

--
Jody Garnett


On Sat, Feb 10, 2024 at 6:16 AM  wrote:

> Hi,
>
> i'm trying to use a cql_filter on a feature but something is strange.
>
> cql_filter:  "id = 'R403139'" is working fine. i'll get only this feature.
>
> but   "id in('R403139')" does not give any result (without error
> messages).
>
> i need a list, because later on there more features will be dynanical
> selected. e.g. "id in('R403139', 'R1719140')"
>
> What am i doing wrong?
>
> btw: i may add geoserver log file if needed.
> --
> My projects:
>
> OSM Boundaries Map (*) - not completed
> OSM Software Watchlist
> 
> OSM Emergency Map  (*)
> OSM Healthcare Map  (*)
> OSM Postcode Map  (Germany)
>
>
> *) Europe
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
___
Geoserver-users mailing list

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

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] trouble with cql_filter

2024-02-10 Thread wambacher

Hi Peter,

that works well :)

thanks

walter

Am 10.02.24 um 17:11 schrieb Peter Smythe:

Hi Wambacher

You might be running into this issue: 
https://gis.stackexchange.com/questions/373005/geoserver-wms-cql-filter-id-xxx-works-but-id-in-xxx-does-not 
, 
in which case, change your CQL


from: id in ('R403139')
to: "id" in ('R403139')

Peter


--
My projects:

OSM Software Watchlist 


OSM Emergency Map  (*)
OSM Healthcare Map  (*)
OSM Postcode Map  (Germany)

*) Europe___
Geoserver-users mailing list

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

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


Re: [Geoserver-users] trouble with cql_filter

2024-02-10 Thread Peter Smythe
Hi Wambacher

You might be running into this issue:
https://gis.stackexchange.com/questions/373005/geoserver-wms-cql-filter-id-xxx-works-but-id-in-xxx-does-not,
in which case, change your CQL

from: id in ('R403139')
to: "id" in ('R403139')

Peter


On Sat, 10 Feb 2024 at 16:19,  wrote:

> Hi,
>
> i'm trying to use a cql_filter on a feature but something is strange.
>
> cql_filter:  "id = 'R403139'" is working fine. i'll get only this feature.
>
> but   "id in('R403139')" does not give any result (without error
> messages).
>
> i need a list, because later on there more features will be dynanical
> selected. e.g. "id in('R403139', 'R1719140')"
>
> What am i doing wrong?
>
> btw: i may add geoserver log file if needed.
> --
> My projects:
>
> OSM Boundaries Map (*) - not completed
> OSM Software Watchlist
> 
> OSM Emergency Map  (*)
> OSM Healthcare Map  (*)
> OSM Postcode Map  (Germany)
>
>
> *) Europe
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>

___
Geoserver-users mailing list

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

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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


[Geoserver-users] trouble with cql_filter

2024-02-10 Thread wambacher

Hi,

i'm trying to use a cql_filter on a feature but something is strange.

cql_filter:  "id = 'R403139'" is working fine. i'll get only this feature.

but   "id in('R403139')" does not give any result (without error 
messages).


i need a list, because later on there more features will be dynanical 
selected. e.g. "id in('R403139', 'R1719140')"


What am i doing wrong?

btw: i may add geoserver log file if needed.

--
My projects:

OSM Boundaries Map (*) - not completed
OSM Software Watchlist 


OSM Emergency Map  (*)
OSM Healthcare Map  (*)
OSM Postcode Map  (Germany)

*) Europe___
Geoserver-users mailing list

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

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


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