As part of a Python script I am trying to pass coordinates into CreateFishnet_management. According to the help file, the syntax for the origin coordinate should be '610433.5 4956420.5'; however, my code throws the following error:
Invalid value type for parameter origin_coord.
Here is part of my script
The print statement returns '610433.5 4956420.5'
I tried reversinig the use of single & double quotes to get "610433.5 4956420.5"
Finally I tried:
No luck.
Any help would be greatly appreciated.
(code formatted)
Invalid value type for parameter origin_coord.
Here is part of my script
Code:
fcFishnet = "C:\\Users\\fastth\\Documents\\Projects\\Eau Claire\\SmallNetTest.shp"
xOrigin = 610433.5
yOrigin = 4956420.5
xOppositeCorner = 610484.5
yOppositeCorne = 4956480.5
plotWidth = 1.5
plotHeight = 5
units = "Feet"
originCoord = "'" + str(xOrigin) + " " + str(yOrigin) + "'"
print originCoord
oppositeCoord = "'" + str(plotWidth) + " " + str(plotHeight) + "'"
#Create the fishnet
arcpy.CreateFishnet_management(fcFishnet, originCoord, originCoord, plotHeight, plotWidth, oppositeCoord, "NO_LABELS", "DEFAULT", "POLYGON")I tried reversinig the use of single & double quotes to get "610433.5 4956420.5"
Finally I tried:
Code:
originCoord = arcpy.Point(xOrigin,yOrigin)Any help would be greatly appreciated.
(code formatted)