मैं सिर्फ काम के लिए पायथन स्क्रिप्टिंग में आना शुरू कर रहा हूं।
मैं वर्तमान में एक प्रक्रिया को स्वचालित करने के लिए एक स्क्रिप्ट बना रहा हूं।
मूल रूप से, यह उपयोगकर्ता को क्लाइंट नाम पूछता है, यदि उपलब्ध हो तो एक प्रोजेक्शन मिलता है, क्लाइंट पर निर्देशिका बनाता है: क्लाइंट के लिए ड्राइव बनाता है, क्लाइंट के लिए विशिष्ट फाइल जियोडेटाबेस बनाता है, आवश्यक डेटासेट बनाता है, और क्लाइंट डेटा के लिए विशिष्ट वर्ग बनाता है। आखिरकार, यह प्रत्येक फ़ीचर वर्ग और शायद कुछ अन्य चीज़ों के लिए आवश्यक फ़ील्ड भी जोड़ देगा।
मैंने इसे वास्तव में आर्केप के लिए पायथन स्क्रिप्टिंग के उचित शिष्टाचार को नहीं जानना शुरू किया। लेकिन जो मैंने अब तक बनाया है वह केवल आर्कपैक के बाहर चलेगा, मुझे विश्वास है।
क्या यह स्वीकार्य है?
इसके बजाय उपयोगकर्ता इनपुट मिलने के बजाय arcpy.getparamaterastext (), जिसके बारे में मुझे अभी पता चला है, मैं raw_input () का उपयोग कर रहा हूं।
यह ठीक है?
यह काम करता है, मुझे यकीन नहीं है कि यह स्क्रिप्टिंग करने का एक उचित तरीका है।
यहाँ अब तक का कोड मेरे पास है।
import sys
import arcpy
import os
#Records name of the client
client = raw_input("Enter the name of the client: (letters and underscores only) \n")
#Records filepath of client to be created
clientpath = "C:/" + client
#Inquires if projection file exists
projection = raw_input("Is there a .prj or .shp available with correct projection? Y or N \n")
#Records the projection location if available
if projection.upper() == "Y":
spatialr = raw_input("Drag the .prj or .shp here to record the filepath \n")
nspatialr = spatialr.replace('"', "")
elif projection.upper() == "N":
alert = raw_input("You must add the spatial reference manually, hit enter to continue. \n")
elif projection.upper() != "N" or "Y":
exit = raw_input("That is not a valid response. Try again. \n")
sys.exit()
#Checks if client folder exists; if not, creates one
if not os.path.exists(clientpath):
os.makedirs(clientpath)
#Variable for file geodatabase location
FGBpath = clientpath + "/" + client + ".gdb"
#Checks if client file geodatabase exists; if not, creates one
if not arcpy.Exists(FGBpath):
arcpy.CreateFileGDB_management(clientpath, client)
#Variable for dataset location
FDatasetpath = clientpath + "/" + client + ".gdb" + "/Network"
#Checks if dataset exists; if not, creates one
if not arcpy.Exists(FDatasetpath):
if projection.upper() == "Y":
arcpy.CreateFeatureDataset_management(FGBpath, "Network", nspatialr)
elif projection.upper() == "N":
arcpy.CreateFeatureDataset_management(FGBpath, "Network")
#Variable for cable feature class location
FCcablepath = clientpath + "/" + client + ".gdb" + "/Network" + "/cable"
#Checks if cable feature class exists; if not, creates one
if not arcpy.Exists(FCcablepath):
if projection.upper() == "Y":
arcpy.CreateFeatureclass_management (FDatasetpath, "cable", "POLYLINE", "", "", "", nspatialr)
elif projection.upper() == "N":
arcpy.CreateFeatureclass_management (FDatasetpath, "cable", "POLYLINE")
#Variable for splice point feature class location
FCsplicepath = clientpath + "/" + client + ".gdb" + "/Network" + "/splice_point"
#Checks if splice point feature class exists; if not, creates one
if not arcpy.Exists(FCsplicepath):
if projection == 'Y' or projection == 'y':
arcpy.CreateFeatureclass_management (FDatasetpath, "splice_point", "POINT", "", "", "", nspatialr)
elif projection == 'N' or projection == 'n':
arcpy.CreateFeatureclass_management (FDatasetpath, "splice_point", "POINT")
exit = raw_input("\n\n File geodatabase, dataset, and the cable \n and splice point feature classes successfully created. \n\n Hit enter to exit.")
मुझे अभी भी कुछ काम करना है, जैसे कि आवश्यक क्षेत्रों को जोड़ना।