>How can I tell for CQL_FILTER the SRID of the geometry? Or is it just that I 
>can't?

If you have a Geometry column that has mixed SRIDs in your database, and you 
have logic in your application that handles these specifically, I would just 
expose the information in a view.

CREATE VIEW my_table_with_srids AS 
        SELECT ST_SRID(geom), * FROM my_table;

You could then just do a regular CQL-filter on the new column.

- Patrick

Application Developer
Wyoming Natural Diversity Database
UW Berry Biodiversity Conservation Center
Department 3381, 1000 E. University Av.
Laramie, WY 82071
P: 307-766-3018

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Geoserver-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Reply via email to