Skip to main content
Question

Spatial Join of Point and Polygon Features

  • January 28, 2015
  • 3 replies
  • 86 views

dilipsebastian
Participant
Forum|alt.badge.img+2
I would like to know if there is a  transformer available in FME that could replicate the spatial join functionality that is available in ESRI.

 

 

Here is what I tried so far. 

 

* Spatially join a point feature class with a polygon feature class based purely on spatial relation "within" . The ouput that I would get by doing this an output feature class that contain the attributes of both the input feature classes based on their spatial relationship. Unfortunately, its taking forever in ArcGIS as the dataset contains 100000 + features . 

 

 

I was hoping there would be a better way to do this through FME .

 

Appreciate any help on this.

 

 

 
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.

3 replies

takashi
Celebrity
  • January 28, 2015
Hi, have you tried the Clipper or the SpatialFilter?

 

Takashi

gio
Contributor
Forum|alt.badge.img+15
  • Contributor
  • January 29, 2015
Wich large amounts of objects as Filter  you may prefer SpatialRelator and then a Tester to test for _related_candidates>0.

 

PointOnArea overlayer is also possible.

dilipsebastian
Participant
Forum|alt.badge.img+2
  • Author
  • Participant
  • February 24, 2015
Thanks for the replies. I tried using SpatialRelator with tester and it worked fine. Appreciate your help .