<?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: Error 000210 and 000354 when running Union analysis in a Python script.  in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248213#M19190</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the city?&amp;nbsp; Maybe it is a Unicode character issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Jan 2020 14:35:31 GMT</pubDate>
    <dc:creator>JoshuaBixby</dc:creator>
    <dc:date>2020-01-22T14:35:31Z</dc:date>
    <item>
      <title>Error 000210 and 000354 when running Union analysis in a Python script.</title>
      <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248209#M19186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone! I've come across an issue that has completely stumped our entire organization. I'm currently working through the issue with ESRI support (who also seems stumped) as well but wanted to see if the broader community had any experience with this issue as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a python script that compares two cities and extracts the differences and doctors them up a bit for project standards. Naturally, the first stage of the script is calls for a union. On the first set of cities that I wanted to compare, I got the following error:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;BR /&gt;PS Microsoft.PowerShell.Core\FileSystem::\\havc.local\misc\GIS\Regional\Boundary and Annexation Survey (BAS)\2020 BAS&amp;gt; python BASupdate.py&lt;BR /&gt;If the city is two words, do not add a space.&lt;/P&gt;&lt;P&gt;Enter city:&lt;BR /&gt;Aiken&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Input Folder: \\havc.local\misc\GIS\Regional\Boundary and Annexation Survey (BAS)\2020 BAS\Aiken&lt;BR /&gt;MXD Path: \\havc.local\misc\GIS\Regional\Boundary and Annexation Survey (BAS)\2020 BAS\Aiken\AikenBAS.mxd&lt;BR /&gt;env.workspace: \\havc.local\misc\GIS\Regional\Boundary and Annexation Survey (BAS)\2020 BAS\Aiken\Aiken_2020.gdb&lt;BR /&gt;Creating the change polygons...&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt; File "BASupdate.py", line 56, in &amp;lt;module&amp;gt;&lt;BR /&gt; arcpy.Union_analysis([censusData, havcData], unionFC)&lt;BR /&gt; File "C:\Program Files (x86)\ArcGIS\Desktop10.5\ArcPy\arcpy\analysis.py", line 628, in Union&lt;BR /&gt; raise e&lt;BR /&gt;arcgisscripting.ExecuteError: ERROR 000210: Cannot create output \\havc.local\misc\GIS\Regional\Boundary and Annexation Survey (BAS)\2020 BAS\Aiken\Aiken_2020.gdb\union.shp.shp&lt;BR /&gt;ERROR 000354: The name contains invalid characters&lt;BR /&gt;Failed to execute (Union).&lt;/P&gt;&lt;P&gt;PS Microsoft.PowerShell.Core\FileSystem::\\havc.local\misc\GIS\Regional\Boundary and Annexation Survey (BAS)\2020 BAS&amp;gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see, it looks like it is trying to export a shapefile into a geodatabase, but that is not what the code is telling it to do at all. Here is the entire code snippet up until that point:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;import os&lt;BR /&gt;import sys&lt;BR /&gt;import arcpy&lt;BR /&gt;from arcpy import env&lt;BR /&gt;import shutil&lt;BR /&gt;import subprocess&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;# Folder location will need to be changed every year&lt;BR /&gt;# There are two instances of the year in the script. Use the search function to find them.&lt;BR /&gt;basFolder = '\\\\havc.local\\misc\\GIS\\Regional\\Boundary and Annexation Survey (BAS)\\2020 BAS\\'&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;print "If the city is two words, do not add a space.\n"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;# user to input the city name for the script&lt;BR /&gt;userInput = raw_input('Enter city:\n')&lt;BR /&gt;inputFolder = os.path.join(basFolder, userInput)&lt;BR /&gt;basReturnDirectory = os.path.join(basFolder, userInput + '\\BASReturn')&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;# check if folder exists&lt;BR /&gt;if os.path.exists(inputFolder):&lt;/P&gt;&lt;P&gt;print "\n"&lt;BR /&gt; # print out the input folder as specified by the user&lt;BR /&gt; print "Input Folder: " + inputFolder&lt;/P&gt;&lt;P&gt;# create BASReturn folder for final deliverables&lt;BR /&gt; if not os.path.exists(basReturnDirectory):&lt;BR /&gt; os.makedirs(basReturnDirectory)&lt;/P&gt;&lt;P&gt;# set the environment to list the mxds&lt;BR /&gt; arcpy.env.workspace = inputFolder&lt;/P&gt;&lt;P&gt;for file in arcpy.ListFiles("*.mxd"):&lt;/P&gt;&lt;P&gt;mxd_path = os.path.join(inputFolder, file)&lt;BR /&gt; print "MXD Path: " + mxd_path&lt;/P&gt;&lt;P&gt;# reset the environment to the database&lt;BR /&gt; env.workspace = inputFolder + '\\' + userInput + '_2020.gdb'&lt;BR /&gt; print "env.workspace: " + env.workspace&lt;BR /&gt; # map variables&lt;BR /&gt; mxd = arcpy.mapping.MapDocument(mxd_path)&lt;BR /&gt; df = arcpy.mapping.ListDataFrames(mxd, "*")[0]&lt;BR /&gt; havcData = arcpy.mapping.ListLayers(mxd, "HavcData", df)&lt;BR /&gt; censusData = arcpy.mapping.ListLayers(mxd, "CensusData", df)&lt;BR /&gt; unionFC = "union"&lt;BR /&gt; union_m2s = "union_multisingle"&lt;/P&gt;&lt;P&gt;# create the change polygons&lt;BR /&gt; print "Creating the change polygons..."&lt;/P&gt;&lt;P&gt;arcpy.Union_analysis([censusData, havcData], unionFC)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;It seems to not be recognizing the env.workspace as being a geodatabase for some reason.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;As if that wasn't strange enough, I decided to try the tool on a different city and it worked flawlessly. That city's polygon's came out of the same feature classes that the one that failed did as well. Does anyone have any suggestions on what may be causing this? If I can provide any more information, please let me know! Thanks so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2020 16:31:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248209#M19186</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2020-01-17T16:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000210 and 000354 when running Union analysis in a Python script.</title>
      <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248210#M19187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;Cannot create output \\havc.local\misc\GIS\Regional\Boundary and Annexation Survey (BAS)\2020 BAS\Aiken\Aiken_2020.gdb\union.shp.shp&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;periods, spaces, brackets also there are single backslashes in the path name and the workspace is indeed a geodatabase, but the output featureclass(?) is a shapefile (?) with a double .shp.shp extension.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;You can't test on a simple folder can you?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;also...&amp;nbsp;&amp;nbsp; &amp;nbsp;"\union.shp.shp" yields a "unicode" error in python since \u is reserved... you could try renaming it so it doesn't begin with an a, b, t, g (plus a few others).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;Path names and filenames are now complicated in the world of unicode&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2020 16:50:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248210#M19187</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2020-01-17T16:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000210 and 000354 when running Union analysis in a Python script.</title>
      <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248211#M19188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I may have had a breakthrough. I'm still testing, but I think the issue was a corrupt file geodatabase. My train of thought was that it seemed to be trying to export a .shp file into a file geodatabse, thus it must not recognize that the workspace is a file geodatabase (despite) having the .gdb extension. So I created a brand new, empty file gdb and hardcoded that as the workspace and bam. Ran flawlessly. That leaves a new mystery, however. Why did multiple (brand new) file geodatabases get corrupted every time I ran through the workflow leading up to the script for this one city, but not another? I started the workflow from scratch several times with completely new data, and each time led to the same results. Very strange!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2020 17:14:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248211#M19188</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2020-01-17T17:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000210 and 000354 when running Union analysis in a Python script.</title>
      <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248212#M19189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I have confirmed that it is indeed an issue with the workspace. If I replace this line:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;SPAN&gt;env.workspace = inputFolder + '\\' + userInput + '_2020.gdb'&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;with a hardcoded test geodatabase, the script runs perfectly. I just can't figure out why this issue is only occuring for one particular city. It seems like if it is a workspace problem, then it should affect all cities. I'm genuinely stumped.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2020 13:33:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248212#M19189</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2020-01-22T13:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000210 and 000354 when running Union analysis in a Python script.</title>
      <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248213#M19190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the city?&amp;nbsp; Maybe it is a Unicode character issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2020 14:35:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248213#M19190</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-01-22T14:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000210 and 000354 when running Union analysis in a Python script.</title>
      <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248214#M19191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Matt did you explore my comment about parts of paths that begins with certain letters?&lt;/P&gt;&lt;P&gt;Like&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;a, b, t, g&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;they yield unicode errors.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="string token"&gt;"\aplace"&lt;/SPAN&gt;

&lt;SPAN class="string token"&gt;'\x07place'&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:21:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248214#M19191</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-11T12:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000210 and 000354 when running Union analysis in a Python script.</title>
      <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248215#M19192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Holy cow. That was it. Replaced the first letter with a P since I ran the tool successfully on a city that started with P previously and it ran. One thing I still don't quite understand, however is that this tool worked the last several years using the same cities. The unicode character didn't apparently become an issue until this year. The script hasn't changed at all aside from replacing 2019 with 2020. Can you think of what might have caused it to all of a sudden become a problem now?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;More importantly, is there a way I can prevent this? I'm not familiar with unicode at all (I'm just barely above familiar with python. Lol). So how can I ensure that it is not going to use unicode for certain user inputs that just happen to start with a unicode character?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2020 15:10:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248215#M19192</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2020-01-22T15:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000210 and 000354 when running Union analysis in a Python script.</title>
      <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248216#M19193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;switching from arcmap to Pro would do it since the python versions changes and more unicode issues began to surface.&lt;/P&gt;&lt;P&gt;To mitigate this you need to provide paths in 1 of 3 ways&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;double backslashes&amp;nbsp; "c:\\A_folder\\agdb.gdb"&lt;/LI&gt;&lt;LI&gt;raw encoding (little r goes a long way)&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;r"c:\A_folder\agdb.gdb"&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;forward slashes&amp;nbsp;&amp;nbsp;&amp;nbsp;"c:/A_folder/agdb.gdb"&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;there are combinations of characters that translate to non-visible characters in unicode so what you see isn't necessarily what is there&lt;/LI&gt;&lt;LI&gt;\t, \b, \a are a couple of the obvious ... but I will leave that for you to explore&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2020 16:41:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248216#M19193</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2020-01-22T16:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000210 and 000354 when running Union analysis in a Python script.</title>
      <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248217#M19194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The goal for next year is to have the scripts working in Pro, however we have not had time to make the change this year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Given that the workspace, is a concatenation of variables and strings, how can I make this work? The segment of code causing the problem is below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;env.workspace = inputFolder + '\\' + userInput + '_2020.gdb'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;Specifically, the '\\' + userInput was causing a problem when combined with certain characters as you pointed out. changing the userInput variable to something that started with a 'P' fixed the problem. But how can I account for this in the code and ensure that it is looking at the whole workspace as one file path?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2020 16:56:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248217#M19194</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2020-01-22T16:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000210 and 000354 when running Union analysis in a Python script.</title>
      <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248218#M19195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;userInput = "hello"&lt;/P&gt;&lt;P&gt;inputFolder = r"{}\{}_2020.gdb".format(r"c:\SomeFolder", userInput)&lt;/P&gt;&lt;P&gt;inputFolder&lt;BR /&gt;'c:\\SomeFolder\\hello_2020.gdb'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;raw encoding and python mini-format language&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2020 18:29:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248218#M19195</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2020-01-22T18:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000210 and 000354 when running Union analysis in a Python script.</title>
      <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248219#M19196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suggest you don't build OS paths yourself but utilize the built-in Python functionality for this purpose: &lt;A class="link-titled" href="https://docs.python.org/3/library/os.path.html#os.path.join" title="https://docs.python.org/3/library/os.path.html#os.path.join"&gt;os.path.join — Common pathname manipulations — Python 3.8.1 documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2020 18:34:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248219#M19196</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-01-22T18:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000210 and 000354 when running Union analysis in a Python script.</title>
      <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248220#M19197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmmmm. Well, I attempted to use this format and it returned the same error (trying to export union.shp.shp). Here is how I formatted it:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;userInput = raw_input('Enter city:\n')&lt;/P&gt;&lt;P&gt;basFolder = '\\\\mgrc.local\\misc\\GIS\\Regional\\Boundary and Annexation Survey (BAS)\\2020 BAS\\'&lt;/P&gt;&lt;P&gt;inputFolder = r"{}\{}".format(basFolder, userInput)&lt;/P&gt;&lt;P&gt;env.workspace = r"{}\{}_2020.gdb".format(inputFolder,userInput)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far the only thing that has worked is changing the name during the user input portion of the script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2020 19:44:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248220#M19197</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2020-01-22T19:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: Error 000210 and 000354 when running Union analysis in a Python script.</title>
      <link>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248221#M19198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I actually attempted this already. Unless I did something wrong (which is highly probable!) it did not work. I can't remember what the error returned was, but I think that the gist was that os.path.join&amp;nbsp; won't take a list. There were 3 parts to the file name that I needed to create.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2020 20:03:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-000210-and-000354-when-running-union/m-p/248221#M19198</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2020-01-22T20:03:33Z</dc:date>
    </item>
  </channel>
</rss>

