Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 893cab9

Browse files
committed
Some doc tweaks
1 parent 4279df9 commit 893cab9

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The Python Shapefile Library (pyshp) reads and writes ESRI Shapefiles in pure Py
1212

1313
[Version Changes](#version-changes)
1414

15-
[Basic Use](#basic-use)
15+
[Examples](#examples)
1616
- [Reading Shapefiles](#reading-shapefiles)
1717
- [Reading Shapefiles Using the Context Manager](#reading-shapefiles-using-the-context-manager)
1818
- [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
2828
- [Adding Geometry](#adding-geometry)
2929
- [Geometry and Record Balancing](#geometry-and-record-balancing)
3030

31-
[More](#more)
31+
[How To's](#how-tos)
3232
- [3D and Other Geometry Types](#3d-and-other-geometry-types)
3333
- [Working with Large Shapefiles](#working-with-large-shapefiles)
3434
- [Unicode and Shapefile Encodings](#unicode-and-shapefile-encodings)
@@ -76,12 +76,14 @@ part of your geospatial project.
7676

7777
## 2.0.0
7878

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.
8183
Users of the previous version 1.x should therefore take note of the following changes
8284
(Note: Some contributor attributions may be missing):
8385

84-
Major Changes:
86+
### Major Changes:
8587

8688
- Full support for unicode text, with custom encoding, and exception handling.
8789
- Means that the Reader returns unicode, and the Writer accepts unicode.
@@ -99,7 +101,7 @@ Major Changes:
99101
- Add more support and documentation for MultiPatch 3D shapes.
100102
- Better documentation of previously unclear aspects, such as field types.
101103

102-
Important Fixes:
104+
### Important Fixes:
103105

104106
- More reliable/robust:
105107
- Fixed shapefile bbox error for empty or point type shapefiles. [@mcuprjak]
@@ -110,11 +112,8 @@ Important Fixes:
110112
- Bug fixes for reading from case sensitive file names, individual files separately, and from file-like objects. [@gastoneb, @kb003308, @erickskb]
111113
- Enforce maximum field limit. [@mwtoews]
112114

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.
115115

116-
117-
# Basic Use
116+
# Examples
118117

119118
Before doing anything you must import the library.
120119

@@ -863,7 +862,7 @@ most shapefile software.
863862

864863

865864

866-
# More
865+
# How To's
867866

868867
## 3D and Other Geometry Types
869868

shapefile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
shapefile.py
33
Provides read and write support for ESRI Shapefiles.
44
author: jlawhead<at>geospatialpython.com
5-
date: 2017/04/29
6-
version: 2.0.0-dev
5+
date: 2018/09/01
6+
version: 2.0.0
77
Compatible with Python versions 2.7-3.x
88
"""
99

0 commit comments

Comments
 (0)