Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Esri Phoenix Dev Meetup 2011- GIS: You've Come a Long Way Baby

James Fee
February 10, 2011

Esri Phoenix Dev Meetup 2011- GIS: You've Come a Long Way Baby

James Fee

February 10, 2011
Tweet

More Decks by James Fee

Other Decks in Technology

Transcript

  1. H

  2. CAD

  3. Scripting With GIS • AML • SML • Avenue •

    Visual Basic for Applications *
  4. Scripting With GIS • AML • SML • Avenue •

    Visual Basic for Applications * • VBScript
  5. Scripting With GIS • AML • SML • Avenue •

    Visual Basic for Applications * • VBScript • JavaScript
  6. Scripting With GIS • AML • SML • Avenue •

    Visual Basic for Applications * • VBScript • JavaScript • Flex
  7. Scripting With GIS • AML • SML • Avenue •

    Visual Basic for Applications * • VBScript • JavaScript • Flex • ColdFusion
  8. Scripting With GIS • AML • SML • Avenue •

    Visual Basic for Applications * • VBScript • JavaScript • Flex • ColdFusion • Python
  9. Python Scripting With ArcPy import  arcpy   from  arcpy  import

     env   env.workspace  =  "c:/workspace"   #  variables
 in_features  =  "soils.shp"   clip_features  =  "study_boundary.shp"   out_feature_class  =  "c:/workspace/output/study_area_soils.shp"   xy_tolerance  =  ""   #  Execute  Clip   arcpy.Clip_analysis(in_features,  clip_features,
 out_feature_class,  xy_tolerance)