Skip to main content

I read a shp file, and work with the Extruder transformer , after that write to a geojson file, but geojson's geometry type is "MultiLineString", I want to set the geometry type of "MultiPloygon", how to set?

 

 

 

Hi @keplerleee, you may have to transform the extrusion (IFMEExtrusion) to a multi-part polygon (IFMEMultiArea). If the base face for the extrusion was a polygon (not donut), a possible way is:

  1. GeometryCoercer: Transform the extrusion to a composite surface.
  2. GeometryCoercer: Transform the composite surface to a multi-part polygon (each face to polygon).


Hi @keplerleee, you may have to transform the extrusion (IFMEExtrusion) to a multi-part polygon (IFMEMultiArea). If the base face for the extrusion was a polygon (not donut), a possible way is:

  1. GeometryCoercer: Transform the extrusion to a composite surface.
  2. GeometryCoercer: Transform the composite surface to a multi-part polygon (each face to polygon).

thank you very much?I will try it later?

 

 


Reply