You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -92,6 +95,26 @@ part of your geospatial project.
92
95
93
96
# Version Changes
94
97
98
+
## 2.3.0
99
+
100
+
### New Features:
101
+
102
+
- Added support for pathlib and path-like shapefile filepaths (@mwtoews).
103
+
- Allow reading individual file extensions via filepaths.
104
+
105
+
### Improvements:
106
+
107
+
- Simplified setup and deployment (@mwtoews)
108
+
- Faster shape access when missing shx file
109
+
- Switch to named logger (see #240)
110
+
111
+
### Bug fixes:
112
+
113
+
- More robust handling of corrupt shapefiles (fixes #235)
114
+
- Fix errors when writing to individual file-handles (fixes #237)
115
+
- Revert previous decision to enforce geojson output ring orientation (detailed explanation at https://github.com/SciTools/cartopy/issues/2012)
116
+
- Fix test issues in environments without network access (@sebastic, @musicinmybrain).
117
+
95
118
## 2.2.0
96
119
97
120
### New Features:
@@ -1272,7 +1295,7 @@ file one record at a time, modify or filter the contents, and write it back out.
1272
1295
Most shapefiles store conventional 2D points, lines, or polygons. But the shapefile format is also capable
1273
1296
of storing various other types of geometries as well, including complex 3D surfaces and objects.
1274
1297
1275
-
**Shapefiles with measurement (M) values**
1298
+
### Shapefiles with measurement (M) values
1276
1299
1277
1300
Measured shape types are shapes that include a measurement value at each vertex, for instance
1278
1301
speed measurements from a GPS device. Shapes with measurement (M) values are added with the following
@@ -1304,7 +1327,7 @@ Shapefiles containing M-values can be examined in several ways:
1304
1327
[0.0, None, 3.0, None, 0.0, None, None]
1305
1328
1306
1329
1307
-
**Shapefiles with elevation (Z) values**
1330
+
### Shapefiles with elevation (Z) values
1308
1331
1309
1332
Elevation shape types are shapes that include an elevation value at each vertex, for instance elevation from a GPS device.
1310
1333
Shapes with elevation (Z) values are added with the following methods: "pointz", "multipointz", "linez", and "polyz".
@@ -1336,7 +1359,7 @@ To examine a Z-type shapefile you can do:
Copy file name to clipboardexpand all lines: changelog.txt
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
2
-
VERSION 2.X.X
2
+
VERSION 2.3.0
3
3
4
-
2022-XX-XX
4
+
2022-04-30
5
5
New Features:
6
6
* Added support for pathlib and path-like shapefile filepaths (@mwtoews).
7
7
* Allow reading individual file extensions via filepaths.
@@ -15,7 +15,7 @@ VERSION 2.X.X
15
15
* More robust handling of corrupt shapefiles (fixes #235)
16
16
* Fix errors when writing to individual file-handles (fixes #237)
17
17
* Revert previous decision to enforce geojson output ring orientation (detailed explanation at https://github.com/SciTools/cartopy/issues/2012)
18
-
* Fix test issues in environments without network access.
18
+
* Fix test issues in environments without network access (@sebastic, @musicinmybrain).
0 commit comments