Skip to main content
Question

How do you write NULL geometries to a PGDB?

  • October 30, 2014
  • 1 reply
  • 35 views

Forum|alt.badge.img
I have records in Oracle that have valid records with null geometries. The geometry type is point, so the geodb_point type is used in FME for the pgdb - BUT this excludes all the null geometry records.

 

 

How do I get ALL the records exported?
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

david_r
Celebrity
  • October 30, 2014
Hi,

 

 

if there is a discrepancy between the actual geometry and the format attributes, you can often solve this by inserting a GeometryValidator.

 

 

Another strategy could be to test for the number of coordinates (CoordinateCounter) and to insert a GeometryRemover if there are no coordinates, which should clear up the internal format descriptors.

 

 

David