Skip to content

Commit d40e9f7

Browse files
authored
Update README.md
1 parent bc69ae0 commit d40e9f7

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This is an attempt to provide a structured collection of resources that could he
77

88
The resources will include books, web pages and blog posts, online courses, videos, Q/A from GIS.SE, links to code snippets, and some bedtime readings.
99

10-
_The resources will focus mostly on learning about Python for users of Esri software though there will be some links that will apply even for open-source GIS professionals._
10+
_The resources will focus mostly on learning about Python for users of Esri software though many topics will apply for open-source GIS professionals as well._
1111

1212
---
1313

@@ -55,22 +55,22 @@ At this point, you should be able to:
5555
- write code for calling ArcGIS GP tools from Python code and inspect the `Result` object returned
5656
- perform an operation on multiple datasets in batch mode using `arcpy` listing functions
5757
- read and update attributes & geometry of features using `arcpy.da` cursors
58-
- create and operate `arcpy.Geometry()` objects (accessing both their properties and methods)
58+
- create and operate `arcpy.Geometry()` objects (accessing their properties and methods)
5959
- create an ArcGIS toolbox with a simple script tool executing a Python source file
6060
- report information about map layers (eg. data sources, broken paths, definition queries) within an ArcMap map document (.mxd) using `arcpy.mapping` module
6161

6262
### Python
6363
At this point, you should be familiar with:
64-
- variables of different data types (numeric, string, date etc.)
64+
- variables of different data types (numeric, string, Boolean, date etc.)
6565
- data structures of different types (list, tuple, dictionary, set)
6666
- `for` and `while` loops, `if-elif-else` blocks
6767
- import of external Python modules and packages (eg. `import os`)
6868
- functions and how they work (eg. input arguments and `return` statement)
69-
- reading/writing of text files using the `os` module
69+
- reading/writing text files using the `os` module
7070

7171
### Exercises
72-
This section contains the examples of tasks that you might need to write at some point of time. Implementing these tasks in Python code would be a good sign that you have mastered the basics of Python for ArcGIS.
73-
- get a list field names of Date type in a file geodatabase feature class
72+
This section contains the examples of tasks that you might need to write at some point of time. Implementing these tasks in Python code would be a good sign that you have mastered the basics of Python for GIS.
73+
- get a list of field names of Date type in a file geodatabase feature class
7474
- copy multiple shapefiles into a file geodatabase at once
7575
- re-project all rasters in a folder
7676
- update data sources for layers in a map document and save a new map document

0 commit comments

Comments
 (0)