> I can’t get the geo:srid() to work. I have tried many combinations of @srsName values. Can anyone provide examples?
Try e.g. this:
import module namespace geo='http://expath.org/ns/geo';
declare namespace gml='http://www.opengis.net/gml ';
geo:srid(
<gml:Polygon>
<outerboundaryIs>
<gml:LinearRing>
<coordinates>-150,50 -150,60 -125,60 -125,50 -150,50</coordinates>
</gml:LinearRing>
</outerboundaryIs>
</gml:Polygon>
)