- Programming ArcGIS with Python Cookbook(Second Edition)
- Eric Pimpler
- 160字
- 2021-07-16 13:32:24
Introduction
It is not uncommon for your GIS data sources to move, migrate to a new data format, or be deleted. The result can be broken data sources in many map documents or layer files. These broken data sources can't be used until they're fixed, which can be an overwhelming process if the same changes need to be made across numerous map documents. You can automate the process of finding and fixing these data sources using arcpy.mapping
, without ever having to open the affected map documents. Finding broken data sources is a simple process requiring the use of the ListBrokenDataSources()
function, which returns a Python list of all broken data sources in a map document or layer file. Typically, this function is used as the first step in a script that iterates through the list and fixes the data source. Fixing broken data sources can be made in an inpidual data layer or across all layers in a common workspace.
- 深度實踐OpenStack:基于Python的OpenStack組件開發
- 精通JavaScript+jQuery:100%動態網頁設計密碼
- Python 3.7網絡爬蟲快速入門
- TypeScript Blueprints
- PostgreSQL 11從入門到精通(視頻教學版)
- C語言程序設計學習指導與習題解答
- Unity Game Development Scripting
- Java EE 8 Application Development
- 快人一步:系統性能提高之道
- R用戶Python學習指南:數據科學方法
- Python+Tableau數據可視化之美
- C語言程序設計與應用(第2版)
- Building Serverless Architectures
- MyBatis 3源碼深度解析
- Flask開發Web搜索引擎入門與實戰