aboutsummaryrefslogtreecommitdiff
path: root/gis/python3-pyshp/README
diff options
context:
space:
mode:
authorArTourter <artourter@gmail.com>2022-04-30 17:45:26 +0100
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-05-07 13:59:23 +0700
commitb554e6a78a96bce0e7a3612295d330dd0e112e92 (patch)
treea8e037673ac43b4100f367a566a17c25b686b5e1 /gis/python3-pyshp/README
parent1b4c311d4f92077558e61ac07fcc5b5adaee354d (diff)
gis/python3-pyshp: Updated for version 2.3.0.
- updated README and slack-desc Signed-off-by: ArTourter <artourter@gmail.com> Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'gis/python3-pyshp/README')
-rw-r--r--gis/python3-pyshp/README23
1 files changed, 18 insertions, 5 deletions
diff --git a/gis/python3-pyshp/README b/gis/python3-pyshp/README
index 9b92d4917c64..84ca915686b8 100644
--- a/gis/python3-pyshp/README
+++ b/gis/python3-pyshp/README
@@ -1,5 +1,18 @@
-The pyshp library reads and writes ESRI Shapefiles in pure Python. You
-can read and write shp, shx, and dbf files with all types of
-geometry. Everything in the public ESRI shapefile specification is
-implemented. This library is compatible with Python versions 2.4
-to 3.x.
+The Python Shapefile Library (PyShp) provides read and write support for
+the Esri Shapefile format. The Shapefile format is a popular Geographic
+Information System vector data format created by Esri. For more
+information about this format please read the well-written "ESRI
+Shapefile Technical Description - July 1998" located at
+http://www.esri.com/library/whitepapers/p dfs/shapefile.pdf . The Esri
+document describes the shp and shx file formats. However a third file
+format called dbf is also required. This format is documented on the web
+as the "XBase File Format Description" and is a simple file-based
+database format created in the 1960's.
+
+Both the Esri and XBase file-formats are very simple in design and
+memory efficient which is part of the reason the shapefile format
+remains popular despite the numerous ways to store and exchange GIS data
+available today.
+
+Pyshp is compatible with Python 2.7-3.x, however this script only build
+the python3 version.