Question

MSSQL geometry column is being written as a Geometry Column

  • 29 September 2021
  • 1 reply
  • 1 view

Badge +1

FME is writing a the geometry column as:

GEOMETRYCOLLECTION (GEOMETRYCOLLECTION EMPTY, POINT (Y X))

 

When it should be outputting as

POINT (Y X)

 

Is there a way to correct this?


1 reply

Userlevel 6
Badge +33

The geometry you want to write looks te be a nested collection. You can try to explode this to single geometries by using the DeAggregator, parameter Mode: All Levels.

Reply