Feature to polygon in multiple foldersDebugging ERROR 000664 when changing field name with...

"I showed the monkey himself in the mirror". Why is this sentence grammatical?

Crack the bank account's password!

Is Screenshot Time-tracking Common?

Other than edits for international editions, did Harry Potter and the Philosopher's Stone receive errata?

Is there a way to pause a running process on Linux systems and resume later?

Why is it that Bernie Sanders is always called a "socialist"?

Word for something that's always reliable, but never the best?

How can find the 2D Voronoi cell area distribution?

Rigorous justification for non-relativistic QM perturbation theory assumptions?

Why is "rm -r" unable to delete this folder?

Is the symmetric product of an abelian variety a CY variety?

Why is Shelob considered evil?

Piano music notation conventions

Buying a "Used" Router

XOR-free sets: Maximum density?

How long has this character been impersonating a Starfleet Officer?

Coworker asking me to not bring cakes due to self control issue. What should I do?

Can I travel from country A to country B to country C without going back to country A?

Specific list manipulation

Where does documentation like business and software requirement spec docs fit in an agile project?

How can I automatically launch GPSD on startup?

Renting a 2CV in France

Sensor logger for Raspberry Pi in a stratospheric probe

Was there a pre-determined arrangement for the division of Germany in case it surrendered before any Soviet forces entered its territory?



Feature to polygon in multiple folders


Debugging ERROR 000664 when changing field name with arcpy.AlterField_management()?Multiple rename shapefiles and feature classes in pythonArcpy.mapping Select by Location problemUsing multiple workspace environments ArcGIS ArcpyWorkspace Error type- 000301 for reconcile versionSelect By Attributes Based on Unique Value in Shapefile gives ERROR 000840?Creating Python code when creating tool gives ERROR 000210?Add Subtrack name attributeERROR 000732 in code to Save shape as .lyr?Deleting shapefiles and rasters using arcpy













1















I have a few hundred folders, each with a set of shapefiles that are identical across folders (ie each folder has a 'lot.shp'). They are all supposed to be polygon features, but unfortunately many are line features.



I am trying to convert all line features to polygons using Feature to Polygon.



To do this I have tried the following code which should work through each folder converting the desired shapefiles and saving back into the same folder but with a '2' in the name:



import arcpy, glob, os

filelist = ['buildingpoly','lot', etc etc]

path = "C:/folder_containing_desired_subfolders/*/"

for x in filelist:
list = glob.glob(path + x + ".shp")
arcpy.FeatureToPolygon_management(in_features=list, out_feature_class=path + x + "2.shp", cluster_tolerance="", attributes="ATTRIBUTES", label_features="")
del list


But this gets the following error:



Runtime error Traceback (most recent call last): File "", line 10, in File "c:program files (x86)arcgisdesktop10.4arcpyarcpymanagement.py", line 2524, in FeatureToPolygon raise e ExecuteError: ERROR 000210: Cannot create output C:/folder_containing_desired_subfolders/*/buildingpoly2.shp Failed to execute (FeatureToPolygon).



Any ideas? I'm at a loss on this one.



An alternative that would also work is if I can have all the new polygon features saved in the same directory but this would require each getting a unique name.










share|improve this question




















  • 2





    The asterisk shouldn't appear in your path, consider arcpy.da.Walk() to find the lot.shp in each subfolder and arcpy.Describe shapeType == 'Polyline' to find the line lot.shp files to polygonize.

    – Michael Stimson
    1 hour ago
















1















I have a few hundred folders, each with a set of shapefiles that are identical across folders (ie each folder has a 'lot.shp'). They are all supposed to be polygon features, but unfortunately many are line features.



I am trying to convert all line features to polygons using Feature to Polygon.



To do this I have tried the following code which should work through each folder converting the desired shapefiles and saving back into the same folder but with a '2' in the name:



import arcpy, glob, os

filelist = ['buildingpoly','lot', etc etc]

path = "C:/folder_containing_desired_subfolders/*/"

for x in filelist:
list = glob.glob(path + x + ".shp")
arcpy.FeatureToPolygon_management(in_features=list, out_feature_class=path + x + "2.shp", cluster_tolerance="", attributes="ATTRIBUTES", label_features="")
del list


But this gets the following error:



Runtime error Traceback (most recent call last): File "", line 10, in File "c:program files (x86)arcgisdesktop10.4arcpyarcpymanagement.py", line 2524, in FeatureToPolygon raise e ExecuteError: ERROR 000210: Cannot create output C:/folder_containing_desired_subfolders/*/buildingpoly2.shp Failed to execute (FeatureToPolygon).



Any ideas? I'm at a loss on this one.



An alternative that would also work is if I can have all the new polygon features saved in the same directory but this would require each getting a unique name.










share|improve this question




















  • 2





    The asterisk shouldn't appear in your path, consider arcpy.da.Walk() to find the lot.shp in each subfolder and arcpy.Describe shapeType == 'Polyline' to find the line lot.shp files to polygonize.

    – Michael Stimson
    1 hour ago














1












1








1








I have a few hundred folders, each with a set of shapefiles that are identical across folders (ie each folder has a 'lot.shp'). They are all supposed to be polygon features, but unfortunately many are line features.



I am trying to convert all line features to polygons using Feature to Polygon.



To do this I have tried the following code which should work through each folder converting the desired shapefiles and saving back into the same folder but with a '2' in the name:



import arcpy, glob, os

filelist = ['buildingpoly','lot', etc etc]

path = "C:/folder_containing_desired_subfolders/*/"

for x in filelist:
list = glob.glob(path + x + ".shp")
arcpy.FeatureToPolygon_management(in_features=list, out_feature_class=path + x + "2.shp", cluster_tolerance="", attributes="ATTRIBUTES", label_features="")
del list


But this gets the following error:



Runtime error Traceback (most recent call last): File "", line 10, in File "c:program files (x86)arcgisdesktop10.4arcpyarcpymanagement.py", line 2524, in FeatureToPolygon raise e ExecuteError: ERROR 000210: Cannot create output C:/folder_containing_desired_subfolders/*/buildingpoly2.shp Failed to execute (FeatureToPolygon).



Any ideas? I'm at a loss on this one.



An alternative that would also work is if I can have all the new polygon features saved in the same directory but this would require each getting a unique name.










share|improve this question
















I have a few hundred folders, each with a set of shapefiles that are identical across folders (ie each folder has a 'lot.shp'). They are all supposed to be polygon features, but unfortunately many are line features.



I am trying to convert all line features to polygons using Feature to Polygon.



To do this I have tried the following code which should work through each folder converting the desired shapefiles and saving back into the same folder but with a '2' in the name:



import arcpy, glob, os

filelist = ['buildingpoly','lot', etc etc]

path = "C:/folder_containing_desired_subfolders/*/"

for x in filelist:
list = glob.glob(path + x + ".shp")
arcpy.FeatureToPolygon_management(in_features=list, out_feature_class=path + x + "2.shp", cluster_tolerance="", attributes="ATTRIBUTES", label_features="")
del list


But this gets the following error:



Runtime error Traceback (most recent call last): File "", line 10, in File "c:program files (x86)arcgisdesktop10.4arcpyarcpymanagement.py", line 2524, in FeatureToPolygon raise e ExecuteError: ERROR 000210: Cannot create output C:/folder_containing_desired_subfolders/*/buildingpoly2.shp Failed to execute (FeatureToPolygon).



Any ideas? I'm at a loss on this one.



An alternative that would also work is if I can have all the new polygon features saved in the same directory but this would require each getting a unique name.







arcpy error-000210






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 57 mins ago









PolyGeo

53.6k1780240




53.6k1780240










asked 2 hours ago









VinceVince

785




785








  • 2





    The asterisk shouldn't appear in your path, consider arcpy.da.Walk() to find the lot.shp in each subfolder and arcpy.Describe shapeType == 'Polyline' to find the line lot.shp files to polygonize.

    – Michael Stimson
    1 hour ago














  • 2





    The asterisk shouldn't appear in your path, consider arcpy.da.Walk() to find the lot.shp in each subfolder and arcpy.Describe shapeType == 'Polyline' to find the line lot.shp files to polygonize.

    – Michael Stimson
    1 hour ago








2




2





The asterisk shouldn't appear in your path, consider arcpy.da.Walk() to find the lot.shp in each subfolder and arcpy.Describe shapeType == 'Polyline' to find the line lot.shp files to polygonize.

– Michael Stimson
1 hour ago





The asterisk shouldn't appear in your path, consider arcpy.da.Walk() to find the lot.shp in each subfolder and arcpy.Describe shapeType == 'Polyline' to find the line lot.shp files to polygonize.

– Michael Stimson
1 hour ago










1 Answer
1






active

oldest

votes


















2














Have a try with this code:



import os, sys, arcpy

path = "C:/folder_containing_desired_subfolders"
filelist = ['buildingpoly','lot', etc etc]

for (Spath,Sfiles,Sdirs) in arcpy.da.Walk():
for ThisFile in Sfiles:
# break up the file name and extension
fName, fExt = os.path.splitext(ThisFile)
if fExt.upper() == '.SHP':
# only for .shp files
if fName.lower() in filelist:
# this fName is in the filelist of interest
# get some info about the shapefile
D = arcpy.Describe(os.path.join(Spath,ThisFile))
if D.shapeType == 'Polyline':
# do your polygonization here
elif D.shapeType == 'Polygon':
# do something for the already polygon feature classes


You say all your shapefiles are in subfolders so using arcpy.da.Walk() to traverse the folder tree, finding all Esri recognized feature classes and rasters then break up the file name and extension to filter by extension and then Describe to see if the feature class is a line or polygon.. this should get you a bit closer to where you're headed.






share|improve this answer























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "79"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f313403%2ffeature-to-polygon-in-multiple-folders%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    Have a try with this code:



    import os, sys, arcpy

    path = "C:/folder_containing_desired_subfolders"
    filelist = ['buildingpoly','lot', etc etc]

    for (Spath,Sfiles,Sdirs) in arcpy.da.Walk():
    for ThisFile in Sfiles:
    # break up the file name and extension
    fName, fExt = os.path.splitext(ThisFile)
    if fExt.upper() == '.SHP':
    # only for .shp files
    if fName.lower() in filelist:
    # this fName is in the filelist of interest
    # get some info about the shapefile
    D = arcpy.Describe(os.path.join(Spath,ThisFile))
    if D.shapeType == 'Polyline':
    # do your polygonization here
    elif D.shapeType == 'Polygon':
    # do something for the already polygon feature classes


    You say all your shapefiles are in subfolders so using arcpy.da.Walk() to traverse the folder tree, finding all Esri recognized feature classes and rasters then break up the file name and extension to filter by extension and then Describe to see if the feature class is a line or polygon.. this should get you a bit closer to where you're headed.






    share|improve this answer




























      2














      Have a try with this code:



      import os, sys, arcpy

      path = "C:/folder_containing_desired_subfolders"
      filelist = ['buildingpoly','lot', etc etc]

      for (Spath,Sfiles,Sdirs) in arcpy.da.Walk():
      for ThisFile in Sfiles:
      # break up the file name and extension
      fName, fExt = os.path.splitext(ThisFile)
      if fExt.upper() == '.SHP':
      # only for .shp files
      if fName.lower() in filelist:
      # this fName is in the filelist of interest
      # get some info about the shapefile
      D = arcpy.Describe(os.path.join(Spath,ThisFile))
      if D.shapeType == 'Polyline':
      # do your polygonization here
      elif D.shapeType == 'Polygon':
      # do something for the already polygon feature classes


      You say all your shapefiles are in subfolders so using arcpy.da.Walk() to traverse the folder tree, finding all Esri recognized feature classes and rasters then break up the file name and extension to filter by extension and then Describe to see if the feature class is a line or polygon.. this should get you a bit closer to where you're headed.






      share|improve this answer


























        2












        2








        2







        Have a try with this code:



        import os, sys, arcpy

        path = "C:/folder_containing_desired_subfolders"
        filelist = ['buildingpoly','lot', etc etc]

        for (Spath,Sfiles,Sdirs) in arcpy.da.Walk():
        for ThisFile in Sfiles:
        # break up the file name and extension
        fName, fExt = os.path.splitext(ThisFile)
        if fExt.upper() == '.SHP':
        # only for .shp files
        if fName.lower() in filelist:
        # this fName is in the filelist of interest
        # get some info about the shapefile
        D = arcpy.Describe(os.path.join(Spath,ThisFile))
        if D.shapeType == 'Polyline':
        # do your polygonization here
        elif D.shapeType == 'Polygon':
        # do something for the already polygon feature classes


        You say all your shapefiles are in subfolders so using arcpy.da.Walk() to traverse the folder tree, finding all Esri recognized feature classes and rasters then break up the file name and extension to filter by extension and then Describe to see if the feature class is a line or polygon.. this should get you a bit closer to where you're headed.






        share|improve this answer













        Have a try with this code:



        import os, sys, arcpy

        path = "C:/folder_containing_desired_subfolders"
        filelist = ['buildingpoly','lot', etc etc]

        for (Spath,Sfiles,Sdirs) in arcpy.da.Walk():
        for ThisFile in Sfiles:
        # break up the file name and extension
        fName, fExt = os.path.splitext(ThisFile)
        if fExt.upper() == '.SHP':
        # only for .shp files
        if fName.lower() in filelist:
        # this fName is in the filelist of interest
        # get some info about the shapefile
        D = arcpy.Describe(os.path.join(Spath,ThisFile))
        if D.shapeType == 'Polyline':
        # do your polygonization here
        elif D.shapeType == 'Polygon':
        # do something for the already polygon feature classes


        You say all your shapefiles are in subfolders so using arcpy.da.Walk() to traverse the folder tree, finding all Esri recognized feature classes and rasters then break up the file name and extension to filter by extension and then Describe to see if the feature class is a line or polygon.. this should get you a bit closer to where you're headed.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 1 hour ago









        Michael StimsonMichael Stimson

        21.5k22360




        21.5k22360






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f313403%2ffeature-to-polygon-in-multiple-folders%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Szabolcs (Ungheria) Altri progetti | Menu di navigazione48°10′14.56″N 21°29′33.14″E /...

            Discografia di Klaus Schulze Indice Album in studio | Album dal vivo | Singoli | Antologie | Colonne...

            How to make inet_server_addr() return localhost in spite of ::1/128RETURN NEXT in Postgres FunctionConnect to...