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?
It seems it expects a multipoint object and not a single point object. A multipoint is not a point.
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.
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
I am running a Python script but when I append the SDE view point to a FC point it fails with the message above.
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
So how to convert a single point to a multipoint in a feature (record) or feature class ?
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
I am testing that and it works:
https://community.esri.com/message/573271?commentID=573271#comment-573271
yes.... from above copying will copy in the right form
you have to make a multipoint featureclass first, then add the point