Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
# Name: Ulrich Stroetz (U102778) | |
# Date: 2/17/2013 | |
# Purpose: Add fields | |
# Import system modules | |
import arcpy | |
# Input Feature Class) | |
inputFC = arcpy.GetParameterAsText(0) |
This file contains 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
import arcpy | |
# Get the feature name to work with | |
in_featureclass = arcpy.GetParameterAsText(0) | |
# Set local variables | |
field_Name = "ACRES" | |
field_Type = "DOUBLE" | |
field_Precision = 10 # total number of digits stored | |
field_Scale = 8 # number of decimal places |
This file contains 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
var bikeRacks = | |
{ | |
"type": "FeatureCollection", | |
"generator": "overpass-turbo", | |
"copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.", | |
"timestamp": "2013-10-24T17:13:01Z", | |
"features": [ | |
{ | |
"type": "Feature", | |
"id": "node/297827803", |
NewerOlder