Skip to main content
Solved

How to write all points to a multipoint feature class, even if there is a single point

  • September 6, 2017
  • 5 replies
  • 204 views

Forum|alt.badge.img

I have a multipoint feature class in an Enterprise Geodatabase that I need to copy over to a File Geodatabase. The problem is that not every feature in the feature class has multiple points. Only ~2% of the features have multiple points, but it is critical I retain the option to have multiple points. The problem is that the FME File Geodatabase writer will only copy over just those features that are represented by multiple points (selecting multipoint as the geometry) or just those features that are represented by a single point (selecting point as the geometry). How do I get FME to accept all of the points as potential multipoints and write everything in the File geodatabase?

Best answer by ebygomm

Turn your points into multipoints, see here

https://knowledge.safe.com/questions/47959/convert-one-point-into-multipoint.html

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.

5 replies

ebygomm
Influencer
Forum|alt.badge.img+46
  • Influencer
  • Best Answer
  • September 6, 2017

Forum|alt.badge.img
  • Author
  • September 6, 2017

Thanks @egomm. I have spent several hours searching the knowledge center but this post never came up. That said, I'm afraid it doesn't work. It does turn the points into multipoints, and will write all of them to a multipoint feature class, but it now ignores the points that originally and still have multipoint geometry.


ebygomm
Influencer
Forum|alt.badge.img+46
  • Influencer
  • September 6, 2017

Thanks @egomm. I have spent several hours searching the knowledge center but this post never came up. That said, I'm afraid it doesn't work. It does turn the points into multipoints, and will write all of them to a multipoint feature class, but it now ignores the points that originally and still have multipoint geometry.

Is there any message in the log file?

 

e.g. something like FileGDB Writer: Failed to write Geometry to feature class

 

 


ebygomm
Influencer
Forum|alt.badge.img+46
  • Influencer
  • September 6, 2017
Is there any message in the log file?

 

e.g. something like FileGDB Writer: Failed to write Geometry to feature class

 

 

Are you aggregating the original multipoints? If so use an aggregatefilter to only aggregate points that are not aggregates already

 

 


Forum|alt.badge.img
  • Author
  • September 6, 2017
Are you aggregating the original multipoints? If so use an aggregatefilter to only aggregate points that are not aggregates already

 

 

Oh boy, do I feel silly. That was it! Thank you