Created
March 6, 2019 22:50
-
-
Save pdbartsch/436c329ca2621de1853184278b44ae55 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# expression: | |
sqft_to_acres(!Shape_Area!) | |
# code block: | |
def sqft_to_acres(area): | |
return round((area / 43560),2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment