- ArcGIS Blueprints
- Eric Pimpler
- 195字
- 2021-07-30 09:50:01
Chapter 2. Tracking Elk Migration Patterns with GPS and ArcPy
In this chapter, we're going to build an application that imports a CSV
file containing Global Positioning System (GPS) locations that depict elk migration patterns into a feature
class that will be time-enabled to display migration patterns over time and space. We'll use the ArcPy
data access (arcpy.da
) module and the Python csv
module to read the file containing GPS locations, and write the data to a new feature class. Next, we'll use the ArcPy
mapping (archy.mapping
) module to make the output feature class time-enabled, and then visualize the migration patterns of the elk over time and space. The application will be built as an ArcGIS Python Toolbox in much the same way as what we did in Chapter 1, .
In this chapter, we will cover the following topics:
- ArcGIS Desktop Python toolboxes
- Reading
CSV
files with the Pythoncsv
module - Inserting data in a feature class using the
ArcPy
data access module - Using the
ArcPy
mapping module to make a layer time-enabled - Visualizing time-enabled data with ArcGIS Desktop
- DB2 V9權威指南
- 在最好的年紀學Python:小學生趣味編程
- 軟件界面交互設計基礎
- Kinect for Windows SDK Programming Guide
- 網站構建技術
- 零基礎學Python網絡爬蟲案例實戰全流程詳解(入門與提高篇)
- Unity 2D Game Development Cookbook
- PHP從入門到精通(第4版)(軟件開發視頻大講堂)
- Python從入門到精通
- C# Multithreaded and Parallel Programming
- Spring+Spring MVC+MyBatis從零開始學
- Hands-On Kubernetes on Windows
- GitHub入門與實踐
- Game Programming using Qt 5 Beginner's Guide
- Selenium自動化測試實戰:基于Python