Feature to polygon in multiple folders

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












2















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.



EDIT:



Here is code that works. It works through the folders and converts all polylines to polygons.



import os, sys, arcpy
directory = "C:/working_folder/"

for path, path_names, data_names in arcpy.da.Walk(directory, type="Polyline"):
for data_name in data_names:
arcpy.FeatureToPolygon_management(in_features= (os.path.join(path, data_name)), out_feature_class= (os.path.join(path, "two"+data_name)), cluster_tolerance="", attributes="ATTRIBUTES", label_features="")









share|improve this question



















  • 3





    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
    Feb 24 at 23:26















2















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.



EDIT:



Here is code that works. It works through the folders and converts all polylines to polygons.



import os, sys, arcpy
directory = "C:/working_folder/"

for path, path_names, data_names in arcpy.da.Walk(directory, type="Polyline"):
for data_name in data_names:
arcpy.FeatureToPolygon_management(in_features= (os.path.join(path, data_name)), out_feature_class= (os.path.join(path, "two"+data_name)), cluster_tolerance="", attributes="ATTRIBUTES", label_features="")









share|improve this question



















  • 3





    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
    Feb 24 at 23:26













2












2








2








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.



EDIT:



Here is code that works. It works through the folders and converts all polylines to polygons.



import os, sys, arcpy
directory = "C:/working_folder/"

for path, path_names, data_names in arcpy.da.Walk(directory, type="Polyline"):
for data_name in data_names:
arcpy.FeatureToPolygon_management(in_features= (os.path.join(path, data_name)), out_feature_class= (os.path.join(path, "two"+data_name)), cluster_tolerance="", attributes="ATTRIBUTES", label_features="")









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.



EDIT:



Here is code that works. It works through the folders and converts all polylines to polygons.



import os, sys, arcpy
directory = "C:/working_folder/"

for path, path_names, data_names in arcpy.da.Walk(directory, type="Polyline"):
for data_name in data_names:
arcpy.FeatureToPolygon_management(in_features= (os.path.join(path, data_name)), out_feature_class= (os.path.join(path, "two"+data_name)), cluster_tolerance="", attributes="ATTRIBUTES", label_features="")






arcpy error-000210






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 25 at 17:31







Vince

















asked Feb 24 at 22:57









VinceVince

855




855







  • 3





    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
    Feb 24 at 23:26












  • 3





    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
    Feb 24 at 23:26







3




3





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
Feb 24 at 23:26





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
Feb 24 at 23:26










1 Answer
1






active

oldest

votes


















4














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(path):
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

























  • This works, except I can't get it to save the output file back into the same directory as the file it just worked on. So it will process the first one, save it to a location, then say it already exists and fails on the second one. Any suggestions for this?

    – Vince
    Feb 25 at 2:11






  • 1





    os.path.join(Spath,'<your file name>') will save the output in the folder the input is being read from; if you need to find all of them at the end start with an empty list and append each save path as it is created. The value of Spath changes to the workspace path of the list of file names returned in Sfiles.

    – Michael Stimson
    Feb 25 at 2:14











  • This also works. The one (big) issue now is that each newly created polygon feature is identical to whichever feature was first processed. It's naming them correctly and working through each folder correctly, but it's just processing the exact same feature over and over again and saving it as a different name + location each time. Is there some sort of cache that needs clearing between each process? I've tried arcpy.ClearWorkspaceCache_management() with no luck.

    – Vince
    Feb 25 at 4:17











  • I forgot to put the path into the walk(), had you already fixed that? If not specified it defaults to the arcpy.env.workspace. Please update your code in your question with what you have now and I'll see if I can find any glaring errors.

    – Michael Stimson
    Feb 25 at 5:22






  • 1





    I slept on it then read through it again and found my errors. Thanks! Will post my code.

    – Vince
    Feb 25 at 17:24










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









4














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(path):
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

























  • This works, except I can't get it to save the output file back into the same directory as the file it just worked on. So it will process the first one, save it to a location, then say it already exists and fails on the second one. Any suggestions for this?

    – Vince
    Feb 25 at 2:11






  • 1





    os.path.join(Spath,'<your file name>') will save the output in the folder the input is being read from; if you need to find all of them at the end start with an empty list and append each save path as it is created. The value of Spath changes to the workspace path of the list of file names returned in Sfiles.

    – Michael Stimson
    Feb 25 at 2:14











  • This also works. The one (big) issue now is that each newly created polygon feature is identical to whichever feature was first processed. It's naming them correctly and working through each folder correctly, but it's just processing the exact same feature over and over again and saving it as a different name + location each time. Is there some sort of cache that needs clearing between each process? I've tried arcpy.ClearWorkspaceCache_management() with no luck.

    – Vince
    Feb 25 at 4:17











  • I forgot to put the path into the walk(), had you already fixed that? If not specified it defaults to the arcpy.env.workspace. Please update your code in your question with what you have now and I'll see if I can find any glaring errors.

    – Michael Stimson
    Feb 25 at 5:22






  • 1





    I slept on it then read through it again and found my errors. Thanks! Will post my code.

    – Vince
    Feb 25 at 17:24















4














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(path):
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

























  • This works, except I can't get it to save the output file back into the same directory as the file it just worked on. So it will process the first one, save it to a location, then say it already exists and fails on the second one. Any suggestions for this?

    – Vince
    Feb 25 at 2:11






  • 1





    os.path.join(Spath,'<your file name>') will save the output in the folder the input is being read from; if you need to find all of them at the end start with an empty list and append each save path as it is created. The value of Spath changes to the workspace path of the list of file names returned in Sfiles.

    – Michael Stimson
    Feb 25 at 2:14











  • This also works. The one (big) issue now is that each newly created polygon feature is identical to whichever feature was first processed. It's naming them correctly and working through each folder correctly, but it's just processing the exact same feature over and over again and saving it as a different name + location each time. Is there some sort of cache that needs clearing between each process? I've tried arcpy.ClearWorkspaceCache_management() with no luck.

    – Vince
    Feb 25 at 4:17











  • I forgot to put the path into the walk(), had you already fixed that? If not specified it defaults to the arcpy.env.workspace. Please update your code in your question with what you have now and I'll see if I can find any glaring errors.

    – Michael Stimson
    Feb 25 at 5:22






  • 1





    I slept on it then read through it again and found my errors. Thanks! Will post my code.

    – Vince
    Feb 25 at 17:24













4












4








4







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(path):
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(path):
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








edited Feb 25 at 5:19

























answered Feb 24 at 23:33









Michael StimsonMichael Stimson

21.6k22460




21.6k22460












  • This works, except I can't get it to save the output file back into the same directory as the file it just worked on. So it will process the first one, save it to a location, then say it already exists and fails on the second one. Any suggestions for this?

    – Vince
    Feb 25 at 2:11






  • 1





    os.path.join(Spath,'<your file name>') will save the output in the folder the input is being read from; if you need to find all of them at the end start with an empty list and append each save path as it is created. The value of Spath changes to the workspace path of the list of file names returned in Sfiles.

    – Michael Stimson
    Feb 25 at 2:14











  • This also works. The one (big) issue now is that each newly created polygon feature is identical to whichever feature was first processed. It's naming them correctly and working through each folder correctly, but it's just processing the exact same feature over and over again and saving it as a different name + location each time. Is there some sort of cache that needs clearing between each process? I've tried arcpy.ClearWorkspaceCache_management() with no luck.

    – Vince
    Feb 25 at 4:17











  • I forgot to put the path into the walk(), had you already fixed that? If not specified it defaults to the arcpy.env.workspace. Please update your code in your question with what you have now and I'll see if I can find any glaring errors.

    – Michael Stimson
    Feb 25 at 5:22






  • 1





    I slept on it then read through it again and found my errors. Thanks! Will post my code.

    – Vince
    Feb 25 at 17:24

















  • This works, except I can't get it to save the output file back into the same directory as the file it just worked on. So it will process the first one, save it to a location, then say it already exists and fails on the second one. Any suggestions for this?

    – Vince
    Feb 25 at 2:11






  • 1





    os.path.join(Spath,'<your file name>') will save the output in the folder the input is being read from; if you need to find all of them at the end start with an empty list and append each save path as it is created. The value of Spath changes to the workspace path of the list of file names returned in Sfiles.

    – Michael Stimson
    Feb 25 at 2:14











  • This also works. The one (big) issue now is that each newly created polygon feature is identical to whichever feature was first processed. It's naming them correctly and working through each folder correctly, but it's just processing the exact same feature over and over again and saving it as a different name + location each time. Is there some sort of cache that needs clearing between each process? I've tried arcpy.ClearWorkspaceCache_management() with no luck.

    – Vince
    Feb 25 at 4:17











  • I forgot to put the path into the walk(), had you already fixed that? If not specified it defaults to the arcpy.env.workspace. Please update your code in your question with what you have now and I'll see if I can find any glaring errors.

    – Michael Stimson
    Feb 25 at 5:22






  • 1





    I slept on it then read through it again and found my errors. Thanks! Will post my code.

    – Vince
    Feb 25 at 17:24
















This works, except I can't get it to save the output file back into the same directory as the file it just worked on. So it will process the first one, save it to a location, then say it already exists and fails on the second one. Any suggestions for this?

– Vince
Feb 25 at 2:11





This works, except I can't get it to save the output file back into the same directory as the file it just worked on. So it will process the first one, save it to a location, then say it already exists and fails on the second one. Any suggestions for this?

– Vince
Feb 25 at 2:11




1




1





os.path.join(Spath,'<your file name>') will save the output in the folder the input is being read from; if you need to find all of them at the end start with an empty list and append each save path as it is created. The value of Spath changes to the workspace path of the list of file names returned in Sfiles.

– Michael Stimson
Feb 25 at 2:14





os.path.join(Spath,'<your file name>') will save the output in the folder the input is being read from; if you need to find all of them at the end start with an empty list and append each save path as it is created. The value of Spath changes to the workspace path of the list of file names returned in Sfiles.

– Michael Stimson
Feb 25 at 2:14













This also works. The one (big) issue now is that each newly created polygon feature is identical to whichever feature was first processed. It's naming them correctly and working through each folder correctly, but it's just processing the exact same feature over and over again and saving it as a different name + location each time. Is there some sort of cache that needs clearing between each process? I've tried arcpy.ClearWorkspaceCache_management() with no luck.

– Vince
Feb 25 at 4:17





This also works. The one (big) issue now is that each newly created polygon feature is identical to whichever feature was first processed. It's naming them correctly and working through each folder correctly, but it's just processing the exact same feature over and over again and saving it as a different name + location each time. Is there some sort of cache that needs clearing between each process? I've tried arcpy.ClearWorkspaceCache_management() with no luck.

– Vince
Feb 25 at 4:17













I forgot to put the path into the walk(), had you already fixed that? If not specified it defaults to the arcpy.env.workspace. Please update your code in your question with what you have now and I'll see if I can find any glaring errors.

– Michael Stimson
Feb 25 at 5:22





I forgot to put the path into the walk(), had you already fixed that? If not specified it defaults to the arcpy.env.workspace. Please update your code in your question with what you have now and I'll see if I can find any glaring errors.

– Michael Stimson
Feb 25 at 5:22




1




1





I slept on it then read through it again and found my errors. Thanks! Will post my code.

– Vince
Feb 25 at 17:24





I slept on it then read through it again and found my errors. Thanks! Will post my code.

– Vince
Feb 25 at 17:24

















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

Peggy Mitchell

Palaiologos

The Forum (Inglewood, California)