Using if statement with ArcPy and GetCount?Efficiently checking for feature overlaps with ArcPy?Rotating and moving polygons to different angles using ModelBuilder/ArcPy?Calculate and Restart Sequential ID for Unique Values in a FieldCount number of group layers or Layers inside group layer using ArcPy?Alternative to 'Editors Merge' feature using ArcPyEditing attribute table with ArcPy?Merge and count adjacent polygons in QGISUsing arcpy.GetCount_management in a logic treeIf/Then Statement in ArcMap to Remove DuplicatesDelete ONLY selected features in ArcMap / ArcPy
Why did Robert pick unworthy men for the White Cloaks?
Arrows inside a commutative diagram using tikzcd
Boss making me feel guilty for leaving the company at the end of my internship
Using if statement with ArcPy and GetCount?
Interview was just a one hour panel. Got an offer the next day; do I accept or is this a red flag?
Jam with honey & without pectin has a saucy consistency always
Will users know a CardView is clickable
How can I find out about the game world without meta-influencing it?
What did the 8086 (and 8088) do upon encountering an illegal instruction?
SFDX force:org:clone not working
ISP is not hashing the password I log in with online. Should I take any action?
What happens when one target of Paradoxical Outcome becomes illegal?
My players want to use called-shots on Strahd
Realistic, logical way for men with medieval-era weaponry to compete with much larger and physically stronger foes
I received a gift from my sister who just got back from
Why are backslashes included in this shell script?
Should I worry about having my credit pulled multiple times while car shopping?
Must a CPU have a GPU if the motherboard provides a display port (when there isn't any separate video card)?
What publication claimed that Michael Jackson died in a nuclear holocaust?
Short story about psychologist analyzing demon
Is it a good security practice to force employees hide their employer to avoid being targeted?
Opposite of "Concerto Grosso"?
Is fission/fusion to iron the most efficient way to convert mass to energy?
Why is it bad to use your whole foot in rock climbing
Using if statement with ArcPy and GetCount?
Efficiently checking for feature overlaps with ArcPy?Rotating and moving polygons to different angles using ModelBuilder/ArcPy?Calculate and Restart Sequential ID for Unique Values in a FieldCount number of group layers or Layers inside group layer using ArcPy?Alternative to 'Editors Merge' feature using ArcPyEditing attribute table with ArcPy?Merge and count adjacent polygons in QGISUsing arcpy.GetCount_management in a logic treeIf/Then Statement in ArcMap to Remove DuplicatesDelete ONLY selected features in ArcMap / ArcPy
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am looking to get a count on the polygonNieghbor and if it has polygons in it then I want to move to the next step MakeFeatureLayer. and If it doesn't have any features I would like it to finish.
Is there any other way to do this?
arcpy.GetCount_management(PolygonNeighbor_TableSelect)
arcpy.AddMessage(arcpy.GetMessages())
if arcpy.GetCount_management(PolygonNeighbor_TableSelect) > 0:
arcpy.MakeFeatureLayer_management(MapUnitPolys, inFeatures_lyr)
else
print "done"
arcpy count
add a comment |
I am looking to get a count on the polygonNieghbor and if it has polygons in it then I want to move to the next step MakeFeatureLayer. and If it doesn't have any features I would like it to finish.
Is there any other way to do this?
arcpy.GetCount_management(PolygonNeighbor_TableSelect)
arcpy.AddMessage(arcpy.GetMessages())
if arcpy.GetCount_management(PolygonNeighbor_TableSelect) > 0:
arcpy.MakeFeatureLayer_management(MapUnitPolys, inFeatures_lyr)
else
print "done"
arcpy count
add a comment |
I am looking to get a count on the polygonNieghbor and if it has polygons in it then I want to move to the next step MakeFeatureLayer. and If it doesn't have any features I would like it to finish.
Is there any other way to do this?
arcpy.GetCount_management(PolygonNeighbor_TableSelect)
arcpy.AddMessage(arcpy.GetMessages())
if arcpy.GetCount_management(PolygonNeighbor_TableSelect) > 0:
arcpy.MakeFeatureLayer_management(MapUnitPolys, inFeatures_lyr)
else
print "done"
arcpy count
I am looking to get a count on the polygonNieghbor and if it has polygons in it then I want to move to the next step MakeFeatureLayer. and If it doesn't have any features I would like it to finish.
Is there any other way to do this?
arcpy.GetCount_management(PolygonNeighbor_TableSelect)
arcpy.AddMessage(arcpy.GetMessages())
if arcpy.GetCount_management(PolygonNeighbor_TableSelect) > 0:
arcpy.MakeFeatureLayer_management(MapUnitPolys, inFeatures_lyr)
else
print "done"
arcpy count
arcpy count
edited 22 mins ago
PolyGeo♦
54.3k1784253
54.3k1784253
asked 9 hours ago
LbookLbook
164
164
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
All geoprocessing tools produce a Results object. You want the first output of your GetCount
results object. The output will be a string, so you also must convert the string to an integer.
if int (arcpy.GetCount_management(PolygonNeighbor_TableSelect) [0]) > 0:
so would I just replace if arcpy.GetCount_management(PolygonNeighbor_TableSelect) > 0: with if int (arcpy.GetCount_management(PolygonNeighbor_TableSelect) [0]) > 0:
– Lbook
9 hours ago
Correct.You would.
– Emil Brundage
9 hours ago
Now I get an SyntaxError: invalid syntax with else.
– Lbook
9 hours ago
Check your indents.
– Emil Brundage
8 hours ago
1
You're missing the colon as well.else:
– Emil Brundage
7 hours ago
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "79"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f325652%2fusing-if-statement-with-arcpy-and-getcount%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
All geoprocessing tools produce a Results object. You want the first output of your GetCount
results object. The output will be a string, so you also must convert the string to an integer.
if int (arcpy.GetCount_management(PolygonNeighbor_TableSelect) [0]) > 0:
so would I just replace if arcpy.GetCount_management(PolygonNeighbor_TableSelect) > 0: with if int (arcpy.GetCount_management(PolygonNeighbor_TableSelect) [0]) > 0:
– Lbook
9 hours ago
Correct.You would.
– Emil Brundage
9 hours ago
Now I get an SyntaxError: invalid syntax with else.
– Lbook
9 hours ago
Check your indents.
– Emil Brundage
8 hours ago
1
You're missing the colon as well.else:
– Emil Brundage
7 hours ago
add a comment |
All geoprocessing tools produce a Results object. You want the first output of your GetCount
results object. The output will be a string, so you also must convert the string to an integer.
if int (arcpy.GetCount_management(PolygonNeighbor_TableSelect) [0]) > 0:
so would I just replace if arcpy.GetCount_management(PolygonNeighbor_TableSelect) > 0: with if int (arcpy.GetCount_management(PolygonNeighbor_TableSelect) [0]) > 0:
– Lbook
9 hours ago
Correct.You would.
– Emil Brundage
9 hours ago
Now I get an SyntaxError: invalid syntax with else.
– Lbook
9 hours ago
Check your indents.
– Emil Brundage
8 hours ago
1
You're missing the colon as well.else:
– Emil Brundage
7 hours ago
add a comment |
All geoprocessing tools produce a Results object. You want the first output of your GetCount
results object. The output will be a string, so you also must convert the string to an integer.
if int (arcpy.GetCount_management(PolygonNeighbor_TableSelect) [0]) > 0:
All geoprocessing tools produce a Results object. You want the first output of your GetCount
results object. The output will be a string, so you also must convert the string to an integer.
if int (arcpy.GetCount_management(PolygonNeighbor_TableSelect) [0]) > 0:
answered 9 hours ago
Emil BrundageEmil Brundage
10.1k11646
10.1k11646
so would I just replace if arcpy.GetCount_management(PolygonNeighbor_TableSelect) > 0: with if int (arcpy.GetCount_management(PolygonNeighbor_TableSelect) [0]) > 0:
– Lbook
9 hours ago
Correct.You would.
– Emil Brundage
9 hours ago
Now I get an SyntaxError: invalid syntax with else.
– Lbook
9 hours ago
Check your indents.
– Emil Brundage
8 hours ago
1
You're missing the colon as well.else:
– Emil Brundage
7 hours ago
add a comment |
so would I just replace if arcpy.GetCount_management(PolygonNeighbor_TableSelect) > 0: with if int (arcpy.GetCount_management(PolygonNeighbor_TableSelect) [0]) > 0:
– Lbook
9 hours ago
Correct.You would.
– Emil Brundage
9 hours ago
Now I get an SyntaxError: invalid syntax with else.
– Lbook
9 hours ago
Check your indents.
– Emil Brundage
8 hours ago
1
You're missing the colon as well.else:
– Emil Brundage
7 hours ago
so would I just replace if arcpy.GetCount_management(PolygonNeighbor_TableSelect) > 0: with if int (arcpy.GetCount_management(PolygonNeighbor_TableSelect) [0]) > 0:
– Lbook
9 hours ago
so would I just replace if arcpy.GetCount_management(PolygonNeighbor_TableSelect) > 0: with if int (arcpy.GetCount_management(PolygonNeighbor_TableSelect) [0]) > 0:
– Lbook
9 hours ago
Correct.You would.
– Emil Brundage
9 hours ago
Correct.You would.
– Emil Brundage
9 hours ago
Now I get an SyntaxError: invalid syntax with else.
– Lbook
9 hours ago
Now I get an SyntaxError: invalid syntax with else.
– Lbook
9 hours ago
Check your indents.
– Emil Brundage
8 hours ago
Check your indents.
– Emil Brundage
8 hours ago
1
1
You're missing the colon as well.
else:
– Emil Brundage
7 hours ago
You're missing the colon as well.
else:
– Emil Brundage
7 hours ago
add a comment |
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f325652%2fusing-if-statement-with-arcpy-and-getcount%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown