<?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 Re: Alternative way to save Feature Set to Shapefile? in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649427#M11647</link>
    <description>&lt;P&gt;When I try to install ArcGIS fresh on a new Conda environment, it says it will install arcgispro. So this indicates arcgispro is in fact a dependency for arcgis.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(DS) PS ...&amp;gt; conda install arcgis&lt;BR /&gt;Channels:&lt;BR /&gt;- esri&lt;BR /&gt;- defaults&lt;BR /&gt;- conda-forge&lt;BR /&gt;Platform: win-64&lt;BR /&gt;Collecting package metadata (repodata.json): done&lt;BR /&gt;Solving environment: done&lt;/P&gt;&lt;P&gt;## Package Plan ##&lt;/P&gt;&lt;P&gt;environment location: ...\AppData\Local\anaconda3\envs\DS&lt;/P&gt;&lt;P&gt;added / updated specs:&lt;BR /&gt;- arcgis&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The following packages will be downloaded:&lt;/P&gt;&lt;P&gt;package | build&lt;BR /&gt;---------------------------|-----------------&lt;BR /&gt;annotated-types-0.6.0 | py_2 15 KB esri&lt;BR /&gt;arcgis-2.4.1.3 | py312_152 7.1 MB esri&lt;BR /&gt;arcgispro-3.5 | 0 3 KB esri&lt;BR /&gt;....&lt;/P&gt;</description>
    <pubDate>Wed, 10 Sep 2025 16:21:18 GMT</pubDate>
    <dc:creator>PeterPurnyn</dc:creator>
    <dc:date>2025-09-10T16:21:18Z</dc:date>
    <item>
      <title>Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649355#M11637</link>
      <description>&lt;P&gt;I can't save featuresets to shapefiles, convert between shapely arcgis polygon, calculate area, get enrichment data...&lt;/P&gt;&lt;DIV class=""&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;def&lt;/SPAN&gt; &lt;SPAN class=""&gt;save_polygon_to_shapefile&lt;/SPAN&gt;(
        &lt;SPAN class=""&gt;self&lt;/SPAN&gt;, &lt;SPAN class=""&gt;polygon&lt;/SPAN&gt;: &lt;SPAN class=""&gt;Polygon&lt;/SPAN&gt;, &lt;SPAN class=""&gt;polygon_type&lt;/SPAN&gt;: &lt;SPAN class=""&gt;str&lt;/SPAN&gt;, &lt;SPAN class=""&gt;filename&lt;/SPAN&gt;: &lt;SPAN class=""&gt;str&lt;/SPAN&gt;
    ) &lt;SPAN class=""&gt;-&amp;gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;tuple&lt;/SPAN&gt;[&lt;SPAN class=""&gt;pathlib&lt;/SPAN&gt;.&lt;SPAN class=""&gt;Path&lt;/SPAN&gt;, &lt;SPAN class=""&gt;str&lt;/SPAN&gt;]:
        &lt;SPAN class=""&gt;"""Saves a arcgis.geometry.polygon to a shapefile as a Feature Set.&lt;/SPAN&gt;

&lt;SPAN class=""&gt;        Args:&lt;/SPAN&gt;
&lt;SPAN class=""&gt;            polygon (Polygon): an arcgis.geometry.polygon object&lt;/SPAN&gt;
&lt;SPAN class=""&gt;            polygon_type (str): a string representing the type of polygon as defined in the config file&lt;/SPAN&gt;
&lt;SPAN class=""&gt;            filename (str): a string representing the name of the file to save.&lt;/SPAN&gt;

&lt;SPAN class=""&gt;        Returns:&lt;/SPAN&gt;
&lt;SPAN class=""&gt;            tuple[pathlib.Path, str]: a tuple containing a patlib.path to the file directory and the filename&lt;/SPAN&gt;
&lt;SPAN class=""&gt;        """&lt;/SPAN&gt;
        &lt;SPAN class=""&gt;file_dir&lt;/SPAN&gt;, &lt;SPAN class=""&gt;filename&lt;/SPAN&gt; &lt;SPAN class=""&gt;=&lt;/SPAN&gt; &lt;SPAN class=""&gt;self&lt;/SPAN&gt;.&lt;SPAN class=""&gt;generate_polygon_file_path&lt;/SPAN&gt;(
            &lt;SPAN class=""&gt;polygon_type&lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt;polygon_type&lt;/SPAN&gt;, &lt;SPAN class=""&gt;filename&lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt;filename&lt;/SPAN&gt;
        )
        &lt;SPAN class=""&gt;f&lt;/SPAN&gt; &lt;SPAN class=""&gt;=&lt;/SPAN&gt; &lt;SPAN class=""&gt;Feature&lt;/SPAN&gt;(&lt;SPAN class=""&gt;geometry&lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt;polygon&lt;/SPAN&gt;, &lt;SPAN class=""&gt;attributes&lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;{})
        &lt;SPAN class=""&gt;fset&lt;/SPAN&gt; &lt;SPAN class=""&gt;=&lt;/SPAN&gt; &lt;SPAN class=""&gt;FeatureSet&lt;/SPAN&gt;([&lt;SPAN class=""&gt;f&lt;/SPAN&gt;])
        &lt;SPAN class=""&gt;try&lt;/SPAN&gt;:
            &lt;SPAN class=""&gt;"""&lt;/SPAN&gt;
&lt;SPAN class=""&gt;            Note: &lt;/SPAN&gt;
&lt;SPAN class=""&gt;            Arcgis featureset.save splits by . from the right and takes the first part as the file name, &lt;/SPAN&gt;
&lt;SPAN class=""&gt;            so we must make sure to add a decimal after the filename if the unit in the polygon type has a decimal point&lt;/SPAN&gt;
&lt;SPAN class=""&gt;            but the actual extension (shp) added here doesnt actually matter its just for readability.&lt;/SPAN&gt;
&lt;SPAN class=""&gt;            """&lt;/SPAN&gt;
            &lt;SPAN class=""&gt;fset&lt;/SPAN&gt;.&lt;SPAN class=""&gt;save&lt;/SPAN&gt;(&lt;SPAN class=""&gt;save_location&lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt;file_dir&lt;/SPAN&gt;, &lt;SPAN class=""&gt;out_name&lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt;f"&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;{&lt;/SPAN&gt;filename&lt;SPAN class=""&gt;}&lt;/SPAN&gt;&lt;/SPAN&gt;.shp"&lt;/SPAN&gt;)
        &lt;SPAN class=""&gt;except&lt;/SPAN&gt; &lt;SPAN class=""&gt;Exception&lt;/SPAN&gt; &lt;SPAN class=""&gt;as&lt;/SPAN&gt; &lt;SPAN class=""&gt;e&lt;/SPAN&gt;:
            &lt;SPAN class=""&gt;self&lt;/SPAN&gt;.&lt;SPAN class=""&gt;logger&lt;/SPAN&gt;.&lt;SPAN class=""&gt;warning&lt;/SPAN&gt;(&lt;SPAN class=""&gt;e&lt;/SPAN&gt;, &lt;SPAN class=""&gt;exc_info&lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt;True&lt;/SPAN&gt;)
            &lt;SPAN class=""&gt;return&lt;/SPAN&gt; &lt;SPAN class=""&gt;None&lt;/SPAN&gt;, &lt;SPAN class=""&gt;None&lt;/SPAN&gt;
        &lt;SPAN class=""&gt;return&lt;/SPAN&gt; &lt;SPAN class=""&gt;file_dir&lt;/SPAN&gt;, &lt;SPAN class=""&gt;filename&lt;/SPAN&gt;&lt;/PRE&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;I keep getting this error:&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;The Product License has not been initialized.&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I save a feature set to a shapefile without depending on Arcgis Pro?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 14:54:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649355#M11637</guid>
      <dc:creator>PeterPurnyn</dc:creator>
      <dc:date>2025-09-10T14:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649356#M11638</link>
      <description>&lt;P&gt;If this class is not dependent on Arcpy, you can create a new environment or start a new virtual environment based off of a python installation and use `pip install arcgis` and whatever other modules the class or script depends on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If they workflow does depend on Arcpy, you will need to find an alternative library to use in the workflows, otherwise you will have to use a ArcPro python environment.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 14:59:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649356#M11638</guid>
      <dc:creator>AustinAverill</dc:creator>
      <dc:date>2025-09-10T14:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649360#M11639</link>
      <description>&lt;P&gt;I am using arcgis. I have never used ArcPy.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;from&lt;/SPAN&gt; &lt;SPAN&gt;arcgis&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;geometry&lt;/SPAN&gt; &lt;SPAN&gt;import&lt;/SPAN&gt; &lt;SPAN&gt;Polygon&lt;/SPAN&gt; &lt;SPAN&gt;as&lt;/SPAN&gt; &lt;SPAN&gt;Polygon&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;from&lt;/SPAN&gt; &lt;SPAN&gt;arcgis&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;features&lt;/SPAN&gt; &lt;SPAN&gt;import&lt;/SPAN&gt; &lt;SPAN&gt;Feature&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;FeatureSet&lt;BR /&gt;&lt;BR /&gt;I used it because I thought it wouldn't be dependent on ArcGIS Pro but I keep running into these landmines.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 10 Sep 2025 15:03:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649360#M11639</guid>
      <dc:creator>PeterPurnyn</dc:creator>
      <dc:date>2025-09-10T15:03:32Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649369#M11640</link>
      <description>&lt;P&gt;Have you tried GeoPandas?&lt;/P&gt;&lt;P&gt;&lt;A href="https://geopandas.org/en/stable/docs/user_guide/io.html#writing-spatial-data" target="_blank"&gt;https://geopandas.org/en/stable/docs/user_guide/io.html#writing-spatial-data&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 15:08:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649369#M11640</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2025-09-10T15:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649374#M11641</link>
      <description>&lt;P&gt;I am trying it right now. I am just not familiar enough with the formats to be sure if their shapefiles are compatible with ArcGIS or not. Since ArcGIS outputs 5 files instead of just 1.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 15:14:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649374#M11641</guid>
      <dc:creator>PeterPurnyn</dc:creator>
      <dc:date>2025-09-10T15:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649377#M11642</link>
      <description>&lt;P&gt;The arcgis library is not dependent on Arc Pro, the underlying environment you are running the script in is what is dependent on&amp;nbsp; Arc Pro. If you are using the prepackages arcgispro-py3 environment or any clone of that environment to run your script, you always get that error until you sign in to ArcGIS Pro with a active user account.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The way around this is to install python separately, or another instance of a package manager like Anaconda that is not linked to ArcGIS Pro at all.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 15:18:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649377#M11642</guid>
      <dc:creator>AustinAverill</dc:creator>
      <dc:date>2025-09-10T15:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649408#M11645</link>
      <description>&lt;P&gt;I installed python myself and I am using a conda environment I built from the the one supplied by Arcgis so that must be the issue. The license error only occurs with certain functions even when I provide my own GIS with a working API Key. The rest of the functions don't trigger it.&lt;BR /&gt;&lt;BR /&gt;I have checked my conda environment and will remove arcpy and arcgispro and test again.&lt;BR /&gt;&lt;BR /&gt;Could you happend to let me know the minimal conda environment yaml file to use the arcgis library without running into this issue? Do I just need to remove arcpy and arcgispro? If I try to remove them conda fails to resolve the package.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 15:59:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649408#M11645</guid>
      <dc:creator>PeterPurnyn</dc:creator>
      <dc:date>2025-09-10T15:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649426#M11646</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/799710"&gt;@PeterPurnyn&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;How are you accessing ArcGIS Online in the script?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 16:15:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649426#M11646</guid>
      <dc:creator>Clubdebambos</dc:creator>
      <dc:date>2025-09-10T16:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649427#M11647</link>
      <description>&lt;P&gt;When I try to install ArcGIS fresh on a new Conda environment, it says it will install arcgispro. So this indicates arcgispro is in fact a dependency for arcgis.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(DS) PS ...&amp;gt; conda install arcgis&lt;BR /&gt;Channels:&lt;BR /&gt;- esri&lt;BR /&gt;- defaults&lt;BR /&gt;- conda-forge&lt;BR /&gt;Platform: win-64&lt;BR /&gt;Collecting package metadata (repodata.json): done&lt;BR /&gt;Solving environment: done&lt;/P&gt;&lt;P&gt;## Package Plan ##&lt;/P&gt;&lt;P&gt;environment location: ...\AppData\Local\anaconda3\envs\DS&lt;/P&gt;&lt;P&gt;added / updated specs:&lt;BR /&gt;- arcgis&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The following packages will be downloaded:&lt;/P&gt;&lt;P&gt;package | build&lt;BR /&gt;---------------------------|-----------------&lt;BR /&gt;annotated-types-0.6.0 | py_2 15 KB esri&lt;BR /&gt;arcgis-2.4.1.3 | py312_152 7.1 MB esri&lt;BR /&gt;arcgispro-3.5 | 0 3 KB esri&lt;BR /&gt;....&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 16:21:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649427#M11647</guid>
      <dc:creator>PeterPurnyn</dc:creator>
      <dc:date>2025-09-10T16:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649428#M11648</link>
      <description>&lt;DIV&gt;&lt;SPAN&gt;In this script the only import I have are these:&lt;BR /&gt;from&lt;/SPAN&gt; &lt;SPAN&gt;arcgis&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;geometry&lt;/SPAN&gt; &lt;SPAN&gt;import&lt;/SPAN&gt; &lt;SPAN&gt;Polygon&lt;/SPAN&gt; &lt;SPAN&gt;as&lt;/SPAN&gt; &lt;SPAN&gt;Polygon&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;from&lt;/SPAN&gt; &lt;SPAN&gt;arcgis&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;features&lt;/SPAN&gt; &lt;SPAN&gt;import&lt;/SPAN&gt; &lt;SPAN&gt;Feature&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;FeatureSet&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;I do not use a GIS.&lt;/DIV&gt;</description>
      <pubDate>Wed, 10 Sep 2025 16:22:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649428#M11648</guid>
      <dc:creator>PeterPurnyn</dc:creator>
      <dc:date>2025-09-10T16:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649432#M11650</link>
      <description>&lt;P&gt;When I call arcgis through pip or through `conda install -c esri arcgis` I do not get the arcgispro-3.5 package anywhere in the plan or build or upon install. What versions of things are you running?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 16:38:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649432#M11650</guid>
      <dc:creator>AustinAverill</dc:creator>
      <dc:date>2025-09-10T16:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649433#M11651</link>
      <description>&lt;P&gt;A Shapefile will always have a minimum of 3 files the .shp, .dbf, and .shx. Plus a .prj for projecting to real world coordinates in a GIS. You can most definitely use a Shapefile that has been generated by GeoPandas in ArcGIS.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 16:40:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649433#M11651</guid>
      <dc:creator>Clubdebambos</dc:creator>
      <dc:date>2025-09-10T16:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649436#M11652</link>
      <description>&lt;P&gt;I am running python 3.11.8 but it's not a requirement.&lt;BR /&gt;I have arcgis pro 3.3 installed, but I am trying to move away from that.&lt;BR /&gt;My current environment has&amp;nbsp; arcgis=2.3.0=py311_6408&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;When I try using&amp;nbsp;&lt;SPAN&gt;`conda install -c esri arcgis' it adds arcgispro.&lt;BR /&gt;&lt;BR /&gt;I will try to install with pip and get back to you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 16:48:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649436#M11652</guid>
      <dc:creator>PeterPurnyn</dc:creator>
      <dc:date>2025-09-10T16:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative way to save Feature Set to Shapefile?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649437#M11653</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/799710"&gt;@PeterPurnyn&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Do you get the same issue with the code below? Just set a folder below.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from arcgis.features import FeatureSet, Feature

## dictionary definition a feature
f_dict = {
    "geometry": {
        "x": -8238318.738276444, "y": 4970309.724235498,
        "spatialReference": {
            "wkid": 102100, "latestWkid": 3857}
        },
    "attributes": {
        "Incident_Type": "Structural-Sidewalk Collapse",
        "Location": "927 Broadway",
        "Borough": "Manhattan",
        "Closed_Date": None,
        "Latitude": 40.7144215406227,
        "Longitude": -74.0060763804198
    }
}

# create a Feature object
f = Feature.from_dict(f_dict)

# create a FeatureSet object
fs = FeatureSet(features=[f])

## set the output folder
folder = r"C:\path\to\output\folder"

## save as a shapefile
fs.save(
    save_location=folder,
    out_name="test.shp"
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 16:54:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/alternative-way-to-save-feature-set-to-shapefile/m-p/1649437#M11653</guid>
      <dc:creator>Clubdebambos</dc:creator>
      <dc:date>2025-09-10T16:54:40Z</dc:date>
    </item>
  </channel>
</rss>

