├── .gitignore ├── ExampleData ├── points.dbf ├── points.prj ├── points.shp └── points.shx ├── README.md ├── Tips ├── call_from_command_line.md ├── call_from_command_line.py └── install_pip.cmd └── Tricks ├── create_shp_for_debugging.py └── cursors_fast_reproject.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj2289/ArcPy-Tips/HEAD/.gitignore -------------------------------------------------------------------------------- /ExampleData/points.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj2289/ArcPy-Tips/HEAD/ExampleData/points.dbf -------------------------------------------------------------------------------- /ExampleData/points.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj2289/ArcPy-Tips/HEAD/ExampleData/points.prj -------------------------------------------------------------------------------- /ExampleData/points.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj2289/ArcPy-Tips/HEAD/ExampleData/points.shp -------------------------------------------------------------------------------- /ExampleData/points.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj2289/ArcPy-Tips/HEAD/ExampleData/points.shx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj2289/ArcPy-Tips/HEAD/README.md -------------------------------------------------------------------------------- /Tips/call_from_command_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj2289/ArcPy-Tips/HEAD/Tips/call_from_command_line.md -------------------------------------------------------------------------------- /Tips/call_from_command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj2289/ArcPy-Tips/HEAD/Tips/call_from_command_line.py -------------------------------------------------------------------------------- /Tips/install_pip.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj2289/ArcPy-Tips/HEAD/Tips/install_pip.cmd -------------------------------------------------------------------------------- /Tricks/create_shp_for_debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj2289/ArcPy-Tips/HEAD/Tricks/create_shp_for_debugging.py -------------------------------------------------------------------------------- /Tricks/cursors_fast_reproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj2289/ArcPy-Tips/HEAD/Tricks/cursors_fast_reproject.py --------------------------------------------------------------------------------