<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Getting FEATURE DATASET name - not FEATURE CLASS name - using Python in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204660#M15734</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone figured out how to get the Feature Dataset name using Python when your data is residing in FeatureDatasets within the database?&amp;nbsp; I see that the layer.datasetName is really the feature class name.&amp;nbsp; Unfortunately, we have several feature classes within feature datasets for network and topology purposes and now that we are changing servers, I need to have a script that will change the source data.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Alas, as of right now, I can't do it via script unless someone has a work around out there.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've been banging my head against the wall for a week now, because like some others, when a term 'dataset' is used, you would expect it to be related to the same things that it is elsewhere.&amp;nbsp; I'd seriously consider an attempt to parse the name out, but we have several different former datasources referenced (even after changing them in the mxd - thanks for hardcoding ESRI) and the feature dataset names are many different lengths.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks if anyone has a workaround to help with this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Sep 2013 15:39:15 GMT</pubDate>
    <dc:creator>LorindaGilbert</dc:creator>
    <dc:date>2013-09-10T15:39:15Z</dc:date>
    <item>
      <title>Getting FEATURE DATASET name - not FEATURE CLASS name - using Python</title>
      <link>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204660#M15734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone figured out how to get the Feature Dataset name using Python when your data is residing in FeatureDatasets within the database?&amp;nbsp; I see that the layer.datasetName is really the feature class name.&amp;nbsp; Unfortunately, we have several feature classes within feature datasets for network and topology purposes and now that we are changing servers, I need to have a script that will change the source data.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Alas, as of right now, I can't do it via script unless someone has a work around out there.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've been banging my head against the wall for a week now, because like some others, when a term 'dataset' is used, you would expect it to be related to the same things that it is elsewhere.&amp;nbsp; I'd seriously consider an attempt to parse the name out, but we have several different former datasources referenced (even after changing them in the mxd - thanks for hardcoding ESRI) and the feature dataset names are many different lengths.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks if anyone has a workaround to help with this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 15:39:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204660#M15734</guid>
      <dc:creator>LorindaGilbert</dc:creator>
      <dc:date>2013-09-10T15:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Getting FEATURE DATASET name - not FEATURE CLASS name - using Python</title>
      <link>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204661#M15735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Something like this would get what you want I believe. Depends on what you are doing specifically if it is in a dataset or not.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import os
import arcpy

mxd = mxd = arcpy.mapping.MapDocument('current')
layer = arcpy.mapping.ListLayers(mxd, 'some_layer')[0]
describe = arcpy.Describe(os.path.dirname(layer.dataSource))
ws_type = describe.dataElementType
if ws_type == 'DEFeatureDataset':
&amp;nbsp;&amp;nbsp;&amp;nbsp; print('is in dataset')

elif ws_type == 'DEWorkspace':
&amp;nbsp;&amp;nbsp;&amp;nbsp; print('is not in dataset')

else:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print('unknown datatype')
&amp;nbsp;&amp;nbsp;&amp;nbsp; pass&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:08:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204661#M15735</guid>
      <dc:creator>MathewCoyle</dc:creator>
      <dc:date>2021-12-11T10:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Getting FEATURE DATASET name - not FEATURE CLASS name - using Python</title>
      <link>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204662#M15736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Would ListDatasets help you out?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In 1 script where I need to access feature classes inside feature datasets, I loop through the feature datasets and then I loop through the feature classes inside the feature dataset that has the current focus.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 16:22:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204662#M15736</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2013-09-10T16:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: Getting FEATURE DATASET name - not FEATURE CLASS name - using Python</title>
      <link>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204663#M15737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Would ListDatasets help you out?&lt;BR /&gt;&lt;BR /&gt;In 1 script where I need to access feature classes inside feature datasets, I loop through the feature datasets and then I loop through the feature classes inside the feature dataset that has the current focus.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure, do you have a sample of the looping through the fds and the the fc?&amp;nbsp; Although I believe that the fc would be doing the for lyr in lyrList portion that I have already started.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 18:44:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204663#M15737</guid>
      <dc:creator>LorindaGilbert</dc:creator>
      <dc:date>2013-09-10T18:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Getting FEATURE DATASET name - not FEATURE CLASS name - using Python</title>
      <link>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204664#M15738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here's an example of looping through feature classes, tables &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;&lt;STRONG&gt;&amp;amp; datasets&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt; in a file geodatabase...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os

log = open("list.txt","a")

arcpy.env.workspace = os.getcwd()

# For each ws, print the fc's and tbl's.
for ws in arcpy.ListWorkspaces("*", "FileGDB"):&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.env.workspace = ws
&amp;nbsp;&amp;nbsp;&amp;nbsp; # feature classes
&amp;nbsp;&amp;nbsp;&amp;nbsp; for fc in arcpy.ListFeatureClasses():&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "fc: "+fc
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; log.write("fc: "+fc+"\n")
&amp;nbsp;&amp;nbsp;&amp;nbsp; # tables
&amp;nbsp;&amp;nbsp;&amp;nbsp; for tbl in arcpy.ListTables():
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "tbl: "+tbl
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; log.write("tbl: "+tbl+"\n")
&amp;nbsp;&amp;nbsp;&amp;nbsp; # feature classes in datasets
&amp;nbsp;&amp;nbsp;&amp;nbsp; for ds in arcpy.ListDatasets():
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "ds: "+ds
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; log.write("ds: "+ds+"\n")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for dfc in arcpy.ListFeatureClasses("*", "All", ds):&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "fc in ds: "+dfc
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; log.write("fc in ds: "+dfc+"\n")


&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:08:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204664#M15738</guid>
      <dc:creator>RDHarles</dc:creator>
      <dc:date>2021-12-11T10:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: Getting FEATURE DATASET name - not FEATURE CLASS name - using Python</title>
      <link>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204665#M15739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;rdharles:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In your sample code you use the method getcwd.&amp;nbsp; I am reading that this method returns the current working directory of a process.&amp;nbsp; So in this case, would the working directory be the folder location where the python script is being run from?&amp;nbsp; If this is not the case, what would the working directory be if I see no directory specified in your code?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2013 11:34:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204665#M15739</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2013-09-11T11:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Getting FEATURE DATASET name - not FEATURE CLASS name - using Python</title>
      <link>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204666#M15740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;rdharles:&lt;BR /&gt;&lt;BR /&gt;In your sample code you use the method getcwd.&amp;nbsp; I am reading that this method returns the current working directory of a process.&amp;nbsp; So in this case, would the working directory be the folder location where the python script is being run from?&amp;nbsp; If this is not the case, what would the working directory be if I see no directory specified in your code?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Michael,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I run all my python scripts from a windows command prompt, so yes, os.getcwd() spits back the current directory in which you are running the script from.&amp;nbsp; This way I don't have to hardcode any of my scripts, they just always work no matter where the data may sit on the file structure.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;R.D.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2013 11:41:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204666#M15740</guid>
      <dc:creator>RDHarles</dc:creator>
      <dc:date>2013-09-11T11:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: Getting FEATURE DATASET name - not FEATURE CLASS name - using Python</title>
      <link>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204667#M15741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;rdharles:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am still confused with how you use arcpy.env.workspace = os.getcwd() along with ListWorkspaces.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;According to the arcgis python documentation, ListWorkspaces lists all the workspaces within the set workspace.&amp;nbsp; If you set the workspace to be the folder location where the python script is being run, that also means that the file geodatabases you are looping through need to be stored in the same folder location.&amp;nbsp; That does not seem like how most organizations would structure their data storage locations.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please correct me if I am interpreting the documentation incorrectly as I usually explicitly set the workspace from a config file.&amp;nbsp; The data storage location is in a different location than where the python scripts are stored and run from.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2013 11:52:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204667#M15741</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2013-09-11T11:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: Getting FEATURE DATASET name - not FEATURE CLASS name - using Python</title>
      <link>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204668#M15742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Let me give you a bit more detail and background...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1.) All the python scripts I write for our production are stored in a central location on our server (H:/pyscripts)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2.) All of our production people have that path set in their system environment PATH variable. (control panel &amp;gt; system &amp;gt; advances system settings &amp;gt; environment variables...)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3.) We also have a path set to where the the python installlation is.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4.) Now everything is easy, all anyone has to do it "cd" at the command prompt to the directory on the system where they want to process some data, and everything works by simply typing the script name.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In this example, I've gone to where my current gdb is (H:/jobs/j12345) and typed the name of the script (listStuff.py).&amp;nbsp; In this case, the xy.gdb only contains one fc, POIs.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope that make sense.&amp;nbsp; It's a highly efficient system that allows anyone in the organization to run python scripts easily, even if they have little understand of coding, python, system variables, ect.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]27347[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2013 12:27:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204668#M15742</guid>
      <dc:creator>RDHarles</dc:creator>
      <dc:date>2013-09-11T12:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: Getting FEATURE DATASET name - not FEATURE CLASS name - using Python</title>
      <link>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204669#M15743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you for the excellent clarification rdharles&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3.) We also have a path set to where the the python installlation is&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you have this set with the PYTHONPATH environmental variable?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2013 12:33:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204669#M15743</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2013-09-11T12:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Getting FEATURE DATASET name - not FEATURE CLASS name - using Python</title>
      <link>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204670#M15744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thank you for the excellent clarification rdharles&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="color:#FF0000;"&gt;3.) We also have a path set to where the the python installlation is&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Do you have this set with the PYTHONPATH environmental variable?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't have the PYTHONPATH set.&amp;nbsp; I have the following in the same PATH variable:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;C:\Python27\ArcGIS10.1&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;...but, perhaps you can set it there as well and it will work, not sure.&amp;nbsp; I'm just in the habit of putting everything in the PATH variable.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2013 12:44:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204670#M15744</guid>
      <dc:creator>RDHarles</dc:creator>
      <dc:date>2013-09-11T12:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: Getting FEATURE DATASET name - not FEATURE CLASS name - using Python</title>
      <link>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204671#M15745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This thread seems to be going off track.....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Have you had a look at : &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/#/Walk/018w00000023000000/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/#/Walk/018w00000023000000/&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;And use arcpy.Describe functionality as detailed above.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I want to point to a specific location to run a script I normally just set a variable like &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
import arcpy, os
from arcpy import env
HomeDir = "c:/Data/Path to dataset.."
db = "MyData.gdb"
InputData = os.path.join(HomeDir, db)
env.workspace = InputData
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;N&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:08:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/getting-feature-dataset-name-not-feature-class/m-p/204671#M15745</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2021-12-11T10:08:52Z</dc:date>
    </item>
  </channel>
</rss>

