Skip to main content
Archived

CoordinateSystemSetter to support OGC urn values

Related products:Transformers
  • September 13, 2017
  • 1 reply
  • 10 views

bruceharold
Supporter
Forum|alt.badge.img+19

To accept values like: urn:ogc:def:crs:EPSG::4167

The context here is I'm building an ArcGIS ModelBuilder tool that sends spatial extents to a Spatial ETL tool from the active map, but in arbitrary spatial references, so the extent needs to be projected to match a WFS feature type DefaultCRS.

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

1 reply

helmoet
Forum|alt.badge.img+8
  • August 4, 2020
Note from Safe: We had to turn off the formatting in this comment due to the community migration.

Yeah, facing the same trouble reading from WMTS. Solution: Use AttributeCreator to create an attribute geom, with content

<gml:Polygon xmlns:gml="http://www.opengis.net/gml" srsName="@Value(SupportedCRS)"><gml:outerBoundaryIs><gml:LinearRing><gml:coordinates>@Value(TopLeftX),@Value(bottom) @Value(TopLeftX),@Value(TopLeftY) @Value(right),@Value(TopLeftY) @Value(right),@Value(bottom) @Value(TopLeftX),@Value(bottom)</gml:coordinates></gml:LinearRing></gml:outerBoundaryIs></gml:Polygon>

Then use a GeometryReplacer in GML mode to convert the geom attribute into real geometry with coordinate system.