I had this same error so I wrote to ESRI Poland help-desk. Here is an answer:Create new Toolbox in ArcCatalogAdd it to ArcToolboxCopy Multiple Ring Buffer to your new ToolboxRight click -> Properties -> Validation -> EditOpen scriptFind: locale.setlocale(locale.LC_NUMERIC, '')Correct it to: locale.setlocale(locale.LC_NUMERIC, 'C')In my situation it works correctly now. I have ArcGIS 10 SP2 and Windows 7 OS.
I think I have it working now.This was a statement in the original script:codeblock = '''def pullDistance(distL, *fids):return min([i for i, j in zip(distL, fids) if j != -1])'''I changed it to the following:codeblock = '''def pullDistance(distL, *fids):return min([i for i, j in zip(distL, fids) if j == 1])'''and now it seems to be working. Not sure if this fix is universal though.
Hello,I am having problems with Multiple Ring Buffer tool in ArcGIS 10. Not working for me, even for my colleagues. I searched forum, but no help solving my case. After selecting input layer, when you start to define distances following error occures:ERRORupdateParameters Execution Error:Runtime error: 'ascii' codec can't decode byte 0xa0 in position 0: ordinal not in range(128)
When I set my alias to match yours (with the special characters) I am given the following error:[ATTACH]4545[/ATTACH]When I remove the special characters and replace them with EN ascii characters the tool runs fine on my machine (Windows XP SP3, ArcGIS 9.3.1)
I cannot reproduce your problem, but you failed to attached a layer file with the original name. How I performed the process:Open Arc MapAdd shape fileOpen Arc ToolboxOpen Multi Ring BufferSaved results to shape file and set distances to 3 distances in metersCan you create a buffer in general with that layer name?Thanks
Can you post your data and layer file exactly as shown on your screenshot in a zipfile?
I think the name of your layer is causing the problem because you have unsupported characters in your layer's name. Try changing the layer's name to something simple like: "Buffer Layer" and re-run the tool.
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.