मैं एक filegeodatabase के अंदर 1 मिलियन यादृच्छिक रूप से उत्पन्न बिंदुओं के साथ एक उदाहरण का उपयोग कर रहा हूं। यहाँ संलग्न है ।
हमें शुरू करने के लिए यहां कुछ कोड दिए गए हैं:
import time
import arcpy
arcpy.env.workspace = "C:\CountTest.gdb"
time.sleep(5) # Let the cpu/ram calm before proceeding!
"""Method 1"""
StartTime = time.clock()
with arcpy.da.SearchCursor("RandomPoints", ["OBJECTID"]) as cursor:
rows = {row[0] for row in cursor}
count = 0
for row in rows:
count += 1
EndTime = time.clock()
print "Finished in %s seconds" % (EndTime - StartTime)
print "%s features" % count
time.sleep(5) # Let the cpu/ram calm before proceeding!
"""Method 2"""
StartTime2 = time.clock()
arcpy.MakeTableView_management("RandomPoints", "myTableView")
count = int(arcpy.GetCount_management("myTableView").getOutput(0))
EndTime2 = time.clock()
print "Finished in %s seconds" % (EndTime2 - StartTime2)
print "%s features" % count
और कुछ प्रारंभिक परिणाम:
>>>
Finished in 6.75540050237 seconds
1000000 features
Finished in 0.801474780332 seconds
1000000 features
>>> =============================== RESTART ===============================
>>>
Finished in 6.56968596918 seconds
1000000 features
Finished in 0.812731769756 seconds
1000000 features
>>> =============================== RESTART ===============================
>>>
Finished in 6.58207512487 seconds
1000000 features
Finished in 0.841122157314 seconds
1000000 features
बड़े, अधिक जटिल डेटासेट की कल्पना करें। SearchCursor अनिश्चित काल तक क्रॉल करेगा।
मैं परिणामों से असंतुष्ट नहीं हूं, हालांकि, हमारे जीआईएस विकास चक्र में बड़े पैमाने पर डेटासाउट मॉड्यूल का उपयोग किया जा रहा है। मैं इस मॉड्यूल के साथ हमारी फ़ंक्शन परिभाषाओं में से कुछ को फिर से बनाना चाह रहा हूं क्योंकि यह मेकटेबल व्यू + गेटकाउंट पद्धति से अधिक लचीला है।