<?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: What means: TypeError: 'Row' object does not support indexing ??? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598934#M46857</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;setValue is replaced by updateRow, I can't find reference to setValue in the new data access cursors...I rarely use them but the error says that you are trying to use a setValue method on a list object, suggesting that row is a list ... you need to define the rows to use in this line&lt;/P&gt;&lt;P&gt;with arcpy.da.UpdateCursor(input_shp,[&lt;SPAN class="string"&gt;'FID',&lt;SPAN class="string"&gt;'SHAPE@'&lt;/SPAN&gt;])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;which you haven't, and then reference the column by an offset number ie row[0] would be the FID field and row[1] the SHAPE@ field as in the example I sent you.&lt;BR /&gt;Maybe someone who uses 'cursors' will weigh in...I have pretty well switched over to numpy arrays should I have the rare need to work with attributes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jan 2015 12:35:14 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2015-01-29T12:35:14Z</dc:date>
    <item>
      <title>What means: TypeError: 'Row' object does not support indexing ???</title>
      <link>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598927#M46850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;rows1 = arcpy.SearchCursor(fc, ["SHAPE@"])
extents = []
for row1 in rows1:
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; ext = row1[0].extent
&amp;nbsp;&amp;nbsp;&amp;nbsp; extents.append(row1[0].extent)
&amp;nbsp;&amp;nbsp;&amp;nbsp; print(extents)
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:43:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598927#M46850</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2021-12-12T01:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: What means: TypeError: 'Row' object does not support indexing ???</title>
      <link>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598928#M46851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Examine this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
input_shp = 'c:/folder/you_file_here.shp'
arr = arcpy.Array()
with arcpy.da.SearchCursor(input_shp,['FID','SHAPE@']) as cur:
&amp;nbsp; extents = [] 
&amp;nbsp; for row in cur:
&amp;nbsp;&amp;nbsp;&amp;nbsp; ext = row[1].extent
&amp;nbsp;&amp;nbsp;&amp;nbsp; p0 = ext.lowerLeft; p1 = ext.upperRight
&amp;nbsp;&amp;nbsp;&amp;nbsp; print('Extent of shape... {}: '.format(row[0]))
&amp;nbsp;&amp;nbsp;&amp;nbsp; print(' X min/max&amp;nbsp; {}, {}'.format(ext.XMin,ext.XMax))
&amp;nbsp;&amp;nbsp;&amp;nbsp; print(' Y min/max&amp;nbsp; {}, {}'.format(ext.YMin,ext.YMax))
&amp;nbsp;&amp;nbsp;&amp;nbsp; arr.add(p0)
&amp;nbsp;&amp;nbsp;&amp;nbsp; arr.add(p1)
mp = arcpy.Multipoint(arr)
print('Extent of all {}'.format(mp.extent))&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:43:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598928#M46851</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T01:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: What means: TypeError: 'Row' object does not support indexing ???</title>
      <link>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598929#M46852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 10:42:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598929#M46852</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2015-01-28T10:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: What means: TypeError: 'Row' object does not support indexing ???</title>
      <link>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598930#M46853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats what I have so far with the help of dan and xander:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The goal is to create an oldschool image catalog as dbf, because we use a software which can't read the new ones.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os, math
from arcpy import env
Fgdb = r"R:\Karto\Bierer2014\Datenabgabe\20150113_Brandt\raster\RasterCatalog.gdb"
arcpy.env.workspace = r"R:\Karto\Bierer2014\Datenabgabe\20150113_Brandt\raster\RasterCatalog.gdb"
# Ausgabepfad = (r"R:\Karto\Bierer2014\Datenabgabe\20150113_Brandt\raster").strip()
Ausgabepfad = r"R:\Karto\Bierer2014\Datenabgabe\20150113_Brandt\raster"
ext = ".jpg"
arcpy.AddField_management(Ausgabepfad + "\Orthos_Nummern.shp", "IMAGE", "TEXT", 100) # , "", "", "refcode", "NULLABLE", "REQUIRED")

ext = ".jpg"&amp;nbsp; 
fc = os.path.join(Ausgabepfad, "Orthos_Nummern.shp")&amp;nbsp; 
fld_oid = "OBJECT_ID" # or: arcpy.Describe(fc).OIDFieldName&amp;nbsp; 
fld_out = "IMAGE" # should exist in shapefile
fld_xmin = "XMIN"
arcpy.AddField_management(fc, "XMIN", "LONG", 7) # , "", "", "refcode", "NULLABLE", "REQUIRED")
arcpy.AddField_management(fc, "XMAX", "LONG", 7) # , "", "", "refcode", "NULLABLE", "REQUIRED")
arcpy.AddField_management(fc, "YMIN", "LONG", 7) # , "", "", "refcode", "NULLABLE", "REQUIRED")
arcpy.AddField_management(fc, "YMAX", "LONG", 7) # , "", "", "refcode", "NULLABLE", "REQUIRED")

input_shp = fc
arr = arcpy.Array()&amp;nbsp; 
with arcpy.da.UpdateCursor(input_shp,['FID','SHAPE@']) as cur:&amp;nbsp; 
&amp;nbsp; extents = []&amp;nbsp; 
&amp;nbsp; for row in cur:&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; ext = row[1].extent&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; p0 = ext.lowerLeft; p1 = ext.upperRight&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; print('Extent of shape... {}: '.format(row[0]))&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; print(' X min/max&amp;nbsp; {}, {}'.format(ext.XMin,ext.XMax))
&amp;nbsp;&amp;nbsp;&amp;nbsp; Xmin = round((ext.XMin), 0)
&amp;nbsp;&amp;nbsp;&amp;nbsp; print (Xmin)
&amp;nbsp;&amp;nbsp;&amp;nbsp; print_attributes(row)
&amp;nbsp;&amp;nbsp;&amp;nbsp; row.setValue(fld_xmin, Xmin)
&amp;nbsp;&amp;nbsp;&amp;nbsp; print ( ' X min, {}'.format(ext.XMin))
&amp;nbsp;&amp;nbsp;&amp;nbsp; curs.updateRow(row)
&amp;nbsp;&amp;nbsp;&amp;nbsp; print(' Y min/max&amp;nbsp; {}, {}'.format(ext.YMin,ext.YMax))&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; arr.add(p0)&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; arr.add(p1)&amp;nbsp; 
mp = arcpy.Multipoint(arr)&amp;nbsp; 
print('Extent of all {}'.format(mp.extent)) 
rows = arcpy.UpdateCursor(fc)&amp;nbsp; 
for row in rows:
&amp;nbsp;&amp;nbsp;&amp;nbsp; fld_oid1 = int(row.getValue(fld_oid))
&amp;nbsp;&amp;nbsp;&amp;nbsp; int_fld_oid1 = str(fld_oid1)
&amp;nbsp;&amp;nbsp;&amp;nbsp; # path = os.path.join(Ausgabepfad, "{0}{1}".format(row.getValue(fld_oid), ext))
&amp;nbsp;&amp;nbsp;&amp;nbsp; path = os.path.join(Ausgabepfad, int_fld_oid1 + ext)
&amp;nbsp;&amp;nbsp;&amp;nbsp; print (path)
&amp;nbsp;&amp;nbsp;&amp;nbsp; path1 = str("" + path + "")
&amp;nbsp;&amp;nbsp;&amp;nbsp; row.setValue(fld_out, path)
&amp;nbsp;&amp;nbsp;&amp;nbsp; rows.updateRow(row)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:43:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598930#M46853</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2021-12-12T01:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: What means: TypeError: 'Row' object does not support indexing ???</title>
      <link>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598931#M46854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Error message:&lt;/P&gt;&lt;P&gt;File "R:\Karto\zGIS\Python\exportrastercatalog.py", line 49, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; row.setValue(fld_xmin, Xmin)&lt;/P&gt;&lt;P&gt;AttributeError: 'list' object has no attribute 'setValue'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 06:45:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598931#M46854</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2015-01-29T06:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: What means: TypeError: 'Row' object does not support indexing ???</title>
      <link>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598932#M46855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your line numbers are off...any way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; curs.updateRow(row)&amp;nbsp; should be&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cur.updateRow(row)&amp;nbsp;&amp;nbsp;&amp;nbsp; there is no curs in the script you have shown&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;print_attributes(row)&amp;nbsp; this function is define elsewhere?&lt;/P&gt;&lt;P&gt;you seem to be missing old cursors with new cursors, ie using setValue...you should be using updateRow as in the &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#/Accessing_data_using_cursors/002z0000001q000000/"&gt;example here&lt;/A&gt; ie access the field by offset number for the row you are working with&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 10:03:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598932#M46855</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-01-29T10:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: What means: TypeError: 'Row' object does not support indexing ???</title>
      <link>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598933#M46856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;cur.updateRow(row) doesn't work as well ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;# -*- coding: cp1252 -*-
# Export zu rastercatalog.dbf
# Autor Xander Bakker, Dan Patterson - vermurkst JB
import arcpy, os, math
from arcpy import env
Fgdb = r"R:\Karto\Bierer2014\Datenabgabe\20150113_Brandt\raster\RasterCatalog.gdb"
arcpy.env.workspace = r"R:\Karto\Bierer2014\Datenabgabe\20150113_Brandt\raster\RasterCatalog.gdb"
# Ausgabepfad = (r"R:\Karto\Bierer2014\Datenabgabe\20150113_Brandt\raster").strip()
Ausgabepfad = r"R:\Karto\Bierer2014\Datenabgabe\20150113_Brandt\raster"
ext = ".jpg"
## arcpy.AddField_management(Ausgabepfad + "\Orthos_Nummern.shp", "IMAGE", "TEXT", 100) # , "", "", "refcode", "NULLABLE", "REQUIRED")
ext = ".jpg"&amp;nbsp; 
fc = os.path.join(Ausgabepfad, "Orthos_Nummern.shp")&amp;nbsp; 
fld_oid = "OBJECT_ID" # or: arcpy.Describe(fc).OIDFieldName&amp;nbsp; 
fld_out = "IMAGE" # should exist in shapefile
fld_xmin = "XMIN"
arcpy.AddField_management(fc, "XMIN", "LONG", 7) # , "", "", "refcode", "NULLABLE", "REQUIRED")
arcpy.AddField_management(fc, "XMAX", "LONG", 7) # , "", "", "refcode", "NULLABLE", "REQUIRED")
arcpy.AddField_management(fc, "YMIN", "LONG", 7) # , "", "", "refcode", "NULLABLE", "REQUIRED")
arcpy.AddField_management(fc, "YMAX", "LONG", 7) # , "", "", "refcode", "NULLABLE", "REQUIRED")
def print_attributes(obj):
&amp;nbsp;&amp;nbsp;&amp;nbsp; for attr in arr.__dict__:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print attr, getattr(arr, attr)
input_shp = fc
arr = arcpy.Array()&amp;nbsp; 
with arcpy.da.UpdateCursor(input_shp,['FID','SHAPE@']) as cur:&amp;nbsp; 
&amp;nbsp; extents = []&amp;nbsp;&amp;nbsp; 
&amp;nbsp; for row in cur:&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; ext = row[1].extent&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; p0 = ext.lowerLeft; p1 = ext.upperRight&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; print('Extent of shape... {}: '.format(row[0]))&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; print(' X min/max&amp;nbsp; {}, {}'.format(ext.XMin,ext.XMax))
&amp;nbsp;&amp;nbsp;&amp;nbsp; Xmin = round((ext.XMin), 0)
&amp;nbsp;&amp;nbsp;&amp;nbsp; print (Xmin)
&amp;nbsp;&amp;nbsp;&amp;nbsp; print_attributes(row)
&amp;nbsp;&amp;nbsp;&amp;nbsp; row.setValue(fld_xmin, Xmin)
&amp;nbsp;&amp;nbsp;&amp;nbsp; print ( ' X min, {}'.format(ext.XMin))
&amp;nbsp;&amp;nbsp;&amp;nbsp; cur.updateRow(row)
&amp;nbsp;&amp;nbsp;&amp;nbsp; print(' Y min/max&amp;nbsp; {}, {}'.format(ext.YMin,ext.YMax))&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; arr.add(p0)&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; arr.add(p1)&amp;nbsp; 
mp = arcpy.Multipoint(arr)&amp;nbsp; 
print('Extent of all {}'.format(mp.extent))&amp;nbsp; 
##rows = arcpy.UpdateCursor(fc)&amp;nbsp; 
##for row in rows:
##&amp;nbsp;&amp;nbsp;&amp;nbsp; fld_oid1 = int(row.getValue(fld_oid))
##&amp;nbsp;&amp;nbsp;&amp;nbsp; int_fld_oid1 = str(fld_oid1)
##&amp;nbsp;&amp;nbsp;&amp;nbsp; # path = os.path.join(Ausgabepfad, "{0}{1}".format(row.getValue(fld_oid), ext))
##&amp;nbsp;&amp;nbsp;&amp;nbsp; path = os.path.join(Ausgabepfad, int_fld_oid1 + ext)
##&amp;nbsp;&amp;nbsp;&amp;nbsp; print (path)
##&amp;nbsp;&amp;nbsp;&amp;nbsp; path1 = str("" + path + "")
##&amp;nbsp;&amp;nbsp;&amp;nbsp; row.setValue(fld_out, path)
##&amp;nbsp;&amp;nbsp;&amp;nbsp; rows.updateRow(row)&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error:&lt;/P&gt;&lt;P&gt;Extent of shape... 0: &lt;BR /&gt; X min/max&amp;nbsp; 3510999.9998, 3511999.9998&lt;BR /&gt;3511000.0&lt;BR /&gt;_arc_object &amp;lt;geoprocessing array object object at 0x02B88368&amp;gt;&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;&amp;nbsp; File "R:\Karto\zGIS\Python\exportrastercatalog.py", line 43, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; row.setValue(fld_xmin, Xmin)&lt;BR /&gt;AttributeError: 'list' object has no attribute 'setValue'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thought I wold get some information through def print attributes?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:43:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598933#M46856</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2021-12-12T01:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: What means: TypeError: 'Row' object does not support indexing ???</title>
      <link>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598934#M46857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;setValue is replaced by updateRow, I can't find reference to setValue in the new data access cursors...I rarely use them but the error says that you are trying to use a setValue method on a list object, suggesting that row is a list ... you need to define the rows to use in this line&lt;/P&gt;&lt;P&gt;with arcpy.da.UpdateCursor(input_shp,[&lt;SPAN class="string"&gt;'FID',&lt;SPAN class="string"&gt;'SHAPE@'&lt;/SPAN&gt;])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;which you haven't, and then reference the column by an offset number ie row[0] would be the FID field and row[1] the SHAPE@ field as in the example I sent you.&lt;BR /&gt;Maybe someone who uses 'cursors' will weigh in...I have pretty well switched over to numpy arrays should I have the rare need to work with attributes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 12:35:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598934#M46857</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-01-29T12:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: What means: TypeError: 'Row' object does not support indexing ???</title>
      <link>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598935#M46858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In numpy what's wrong about that? How to define the field to write in?&lt;/P&gt;&lt;P&gt;And how to write XMIN, XMAX, YMIN, YMAX in one array and then in the right fields?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;npa = numpy.array(Xmin)&lt;/P&gt;&lt;P&gt;arcpy.da.NumPyArrayToTable(npa, fc, fld_xmin)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TypeError: narray.fields require&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 13:50:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598935#M46858</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2015-01-29T13:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: What means: TypeError: 'Row' object does not support indexing ???</title>
      <link>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598936#M46859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately don't get it:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;dts = {(fld_xmin,fld_xmax),numpy.int}
&amp;nbsp;&amp;nbsp;&amp;nbsp; print (dts)
&amp;nbsp;&amp;nbsp;&amp;nbsp; npa = numpy.array(dts)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.da.NumPyArrayToTable(npa, fcout)&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the sense of the error message:&lt;/P&gt;&lt;P&gt;TypeError: narray.fields require&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:43:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598936#M46859</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2021-12-12T01:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: What means: TypeError: 'Row' object does not support indexing ???</title>
      <link>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598937#M46860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;some numpy basics might help &lt;A href="https://community.esri.com/migration-blogpost/2446"&gt;Numpy Snippets # 2 .... array to table and back again ...&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 10:16:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598937#M46860</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-01-30T10:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: What means: TypeError: 'Row' object does not support indexing ???</title>
      <link>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598938#M46861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Saw it - might be that a weekend helps more &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 11:58:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-means-typeerror-row-object-does-not-support/m-p/598938#M46861</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2015-01-30T11:58:58Z</dc:date>
    </item>
  </channel>
</rss>

