- task one
- task two
#hello I said, ##hello.
what are you trying to say?
| import arcpy | |
| fs = arcpy.FeatureSet() | |
| #access first stream feature | |
| fsinput = arcpy.GetParameter(0) | |
| fieldnames = ["SHAPE@X","SHAPE@Y"] | |
| myCursorInput = arcpy.da.SearchCursor(fsinput,fieldnames,"") | |
| row=myCursorInput.next() |
| <style> #bottomContent{ | |
| background:transparent !important; | |
| border-radius:0px !important; | |
| -webkit-border-radius:0px !important; | |
| box-shadow:none !important; | |
| border-bottom:0px !important; | |
| -webkit-box-shadow:none !important; | |
| filter:(enabled=false) !important; | |
| } |
| import arcpy | |
| # prints True | |
| print arcpy.Exists("c:/data/PortlandData.gdb/streets") | |
| # prints NAD_1983_StatePlane_Oregon_North_FIPS_3601_Feet | |
| sr = arcpy.Describe("c:/data/PortlandData.gdb/streets").spatialReference | |
| print sr.name | |
| # prints Available |
| import arcpy | |
| # prints True or False | |
| print arcpy.Exists("c:/data/Portland.gdb/streets") | |
| # prints NAD_1983_StatePlane_Oregon_North_FIPS_3601_Feet | |
| sr = arcpy.Describe("c:/data/Portland.gdb/streets").spatialReference | |
| print sr.name | |
| # prints Available |
#hello I said, ##hello.
what are you trying to say?