0

I have 10 shapefiles in source folder.

I made a model, which use iterator iterate feature classes and tool the feature class to feature.

I would like to merge multiple shapefiles into a single geodatabase feature class.

Problem is, that gdb contain only last shapefile and not all in the source folder.

PolyGeo
65.5k29 gold badges115 silver badges349 bronze badges
asked Jun 7, 2023 at 8:28
1
  • but the result in the end is not one feature but as many as the number of input shapefiles. I would like the result to be a feature that combines all input shapefiles in one gdb. Commented Jun 8, 2023 at 12:30

1 Answer 1

1

If the goal is to merge all shapefiles into one feature class in one file geodatabase this model should work. All shapefiles need to have the same geometry type, for example all points, all lines, all polygons.

  • Iterate feature classes with your shapefile folder as workspace. (All shapefiles have to be the same geometry type, for example polygons, so i choose geometry type POLYGON in the iterator)
  • Collect values will create a list of all shapefiles
  • Merge them and save the output in a file geodatabase

enter image description here

answered Jun 8, 2023 at 12:46

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.