@@ -12,7 +12,7 @@ The Python Shapefile Library (pyshp) reads and writes ESRI Shapefiles in pure Py
12
12
13
13
[ Version Changes] ( #version-changes )
14
14
15
- [ Basic Use ] ( #basic-use )
15
+ [ Examples ] ( #examples )
16
16
- [ Reading Shapefiles] ( #reading-shapefiles )
17
17
- [ Reading Shapefiles Using the Context Manager] ( #reading-shapefiles-using-the-context-manager )
18
18
- [ Reading Shapefiles from File-Like Objects] ( #reading-shapefiles-from-file-like-objects )
@@ -28,7 +28,7 @@ The Python Shapefile Library (pyshp) reads and writes ESRI Shapefiles in pure Py
28
28
- [ Adding Geometry] ( #adding-geometry )
29
29
- [ Geometry and Record Balancing] ( #geometry-and-record-balancing )
30
30
31
- [ More ] ( #more )
31
+ [ How To's ] ( #how-tos )
32
32
- [ 3D and Other Geometry Types] ( #3d-and-other-geometry-types )
33
33
- [ Working with Large Shapefiles] ( #working-with-large-shapefiles )
34
34
- [ Unicode and Shapefile Encodings] ( #unicode-and-shapefile-encodings )
@@ -76,12 +76,14 @@ part of your geospatial project.
76
76
77
77
## 2.0.0
78
78
79
- The newest version of PyShp, version 2.x introduced some major new features.
80
- This resulted in some API changes that are incompatible with previous versions.
79
+ The newest version of PyShp, version 2.0 introduced some major new improvements.
80
+ A great thanks to all who have contributed code and raised issues, and for everyone's
81
+ patience and understanding during the transition period.
82
+ Some of the new changes are incompatible with previous versions.
81
83
Users of the previous version 1.x should therefore take note of the following changes
82
84
(Note: Some contributor attributions may be missing):
83
85
84
- Major Changes:
86
+ ### Major Changes:
85
87
86
88
- Full support for unicode text, with custom encoding, and exception handling.
87
89
- Means that the Reader returns unicode, and the Writer accepts unicode.
@@ -99,7 +101,7 @@ Major Changes:
99
101
- Add more support and documentation for MultiPatch 3D shapes.
100
102
- Better documentation of previously unclear aspects, such as field types.
101
103
102
- Important Fixes:
104
+ ### Important Fixes:
103
105
104
106
- More reliable/robust:
105
107
- Fixed shapefile bbox error for empty or point type shapefiles. [ @mcuprjak ]
@@ -110,11 +112,8 @@ Important Fixes:
110
112
- Bug fixes for reading from case sensitive file names, individual files separately, and from file-like objects. [ @gastoneb , @kb003308 , @erickskb ]
111
113
- Enforce maximum field limit. [ @mwtoews ]
112
114
113
- A great thanks to all who have contributed code and raised issues for version 2.x, and for the patience and understanding during the
114
- transition period.
115
115
116
-
117
- # Basic Use
116
+ # Examples
118
117
119
118
Before doing anything you must import the library.
120
119
@@ -863,7 +862,7 @@ most shapefile software.
863
862
864
863
865
864
866
- # More
865
+ # How To's
867
866
868
867
## 3D and Other Geometry Types
869
868
0 commit comments