I have never had this issue before, any ideas as to why?
Thanks
On the surface, the error seems to be related to the join method of a Python string.
>>> ";".join(None)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: can only join an iterable
>>>
You appear to be using the Feature Class to Shapefile tool with multiple layers or feature classes. Check to see if there is something off with one of the inputs to the tool.
I ended up using the feature class to feature class tool. From there I tried the shapefile tool again and it worked. I do not know what happened with the original feature class but it doesn’t matter at this point. It worked. Thanks for the reply Joshua.
<http://www.ssjid.com/>
Anthony Podesto | GIS Technician
a: SSJID | 11011 E. Hwy 120, Manteca, CA 95336
e: apodesto@ssjid.com | w: www.ssjid.com<http://www.ssjid.com/>
p: (209) 601-9717
<https://www.linkedin.com/in/anthony-podesto-b80b9584/>
I had this issue and I found out why/how to fix it and it looks like you made the same mistake I did.
Don't use weird text characters such as "/" or "-". Your input has both. Remove or replace those and it will fix your issue.
This worked for me! Thanks.
I had the same issue when exporting ArcGIS Online Features using the Feature Class to Geodatabase tool and this fixed it. "Don't use weird text characters such as "/" or "-". Your input has both. Remove or replace those and it will fix your issue"
I had the same issue with the Raster to Geodatabase tool and this was the solution. My particular problem was, the rasters I was trying to import I had them grouped in the Contents Pane, so the route included come "/" characters.
Thanks a lot.
Oh, thank you! This comment saved me with the Raster to Other Format tool. I had my tif files in a group layer and that failed. Ungrouping did the trick.