Select to view content in your preferred language

WARNING 000594: Input feature -1: No support for this geometry type.

2747
9
12-20-2017 05:45 AM
JoseSanchez
Frequent Contributor

Hello everyone,

We are getting this error message when appending a FC point into a FC Multipoint using Model Builder.

Executing (Append): Append  ......
Start Time: Wed Dec 20 08:39:17 2017
WARNING 000594: Input feature -1: No support for this geometry type..
WARNING 000595: C:\Users\...\PointLayer_POINT0.fid contains the full list of features not able to be copied.
WARNING 000594: Input feature -1: No support for this geometry type..
WARNING 000594: Input feature -1: No support for this geometry type..
WARNING 000594: Input feature -1: No support for this geometry type..

How can it be fixed?

0 Kudos
9 Replies
DanPatterson_Retired
MVP Emeritus

It seems it expects a multipoint object and not a single point object. A multipoint is not a point.

JoseSanchez
Frequent Contributor

The field shape from Input Dataset comes from a View that select the field .SHAPE from a multipoint FC, but it looks like it does not keep the type multipoint and it converts it to point. so when I  run an append it shows this error.

0 Kudos
DanPatterson_Retired
MVP Emeritus

are these las data? or does it just happen to be a 'simple' multipoint?

http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-classes/multipoint.htm

You have placed this in modelbuilder, so I will say no, but in python scripting, you can append to the points list of a multipoint.  Perhaps the purpose of your workflow might be useful. since your limits in modelbuilder would be the 

Processing multipoint data tools, which presumably you have ruled out

0 Kudos
JoseSanchez
Frequent Contributor

I am running a Python script but when I append the SDE view point to a FC point it fails with the message above.

0 Kudos
DanPatterson_Retired
MVP Emeritus

as expected, since a point is not a multipoint, so you have to make the multipoints into single points or vica versa prior to appending.  SDE... hmmm don't know if that has any added complications, but if you need to append then you have two options.  But the question still remains, what is the need for a multipoint in the first place? and if it is needed, then you need to get the geometry into the same form

0 Kudos
JoseSanchez
Frequent Contributor

So how to convert a single point to a multipoint  in a feature (record) or feature class ?

0 Kudos
DanPatterson_Retired
MVP Emeritus

you have to make a multipoint featureclass first, then add the point as a list to it as shown in the code example in the previous example.  As for multipart to singlepart, there is automatically a tool for that

0 Kudos
JoseSanchez
Frequent Contributor
0 Kudos
DanPatterson_Retired
MVP Emeritus

yes.... from above copying will copy in the right form

you have to make a multipoint featureclass first, then add the point
0 Kudos