Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brendancol/sublime-arcpy-snippets
Collection of Python Sublime Text snippets related to esri's arcpy library
https://github.com/brendancol/sublime-arcpy-snippets
Last synced: 24 days ago
JSON representation
Collection of Python Sublime Text snippets related to esri's arcpy library
- Host: GitHub
- URL: https://github.com/brendancol/sublime-arcpy-snippets
- Owner: brendancol
- Created: 2013-08-14T18:35:47.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-13T03:53:37.000Z (about 11 years ago)
- Last Synced: 2024-04-16T04:23:19.905Z (7 months ago)
- Language: Python
- Homepage:
- Size: 112 KB
- Stars: 2
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
sublime-arcpy-snippets
======================**Collection of Sublime Text snippets for esri arcpy library**
###Installation
1. fork / clone repository (git clone https://github.com/brendancol/sublime-arcpy-snippets)
2. clone into local Sublime "User" folder
* **Windows:** C:\Users\\AppData\Roaming\\Packages\User.
3. Done...###Keyboard Triggers
| Snippet | Trigger | Description | Scope|
| ------------- |-------------| -----| -----|
|arcpy-create-feature-class |GP Create Feature Class |Template for create a new feature class (arcpy.CreateFeatureclass_management) | source.python|
|arcpy-get-count |GP Get Count |gets integer count(arcpy.GetCount_management) | source.python|
|arcpy-join-field |GP Join Field |Joins the contents of a table to another table based on a common attribute field. This is a permanent join. | source.python|
|arcpy-make-feature-layer |GP Make Feature Layer |Creates a feature layer from an input feature class or layer file. The layer that is created by the tool is temporary and will not persist after the session ends unless the layer is saved to disk or the map document is saved. | source.python|
|arcpy-search-cursor |searchCursor |open search cursor on feature class (arcpy.da.SearchCursor) | source.python|
|arcpy-select-layer-by-attribute |GP Select Layer By Attribute |Adds, updates, or removes a selection on a layer or table view based on an attribute query. | source.python|
|arcpy-update-cursor |updateCursor |open update cursor (arcpy.da.UpdateCursor) | source.python|
|toolbox-tool |toolpyt |Tool template for Python Toolbox (.pyt) | source.python|
|unittest-testcase |testCase |Adds python unittest test case | source.python|