pyogrio 0.9.0__cp312-cp312-macosx_12_0_arm64.whl → 0.11.0__cp312-cp312-macosx_12_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pyogrio might be problematic. Click here for more details.
- pyogrio/.dylibs/{libgdal.34.3.8.5.dylib → libgdal.36.3.10.3.dylib} +0 -0
- pyogrio/__init__.py +28 -21
- pyogrio/_compat.py +15 -1
- pyogrio/_env.py +4 -6
- pyogrio/_err.cpython-312-darwin.so +0 -0
- pyogrio/_geometry.cpython-312-darwin.so +0 -0
- pyogrio/_io.cpython-312-darwin.so +0 -0
- pyogrio/_ogr.cpython-312-darwin.so +0 -0
- pyogrio/_version.py +3 -3
- pyogrio/_vsi.cpython-312-darwin.so +0 -0
- pyogrio/core.py +86 -20
- pyogrio/errors.py +9 -16
- pyogrio/gdal_data/GDAL-targets-release.cmake +3 -3
- pyogrio/gdal_data/GDAL-targets.cmake +2 -2
- pyogrio/gdal_data/GDALConfig.cmake +0 -1
- pyogrio/gdal_data/GDALConfigVersion.cmake +3 -3
- pyogrio/gdal_data/MM_m_idofic.csv +321 -0
- pyogrio/gdal_data/gdalinfo_output.schema.json +3 -3
- pyogrio/gdal_data/gdaltileindex.xsd +253 -0
- pyogrio/gdal_data/gdalvrt.xsd +178 -63
- pyogrio/gdal_data/nitf_spec.xml +1 -17
- pyogrio/gdal_data/nitf_spec.xsd +1 -17
- pyogrio/gdal_data/ogrinfo_output.schema.json +23 -0
- pyogrio/gdal_data/ogrvrt.xsd +4 -17
- pyogrio/gdal_data/osmconf.ini +3 -1
- pyogrio/gdal_data/pci_datum.txt +222 -155
- pyogrio/gdal_data/pci_ellips.txt +90 -38
- pyogrio/gdal_data/pdfcomposition.xsd +1 -17
- pyogrio/gdal_data/vcpkg.spdx.json +29 -24
- pyogrio/gdal_data/vcpkg_abi_info.txt +31 -30
- pyogrio/gdal_data/vdv452.xml +1 -17
- pyogrio/gdal_data/vdv452.xsd +1 -17
- pyogrio/geopandas.py +122 -66
- pyogrio/proj_data/ITRF2014 +1 -1
- pyogrio/proj_data/ITRF2020 +91 -0
- pyogrio/proj_data/proj-config-version.cmake +2 -2
- pyogrio/proj_data/proj-config.cmake +1 -1
- pyogrio/proj_data/proj-targets.cmake +3 -3
- pyogrio/proj_data/proj.db +0 -0
- pyogrio/proj_data/proj.ini +11 -3
- pyogrio/proj_data/proj4-targets.cmake +3 -3
- pyogrio/proj_data/projjson.schema.json +1 -1
- pyogrio/proj_data/usage +7 -2
- pyogrio/proj_data/vcpkg.spdx.json +27 -22
- pyogrio/proj_data/vcpkg_abi_info.txt +18 -17
- pyogrio/raw.py +46 -30
- pyogrio/tests/conftest.py +214 -12
- pyogrio/tests/fixtures/README.md +32 -13
- pyogrio/tests/fixtures/curve.gpkg +0 -0
- pyogrio/tests/fixtures/{test_multisurface.gpkg → curvepolygon.gpkg} +0 -0
- pyogrio/tests/fixtures/line_zm.gpkg +0 -0
- pyogrio/tests/fixtures/multisurface.gpkg +0 -0
- pyogrio/tests/test_arrow.py +181 -24
- pyogrio/tests/test_core.py +170 -76
- pyogrio/tests/test_geopandas_io.py +483 -135
- pyogrio/tests/test_path.py +39 -17
- pyogrio/tests/test_raw_io.py +170 -55
- pyogrio/tests/test_util.py +56 -0
- pyogrio/util.py +69 -32
- pyogrio-0.11.0.dist-info/METADATA +124 -0
- {pyogrio-0.9.0.dist-info → pyogrio-0.11.0.dist-info}/RECORD +64 -78
- {pyogrio-0.9.0.dist-info → pyogrio-0.11.0.dist-info}/WHEEL +2 -1
- {pyogrio-0.9.0.dist-info → pyogrio-0.11.0.dist-info/licenses}/LICENSE +1 -1
- pyogrio/_err.pxd +0 -4
- pyogrio/_err.pyx +0 -250
- pyogrio/_geometry.pxd +0 -4
- pyogrio/_geometry.pyx +0 -129
- pyogrio/_io.pxd +0 -0
- pyogrio/_io.pyx +0 -2742
- pyogrio/_ogr.pxd +0 -444
- pyogrio/_ogr.pyx +0 -346
- pyogrio/_vsi.pxd +0 -4
- pyogrio/_vsi.pyx +0 -140
- pyogrio/arrow_bridge.h +0 -115
- pyogrio/gdal_data/bag_template.xml +0 -201
- pyogrio/gdal_data/gmlasconf.xml +0 -169
- pyogrio/gdal_data/gmlasconf.xsd +0 -1066
- pyogrio/gdal_data/netcdf_config.xsd +0 -143
- pyogrio/tests/fixtures/poly_not_enough_points.shp.zip +0 -0
- pyogrio/tests/fixtures/test_datetime.geojson +0 -7
- pyogrio/tests/fixtures/test_datetime_tz.geojson +0 -8
- pyogrio/tests/fixtures/test_fgdb.gdb.zip +0 -0
- pyogrio/tests/fixtures/test_nested.geojson +0 -18
- pyogrio/tests/fixtures/test_ogr_types_list.geojson +0 -12
- pyogrio-0.9.0.dist-info/METADATA +0 -100
- {pyogrio-0.9.0.dist-info → pyogrio-0.11.0.dist-info}/top_level.txt +0 -0
pyogrio/util.py
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
|
-
|
|
1
|
+
"""Utility functions."""
|
|
2
|
+
|
|
2
3
|
import re
|
|
3
4
|
import sys
|
|
5
|
+
from packaging.version import Version
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
from typing import Union
|
|
4
8
|
from urllib.parse import urlparse
|
|
5
9
|
|
|
6
|
-
from
|
|
10
|
+
from pyogrio._vsi import vsimem_rmtree_toplevel as _vsimem_rmtree_toplevel
|
|
11
|
+
|
|
12
|
+
MULTI_EXTENSIONS = (".gpkg.zip", ".shp.zip")
|
|
7
13
|
|
|
8
14
|
|
|
9
15
|
def get_vsi_path_or_buffer(path_or_buffer):
|
|
10
|
-
"""Get
|
|
16
|
+
"""Get VSI-prefixed path or bytes buffer depending on type of path_or_buffer.
|
|
11
17
|
|
|
12
18
|
If path_or_buffer is a bytes object, it will be returned directly and will
|
|
13
19
|
be read into an in-memory dataset when passed to one of the Cython functions.
|
|
@@ -21,15 +27,17 @@ def get_vsi_path_or_buffer(path_or_buffer):
|
|
|
21
27
|
Parameters
|
|
22
28
|
----------
|
|
23
29
|
path_or_buffer : str, pathlib.Path, bytes, or file-like
|
|
30
|
+
A dataset path or URI, raw buffer, or file-like object with a read method.
|
|
24
31
|
|
|
25
32
|
Returns
|
|
26
33
|
-------
|
|
27
34
|
str or bytes
|
|
28
|
-
"""
|
|
29
35
|
|
|
30
|
-
|
|
36
|
+
"""
|
|
37
|
+
# treat Path objects here already to ignore their read method + to avoid backslashes
|
|
38
|
+
# on Windows.
|
|
31
39
|
if isinstance(path_or_buffer, Path):
|
|
32
|
-
return vsi_path(
|
|
40
|
+
return vsi_path(path_or_buffer)
|
|
33
41
|
|
|
34
42
|
if isinstance(path_or_buffer, bytes):
|
|
35
43
|
return path_or_buffer
|
|
@@ -38,7 +46,7 @@ def get_vsi_path_or_buffer(path_or_buffer):
|
|
|
38
46
|
bytes_buffer = path_or_buffer.read()
|
|
39
47
|
|
|
40
48
|
# rewind buffer if possible so that subsequent operations do not need to rewind
|
|
41
|
-
if hasattr(path_or_buffer, "
|
|
49
|
+
if hasattr(path_or_buffer, "seekable") and path_or_buffer.seekable():
|
|
42
50
|
path_or_buffer.seek(0)
|
|
43
51
|
|
|
44
52
|
return bytes_buffer
|
|
@@ -46,16 +54,14 @@ def get_vsi_path_or_buffer(path_or_buffer):
|
|
|
46
54
|
return vsi_path(str(path_or_buffer))
|
|
47
55
|
|
|
48
56
|
|
|
49
|
-
def vsi_path(path: str) -> str:
|
|
50
|
-
"""
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"path cannot contain /vsimem/ directly; to use an in-memory dataset a bytes object must be passed instead"
|
|
58
|
-
)
|
|
57
|
+
def vsi_path(path: Union[str, Path]) -> str:
|
|
58
|
+
"""Ensure path is a local path or a GDAL-compatible VSI path."""
|
|
59
|
+
# Convert Path objects to string, but for VSI paths, keep posix style path.
|
|
60
|
+
if isinstance(path, Path):
|
|
61
|
+
if sys.platform == "win32" and path.as_posix().startswith("/vsi"):
|
|
62
|
+
path = path.as_posix()
|
|
63
|
+
else:
|
|
64
|
+
path = str(path)
|
|
59
65
|
|
|
60
66
|
# path is already in GDAL format
|
|
61
67
|
if path.startswith("/vsi"):
|
|
@@ -64,15 +70,23 @@ def vsi_path(path: str) -> str:
|
|
|
64
70
|
# Windows drive letters (e.g. "C:\") confuse `urlparse` as they look like
|
|
65
71
|
# URL schemes
|
|
66
72
|
if sys.platform == "win32" and re.match("^[a-zA-Z]\\:", path):
|
|
73
|
+
# If it is not a zip file or it is multi-extension zip file that is directly
|
|
74
|
+
# supported by a GDAL driver, return the path as is.
|
|
67
75
|
if not path.split("!")[0].endswith(".zip"):
|
|
68
76
|
return path
|
|
77
|
+
if path.split("!")[0].endswith(MULTI_EXTENSIONS):
|
|
78
|
+
return path
|
|
69
79
|
|
|
70
80
|
# prefix then allow to proceed with remaining parsing
|
|
71
81
|
path = f"zip://{path}"
|
|
72
82
|
|
|
73
83
|
path, archive, scheme = _parse_uri(path)
|
|
74
84
|
|
|
75
|
-
if
|
|
85
|
+
if (
|
|
86
|
+
scheme
|
|
87
|
+
or archive
|
|
88
|
+
or (path.endswith(".zip") and not path.endswith(MULTI_EXTENSIONS))
|
|
89
|
+
):
|
|
76
90
|
return _construct_vsi_path(path, archive, scheme)
|
|
77
91
|
|
|
78
92
|
return path
|
|
@@ -98,12 +112,11 @@ SCHEMES = {
|
|
|
98
112
|
# those are for now not added as supported URI
|
|
99
113
|
}
|
|
100
114
|
|
|
101
|
-
CURLSCHEMES =
|
|
115
|
+
CURLSCHEMES = {k for k, v in SCHEMES.items() if v == "curl"}
|
|
102
116
|
|
|
103
117
|
|
|
104
118
|
def _parse_uri(path: str):
|
|
105
|
-
"""
|
|
106
|
-
Parse a URI
|
|
119
|
+
"""Parse a URI.
|
|
107
120
|
|
|
108
121
|
Returns a tuples of (path, archive, scheme)
|
|
109
122
|
|
|
@@ -138,19 +151,19 @@ def _parse_uri(path: str):
|
|
|
138
151
|
|
|
139
152
|
|
|
140
153
|
def _construct_vsi_path(path, archive, scheme) -> str:
|
|
141
|
-
"""Convert a parsed path to a GDAL VSI path"""
|
|
142
|
-
|
|
154
|
+
"""Convert a parsed path to a GDAL VSI path."""
|
|
143
155
|
prefix = ""
|
|
144
156
|
suffix = ""
|
|
145
157
|
schemes = scheme.split("+")
|
|
146
158
|
|
|
147
|
-
if "zip" not in schemes and (
|
|
159
|
+
if "zip" not in schemes and (
|
|
160
|
+
archive.endswith(".zip")
|
|
161
|
+
or (path.endswith(".zip") and not path.endswith(MULTI_EXTENSIONS))
|
|
162
|
+
):
|
|
148
163
|
schemes.insert(0, "zip")
|
|
149
164
|
|
|
150
165
|
if schemes:
|
|
151
|
-
prefix = "/".join(
|
|
152
|
-
"vsi{0}".format(SCHEMES[p]) for p in schemes if p and p != "file"
|
|
153
|
-
)
|
|
166
|
+
prefix = "/".join(f"vsi{SCHEMES[p]}" for p in schemes if p and p != "file")
|
|
154
167
|
|
|
155
168
|
if schemes[-1] in CURLSCHEMES:
|
|
156
169
|
suffix = f"{schemes[-1]}://"
|
|
@@ -159,15 +172,15 @@ def _construct_vsi_path(path, archive, scheme) -> str:
|
|
|
159
172
|
if archive:
|
|
160
173
|
return "/{}/{}{}/{}".format(prefix, suffix, archive, path.lstrip("/"))
|
|
161
174
|
else:
|
|
162
|
-
return "/{}/{}{}"
|
|
175
|
+
return f"/{prefix}/{suffix}{path}"
|
|
163
176
|
|
|
164
177
|
return path
|
|
165
178
|
|
|
166
179
|
|
|
167
180
|
def _preprocess_options_key_value(options):
|
|
168
|
-
"""
|
|
169
|
-
|
|
170
|
-
to `SPATIAL_INDEX="YES"`.
|
|
181
|
+
"""Preprocess options.
|
|
182
|
+
|
|
183
|
+
For example, `spatial_index=True` gets converted to `SPATIAL_INDEX="YES"`.
|
|
171
184
|
"""
|
|
172
185
|
if not isinstance(options, dict):
|
|
173
186
|
raise TypeError(f"Expected options to be a dict, got {type(options)}")
|
|
@@ -191,6 +204,7 @@ def _mask_to_wkb(mask):
|
|
|
191
204
|
Parameters
|
|
192
205
|
----------
|
|
193
206
|
mask : Shapely geometry
|
|
207
|
+
The geometry to convert to WKB.
|
|
194
208
|
|
|
195
209
|
Returns
|
|
196
210
|
-------
|
|
@@ -201,8 +215,8 @@ def _mask_to_wkb(mask):
|
|
|
201
215
|
ValueError
|
|
202
216
|
raised if Shapely >= 2.0 is not available or mask is not a Shapely
|
|
203
217
|
Geometry object
|
|
204
|
-
"""
|
|
205
218
|
|
|
219
|
+
"""
|
|
206
220
|
if mask is None:
|
|
207
221
|
return mask
|
|
208
222
|
|
|
@@ -221,3 +235,26 @@ def _mask_to_wkb(mask):
|
|
|
221
235
|
raise ValueError("'mask' parameter must be a Shapely geometry")
|
|
222
236
|
|
|
223
237
|
return shapely.to_wkb(mask)
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
def vsimem_rmtree_toplevel(path: Union[str, Path]):
|
|
241
|
+
"""Remove the parent directory of the file path recursively.
|
|
242
|
+
|
|
243
|
+
This is used for final cleanup of an in-memory dataset, which may have been
|
|
244
|
+
created within a directory to contain sibling files.
|
|
245
|
+
|
|
246
|
+
Additional VSI handlers may be chained to the left of /vsimem/ in path and
|
|
247
|
+
will be ignored.
|
|
248
|
+
|
|
249
|
+
Remark: function is defined here to be able to run tests on it.
|
|
250
|
+
|
|
251
|
+
Parameters
|
|
252
|
+
----------
|
|
253
|
+
path : str or pathlib.Path
|
|
254
|
+
path to in-memory file
|
|
255
|
+
|
|
256
|
+
"""
|
|
257
|
+
if isinstance(path, Path):
|
|
258
|
+
path = path.as_posix()
|
|
259
|
+
|
|
260
|
+
_vsimem_rmtree_toplevel(path)
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyogrio
|
|
3
|
+
Version: 0.11.0
|
|
4
|
+
Summary: Vectorized spatial vector file format I/O using GDAL/OGR
|
|
5
|
+
Author: pyogrio contributors
|
|
6
|
+
Author-email: "Brendan C. Ward" <bcward@astutespruce.com>
|
|
7
|
+
Maintainer: pyogrio contributors
|
|
8
|
+
License: MIT License
|
|
9
|
+
|
|
10
|
+
Copyright (c) 2020-2024 Brendan C. Ward and pyogrio contributors
|
|
11
|
+
|
|
12
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
14
|
+
in the Software without restriction, including without limitation the rights
|
|
15
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
16
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
17
|
+
furnished to do so, subject to the following conditions:
|
|
18
|
+
|
|
19
|
+
The above copyright notice and this permission notice shall be included in all
|
|
20
|
+
copies or substantial portions of the Software.
|
|
21
|
+
|
|
22
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
23
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
25
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
26
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
27
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
28
|
+
SOFTWARE.
|
|
29
|
+
|
|
30
|
+
Project-URL: Home, https://pyogrio.readthedocs.io/
|
|
31
|
+
Project-URL: Repository, https://github.com/geopandas/pyogrio
|
|
32
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
33
|
+
Classifier: Intended Audience :: Science/Research
|
|
34
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
35
|
+
Classifier: Operating System :: OS Independent
|
|
36
|
+
Classifier: Programming Language :: Python :: 3
|
|
37
|
+
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
38
|
+
Requires-Python: >=3.9
|
|
39
|
+
Description-Content-Type: text/markdown
|
|
40
|
+
License-File: LICENSE
|
|
41
|
+
Requires-Dist: certifi
|
|
42
|
+
Requires-Dist: numpy
|
|
43
|
+
Requires-Dist: packaging
|
|
44
|
+
Provides-Extra: dev
|
|
45
|
+
Requires-Dist: cython; extra == "dev"
|
|
46
|
+
Provides-Extra: test
|
|
47
|
+
Requires-Dist: pytest; extra == "test"
|
|
48
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
49
|
+
Provides-Extra: benchmark
|
|
50
|
+
Requires-Dist: pytest-benchmark; extra == "benchmark"
|
|
51
|
+
Provides-Extra: geopandas
|
|
52
|
+
Requires-Dist: geopandas; extra == "geopandas"
|
|
53
|
+
Dynamic: license-file
|
|
54
|
+
|
|
55
|
+
# pyogrio - bulk-oriented spatial vector file I/O using GDAL/OGR
|
|
56
|
+
|
|
57
|
+
Pyogrio provides fast, bulk-oriented read and write access to
|
|
58
|
+
[GDAL/OGR](https://gdal.org/en/latest/drivers/vector/index.html) vector data
|
|
59
|
+
sources, such as ESRI Shapefile, GeoPackage, GeoJSON, and several others.
|
|
60
|
+
Vector data sources typically have geometries, such as points, lines, or
|
|
61
|
+
polygons, and associated records with potentially many columns worth of data.
|
|
62
|
+
|
|
63
|
+
The typical use is to read or write these data sources to/from
|
|
64
|
+
[GeoPandas](https://github.com/geopandas/geopandas) `GeoDataFrames`. Because
|
|
65
|
+
the geometry column is optional, reading or writing only non-spatial data is
|
|
66
|
+
also possible. Hence, GeoPackage attribute tables, DBF files, or CSV files are
|
|
67
|
+
also supported.
|
|
68
|
+
|
|
69
|
+
Pyogrio is fast because it uses pre-compiled bindings for GDAL/OGR to read and
|
|
70
|
+
write the data records in bulk. This approach avoids multiple steps of
|
|
71
|
+
converting to and from Python data types within Python, so performance becomes
|
|
72
|
+
primarily limited by the underlying I/O speed of data source drivers in
|
|
73
|
+
GDAL/OGR.
|
|
74
|
+
|
|
75
|
+
We have seen \>5-10x speedups reading files and \>5-20x speedups writing files
|
|
76
|
+
compared to using row-per-row approaches (e.g. Fiona).
|
|
77
|
+
|
|
78
|
+
Read the documentation for more information:
|
|
79
|
+
[https://pyogrio.readthedocs.io](https://pyogrio.readthedocs.io/en/latest/).
|
|
80
|
+
|
|
81
|
+
## Requirements
|
|
82
|
+
|
|
83
|
+
Supports Python 3.9 - 3.13 and GDAL 3.4.x - 3.9.x.
|
|
84
|
+
|
|
85
|
+
Reading to GeoDataFrames requires `geopandas>=0.12` with `shapely>=2`.
|
|
86
|
+
|
|
87
|
+
Additionally, installing `pyarrow` in combination with GDAL 3.6+ enables
|
|
88
|
+
a further speed-up when specifying `use_arrow=True`.
|
|
89
|
+
|
|
90
|
+
## Installation
|
|
91
|
+
|
|
92
|
+
Pyogrio is currently available on
|
|
93
|
+
[conda-forge](https://anaconda.org/conda-forge/pyogrio)
|
|
94
|
+
and [PyPI](https://pypi.org/project/pyogrio/)
|
|
95
|
+
for Linux, MacOS, and Windows.
|
|
96
|
+
|
|
97
|
+
Please read the
|
|
98
|
+
[installation documentation](https://pyogrio.readthedocs.io/en/latest/install.html)
|
|
99
|
+
for more information.
|
|
100
|
+
|
|
101
|
+
## Supported vector formats
|
|
102
|
+
|
|
103
|
+
Pyogrio supports most common vector data source formats (provided they are also
|
|
104
|
+
supported by GDAL/OGR), including ESRI Shapefile, GeoPackage, GeoJSON, and
|
|
105
|
+
FlatGeobuf.
|
|
106
|
+
|
|
107
|
+
Please see the [list of supported formats](https://pyogrio.readthedocs.io/en/latest/supported_formats.html)
|
|
108
|
+
for more information.
|
|
109
|
+
|
|
110
|
+
## Getting started
|
|
111
|
+
|
|
112
|
+
Please read the [introduction](https://pyogrio.readthedocs.io/en/latest/supported_formats.html)
|
|
113
|
+
for more information and examples to get started using Pyogrio.
|
|
114
|
+
|
|
115
|
+
You can also check out the [API documentation](https://pyogrio.readthedocs.io/en/latest/api.html)
|
|
116
|
+
for full details on using the API.
|
|
117
|
+
|
|
118
|
+
## Credits
|
|
119
|
+
|
|
120
|
+
This project is made possible by the tremendous efforts of the GDAL, Fiona, and
|
|
121
|
+
Geopandas communities.
|
|
122
|
+
|
|
123
|
+
- Core I/O methods and supporting functions adapted from [Fiona](https://github.com/Toblerity/Fiona)
|
|
124
|
+
- Inspired by [Fiona PR](https://github.com/Toblerity/Fiona/pull/540/files)
|
|
@@ -1,81 +1,69 @@
|
|
|
1
|
-
pyogrio-0.
|
|
2
|
-
pyogrio-0.
|
|
3
|
-
pyogrio-0.
|
|
4
|
-
pyogrio-0.
|
|
5
|
-
pyogrio-0.
|
|
6
|
-
pyogrio/
|
|
7
|
-
pyogrio/
|
|
8
|
-
pyogrio/
|
|
9
|
-
pyogrio/
|
|
10
|
-
pyogrio/
|
|
11
|
-
pyogrio/
|
|
12
|
-
pyogrio/
|
|
13
|
-
pyogrio/
|
|
14
|
-
pyogrio/
|
|
15
|
-
pyogrio/
|
|
16
|
-
pyogrio/
|
|
17
|
-
pyogrio/
|
|
18
|
-
pyogrio/
|
|
19
|
-
pyogrio/
|
|
20
|
-
pyogrio/
|
|
21
|
-
pyogrio/
|
|
22
|
-
pyogrio/_io.pyx,sha256=V8ZNZzsfns5YXkz2pPgDQ3G1A6fh1bRrx1RpNG6dQa8,91430
|
|
23
|
-
pyogrio/_ogr.pyx,sha256=z6PknXL3G3wclt80PVT4fGOzJgc-iInhxibPC15PnRQ,9667
|
|
24
|
-
pyogrio/errors.py,sha256=otUCS22V7jd-4b5o49YLTqmHzzHlr3XrEIyoF2qDSOA,666
|
|
25
|
-
pyogrio/_geometry.cpython-312-darwin.so,sha256=fQt8omUpnhkJXvCdUm96qK3tHvXYv5bCRSD-UIVqImE,117184
|
|
26
|
-
pyogrio/_compat.py,sha256=cXIol91_OZtHerTwQVXN0y3dVoAruIyO8AoBjanHgik,1008
|
|
27
|
-
pyogrio/_vsi.pxd,sha256=vLHYsuPH-mdOLj0mqVwbjSU7U8750SFtuMPxl8FbLJ4,206
|
|
28
|
-
pyogrio/_env.py,sha256=jf-nUbLqQka-XGKijLh4Oh0Lur_uj7XyvQVSQ0jXZ_0,1531
|
|
29
|
-
pyogrio/_err.pxd,sha256=DKe5pdq8CqnaW3U_w9X56iBqdylIvOaRk-sExSXA3WU,166
|
|
30
|
-
pyogrio/_err.cpython-312-darwin.so,sha256=7YIhGnnpV4grT2tduzc6iHb4pcGqjliEwzas31oUiYc,140720
|
|
31
|
-
pyogrio/proj_data/vcpkg.spdx.json,sha256=qk3rg3Az7JSecfxsJMGudnHjCYrPNBDkK9FiI8F9-m0,6621
|
|
32
|
-
pyogrio/proj_data/proj.db,sha256=7l14rro5yVAdWqT2RfsLNAq_Kki3olYNb2NGFTJRbi0,9105408
|
|
1
|
+
pyogrio-0.11.0.dist-info/RECORD,,
|
|
2
|
+
pyogrio-0.11.0.dist-info/WHEEL,sha256=v0Qm5gt5QOM-U-EJp9ad8JK3sru8mia8Uw9svf1hUhw,136
|
|
3
|
+
pyogrio-0.11.0.dist-info/top_level.txt,sha256=DUBAVaLxa9r0nHHskG8tHdP1P3zt6TYYPRiDBlEUc7Y,8
|
|
4
|
+
pyogrio-0.11.0.dist-info/METADATA,sha256=f3d2-Lo1f7bgvZMKwM7-Ked2BSJZRcUg-iE0sviJVVU,5256
|
|
5
|
+
pyogrio-0.11.0.dist-info/licenses/LICENSE,sha256=cLGJD_UZOxwnHgUg3rmhlzRkgfv6x9s8yx1zZ1Orc10,1102
|
|
6
|
+
pyogrio/_version.py,sha256=YNuT9sp5w7oceq4RZ_lnPWEjO4ukSHNLMe70rZoQ3Hk,498
|
|
7
|
+
pyogrio/raw.py,sha256=wF443ou_yv6-_c1_zBAPGsLzMCFUzxGBbicdHhlJdh0,34375
|
|
8
|
+
pyogrio/util.py,sha256=EanTwJHJXvd5uLLzQBuL5pMqjFyErvy-mTaCOA0hveI,7131
|
|
9
|
+
pyogrio/__init__.py,sha256=am6EPcAXKiEEThP-9t2gy2WKZYkpwJP7UxRRxD6Y4YI,1284
|
|
10
|
+
pyogrio/_vsi.cpython-312-darwin.so,sha256=eIwu3iDej9InMyQOLLbYBKTDwFRMPH4kb_Yd0Q2AL-4,140416
|
|
11
|
+
pyogrio/core.py,sha256=Wck5hTG-Gw9xBslG9sJenrCq8DNXuVtc3ZM9R7u-drg,12702
|
|
12
|
+
pyogrio/geopandas.py,sha256=dBhoRukJ4CjYstJcBcZgnRKDWNDbOMABSew5Gf0o0_I,31192
|
|
13
|
+
pyogrio/_ogr.cpython-312-darwin.so,sha256=GbLSvMzmmIKxybWVwyW88-IRYiRNriQ0u6J_sKkTab4,176096
|
|
14
|
+
pyogrio/_io.cpython-312-darwin.so,sha256=KQqSq9oZr-MQsU3JqypMwpfeSCxsOEP3Ir7Cu8kmfpY,578864
|
|
15
|
+
pyogrio/errors.py,sha256=gVPzLg6A5QZ7MNDHKGSVwlpkOPt6WthhMctkIsJ_K1E,645
|
|
16
|
+
pyogrio/_geometry.cpython-312-darwin.so,sha256=_3uzEHHAtG6gkFp6w9sSBrm5lvyTLZK-qsE8yzqE0fk,117472
|
|
17
|
+
pyogrio/_compat.py,sha256=Q2x7EHE-RQ9tiNzjJSkkbVqmJ5kEFFAA7PC_t7bf_4M,1508
|
|
18
|
+
pyogrio/_env.py,sha256=VPsAlVd6PAG1c9Xp46P5zZYopj_5ZlitPMTkCrd7cfo,1494
|
|
19
|
+
pyogrio/_err.cpython-312-darwin.so,sha256=GwDV0cpToxJM3ZzFSQHcIT7OZLOi8rPR5XEc5d-K7ZA,201968
|
|
20
|
+
pyogrio/proj_data/vcpkg.spdx.json,sha256=erSvZDqwFnsTM_d6HPy0fcJbgU9hhzYgKY4jpQoDFgE,6161
|
|
21
|
+
pyogrio/proj_data/proj.db,sha256=f1lW9moJcBNOp1IV9AHT1794cPK8y9cbdHlyq0I2SoA,9359360
|
|
33
22
|
pyogrio/proj_data/nad83,sha256=mmJgyGgKvlIWyo_phZmPq6vBIbADKHmoIddcrjQR3JY,16593
|
|
34
23
|
pyogrio/proj_data/CH,sha256=bFPqQKLGAyW6bGuaK5wUO9FlZxw4gg7NjyPKq0omSrU,1097
|
|
35
24
|
pyogrio/proj_data/world,sha256=8nHNPlbHdZ0vz7u9OYcCZOuBBkFVcTwE_JLq3TCt60g,7079
|
|
36
|
-
pyogrio/proj_data/
|
|
37
|
-
pyogrio/proj_data/
|
|
38
|
-
pyogrio/proj_data/
|
|
25
|
+
pyogrio/proj_data/ITRF2020,sha256=-y_VKVGtubMjNHV-1BL-XNuchTOvKEIfoZHbp7TXPcs,5711
|
|
26
|
+
pyogrio/proj_data/usage,sha256=rga-roM3bNnxHbjCWWvQOPia4eLNMrgu4zPxVyBwNwo,206
|
|
27
|
+
pyogrio/proj_data/vcpkg_abi_info.txt,sha256=su8XWLVGp1icB0D2hkfb5FQJsAxIxRo6qlCElS0ePuE,2123
|
|
28
|
+
pyogrio/proj_data/proj.ini,sha256=uV6_DQBzOSREg9ZdVxzYh6UYBuK9LBq39HuJfSUyDWU,2435
|
|
39
29
|
pyogrio/proj_data/nad.lst,sha256=Gijthy_RVQ9b97Wl5b_F51ALX5TJdFuEodFWsyA5kow,6385
|
|
40
30
|
pyogrio/proj_data/ITRF2000,sha256=UiXDszZ6NwIeY5z9W9FSHSvV0Ay8R0zWs7OCdhWk_nI,2099
|
|
41
31
|
pyogrio/proj_data/ITRF2008,sha256=3GmF1XIeLh0Y-smW3uXeyQJE7z4gw49yIF4y2IQq8uI,5682
|
|
42
|
-
pyogrio/proj_data/proj-config-version.cmake,sha256=
|
|
32
|
+
pyogrio/proj_data/proj-config-version.cmake,sha256=D6fMl3Zprzp-LXg_6Bv5bgZyC8fRv-EXD0yFgJhejSA,1789
|
|
43
33
|
pyogrio/proj_data/triangulation.schema.json,sha256=sVKCZmZ9Tz6HByx043CycTUQFRWpASolKH_PMSzqF5o,8403
|
|
44
|
-
pyogrio/proj_data/proj-targets.cmake,sha256=
|
|
34
|
+
pyogrio/proj_data/proj-targets.cmake,sha256=LBEQNhA9lXIs6ApNbp1vorW3Mz6Xg8rd2S-luUUro60,4516
|
|
45
35
|
pyogrio/proj_data/deformation_model.schema.json,sha256=ugxZERFyB6k2_HOMHjHaABtFtRGTdzzgxnQhQ_NyuZ0,17671
|
|
46
|
-
pyogrio/proj_data/proj-config.cmake,sha256=
|
|
36
|
+
pyogrio/proj_data/proj-config.cmake,sha256=fyu_oILyBFm1onu8sHxnKAlsJq0j_z0BLMUE9Dunryo,2508
|
|
47
37
|
pyogrio/proj_data/nad27,sha256=C8IxkiRhrHWJIsanJR6W1-U-ZWYIsbTwa3hI-o_CVSA,19535
|
|
48
38
|
pyogrio/proj_data/copyright,sha256=ao8weT6HfTLj-IuXLwlwoFGjtaJs0FfTmTy1HiHEMxk,1784
|
|
49
|
-
pyogrio/proj_data/projjson.schema.json,sha256=
|
|
50
|
-
pyogrio/proj_data/proj4-targets.cmake,sha256=
|
|
39
|
+
pyogrio/proj_data/projjson.schema.json,sha256=Z_CQVWuumWUi7a1IJZfA-eG5GcpMkoisn4981BgPSbY,38418
|
|
40
|
+
pyogrio/proj_data/proj4-targets.cmake,sha256=ukoXKvIcpmITe0IyB8D2kqDCwfWVXVmfs6us91q2wO4,4521
|
|
51
41
|
pyogrio/proj_data/GL27,sha256=hTdeYxXW9kTkV32t88XxV1KK0VtxXJmyh73asj1EGT0,728
|
|
52
42
|
pyogrio/proj_data/proj4-targets-release.cmake,sha256=5AMWErMkyX8NvT_r6MD_mrisCRtS-uOAk_odUdeIqRw,826
|
|
53
|
-
pyogrio/proj_data/ITRF2014,sha256=
|
|
43
|
+
pyogrio/proj_data/ITRF2014,sha256=X6F9a2aSjubLAa5BdP-L8yRYRov4Fwid8Rl3nf04Lvo,3490
|
|
54
44
|
pyogrio/proj_data/other.extra,sha256=we90wKmz4fQqV2wVvENmbBNbfpNh21cno1MgTaJ5zLs,3915
|
|
55
45
|
pyogrio/proj_data/proj-targets-release.cmake,sha256=EUGwmwyqLMarJjwhp5G63iw2U2s2nEln64t-eEYH3Q8,821
|
|
56
|
-
pyogrio/tests/conftest.py,sha256=
|
|
57
|
-
pyogrio/tests/test_raw_io.py,sha256=
|
|
58
|
-
pyogrio/tests/test_core.py,sha256=
|
|
46
|
+
pyogrio/tests/conftest.py,sha256=yoRKpt7leD6yGb5Tbfp6szcHdivSKe8wQ23_AThAcl4,11660
|
|
47
|
+
pyogrio/tests/test_raw_io.py,sha256=4hRdOoxfi4CAp64OItWkbgnw3f1ziry8JFoidMPTK7A,50773
|
|
48
|
+
pyogrio/tests/test_core.py,sha256=gIacLsEM8c2hK7jkK0eyz0e3w-FirX3x4bVIdXMPSM8,22313
|
|
59
49
|
pyogrio/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
|
-
pyogrio/tests/
|
|
61
|
-
pyogrio/tests/
|
|
62
|
-
pyogrio/tests/
|
|
63
|
-
pyogrio/tests/
|
|
64
|
-
pyogrio/tests/fixtures/
|
|
65
|
-
pyogrio/tests/fixtures/test_fgdb.gdb.zip,sha256=c7sFaFVfxEfn_R1NxpijRgOIxa2u1pFBSL9h_4PNpHI,101524
|
|
66
|
-
pyogrio/tests/fixtures/test_datetime.geojson,sha256=zsLqG-X1KeBjrfcHySBJRS4zcLNjHUKkJFCDXD68w9Q,318
|
|
50
|
+
pyogrio/tests/test_util.py,sha256=kCsVL87vgckQdUSQ9vl4wWCRv5mGQKIk7UWah_WAFhs,2126
|
|
51
|
+
pyogrio/tests/test_geopandas_io.py,sha256=D8zcwPO18x20XIH0GyA6rckPdZY6JUdzgXTPfN-MkIA,87328
|
|
52
|
+
pyogrio/tests/test_path.py,sha256=qENCJNdJi4nhVQSM65QZ7TgSg96RxIln8HZRkq1lh9c,12605
|
|
53
|
+
pyogrio/tests/test_arrow.py,sha256=20ZdHwXJQH9Z1mbZhdQ7OZjPux1Ptsa2utzr0xmKD9s,37803
|
|
54
|
+
pyogrio/tests/fixtures/curvepolygon.gpkg,sha256=AKEwmrDyn5ekxfbLnNO94nFD_JNnEtUQF2f2DwyWusc,98304
|
|
67
55
|
pyogrio/tests/fixtures/test_gpkg_nulls.gpkg,sha256=QoHTxV8gQuIXSrmhPFxaBtE4QQccGqPqLMExr69x4dg,98304
|
|
68
|
-
pyogrio/tests/fixtures/README.md,sha256=
|
|
69
|
-
pyogrio/tests/fixtures/
|
|
56
|
+
pyogrio/tests/fixtures/README.md,sha256=q-oUVZIJXOX12GJAaIDft3eSxrNF1dTDWSlLFmjIUI4,3606
|
|
57
|
+
pyogrio/tests/fixtures/curve.gpkg,sha256=A6nFkE_TB1xhupblvwqsOBch1DeZ2yPAZjSgxW4E8wI,98304
|
|
70
58
|
pyogrio/tests/fixtures/sample.osm.pbf,sha256=QKJQWdMaglIdz0nj8cnfOF8XWbV02bscpOo325FBaZI,9653
|
|
71
|
-
pyogrio/tests/fixtures/
|
|
72
|
-
pyogrio/tests/fixtures/
|
|
59
|
+
pyogrio/tests/fixtures/multisurface.gpkg,sha256=iYoji8EZ8FFiLCLelziZ9QFGajOmpsDMQFEigCxtZI0,98304
|
|
60
|
+
pyogrio/tests/fixtures/line_zm.gpkg,sha256=lWPlE7BkR27nq4xmhY8_Q0MHylVPdJVlLQlnTSdHxww,98304
|
|
73
61
|
pyogrio/tests/fixtures/naturalearth_lowres/naturalearth_lowres.shx,sha256=iwvirZfdSEruXC68mGl9U3LoMriuWKNaZhru9rmFZo0,1516
|
|
74
62
|
pyogrio/tests/fixtures/naturalearth_lowres/naturalearth_lowres.cpg,sha256=CfwxMHV0jOjq2WIintickZ1an_cZdO5yWgtIu4fZdaI,10
|
|
75
63
|
pyogrio/tests/fixtures/naturalearth_lowres/naturalearth_lowres.shp,sha256=CONBYG6DkeRYw_CN6zEt5mS1a_rjdgZMWqCu5mgaX1U,180924
|
|
76
64
|
pyogrio/tests/fixtures/naturalearth_lowres/naturalearth_lowres.dbf,sha256=0q4cma3PjkWGpbEsY5ZyA1-i8_Rp5yVZR94AQBw-1-E,48869
|
|
77
65
|
pyogrio/tests/fixtures/naturalearth_lowres/naturalearth_lowres.prj,sha256=mKrz0cDsrfGkJKRTbeJhw9r043NpfLhsQMQ7mJ2vUus,143
|
|
78
|
-
pyogrio/.dylibs/libgdal.
|
|
66
|
+
pyogrio/.dylibs/libgdal.36.3.10.3.dylib,sha256=H9KWvaIc-jsuFdpr44634zMtAqPy-EzREKPxYqNUdeI,45475984
|
|
79
67
|
pyogrio/gdal_data/gml_registry.xml,sha256=2rVxsqdOS23ieg_eYtNIhxQcpFbRHKrN11oWay3lp0M,6643
|
|
80
68
|
pyogrio/gdal_data/grib2_table_4_2_2_5.csv,sha256=DMm7VDNZcLAKXwFA4SIgfExBb1d8iGFNMKpOoYmwY5U,9513
|
|
81
69
|
pyogrio/gdal_data/grib2_table_4_2_10_191.csv,sha256=D1EVM9Eyzl1STFGdSwy-OjkzyVNqUJc4JvToQgIcscg,9634
|
|
@@ -85,7 +73,7 @@ pyogrio/gdal_data/jpfgdgml_LeveeEdge.gfs,sha256=kQnqUPoyJfjqfvdnSAB2VvIN9FM3Jd-r
|
|
|
85
73
|
pyogrio/gdal_data/gt_datum.csv,sha256=3Qci5ZsE1dpYQJvOrsRDbscmMGRGvWR37LqoGcWPBW0,15804
|
|
86
74
|
pyogrio/gdal_data/grib2_table_4_2_4_3.csv,sha256=H6aiN0QNLVmYkallM7yVbCiR3g6x2TGNVaxHnONqa4I,9722
|
|
87
75
|
pyogrio/gdal_data/grib2_table_4_2_4_2.csv,sha256=mRIkqJQ6Chbyavutcact38Scvqal5vK177DT8Mko6ag,9660
|
|
88
|
-
pyogrio/gdal_data/pci_ellips.txt,sha256=
|
|
76
|
+
pyogrio/gdal_data/pci_ellips.txt,sha256=XPN-_epqhUBrVE5v1ihrjbXyP6TNo4xqHV-8tQQy17Y,6351
|
|
89
77
|
pyogrio/gdal_data/jpfgdgml_AdmPt.gfs,sha256=zvbd8Fp_ZzXKSYDWradRuDrkjpJQtBPzT5FI1dwOKJk,1633
|
|
90
78
|
pyogrio/gdal_data/grib2_table_4_5.csv,sha256=JtMFPcnPHyzAwCeMZc9ZU8Gi2FmFqHSSiWrdx8AutNA,10013
|
|
91
79
|
pyogrio/gdal_data/grib2_table_4_2_0_6.csv,sha256=Dldt7q0TbnIkPdL6eqhiiiJU9jBzmIXCGNOsLvFXl2g,11642
|
|
@@ -98,16 +86,15 @@ pyogrio/gdal_data/seed_3d.dgn,sha256=l8LwDubqloc7fRbl6Ji0hQ49NUSCmdfZ0359F5K1aJY
|
|
|
98
86
|
pyogrio/gdal_data/grib2_table_4_2_0_4.csv,sha256=KVlHHOG2-UdYSWk2F3e0f1AtEmQJGvuhy-bNhmwItvQ,10311
|
|
99
87
|
pyogrio/gdal_data/grib2_table_4_2_4_0.csv,sha256=9kJY8m3csUYibz041_Whq1iA-6RdqYg1dzgarcPku_k,9553
|
|
100
88
|
pyogrio/gdal_data/grib2_table_4_2_4_1.csv,sha256=9ZHp2TMk8z3QZUo4_G8DS-4MdgCHA0MZnFP-rzaRFXM,9686
|
|
101
|
-
pyogrio/gdal_data/GDALConfig.cmake,sha256=
|
|
89
|
+
pyogrio/gdal_data/GDALConfig.cmake,sha256=YHtfnU7mCwbw09oczqga86XQlkGjGs7Wb5YKVcE1YIU,945
|
|
102
90
|
pyogrio/gdal_data/jpfgdgml_AdmBdry.gfs,sha256=XY7zmIi3gWDR5xIWx_wJon7IgWCfwc8Ex-oVylQCSAQ,1382
|
|
103
91
|
pyogrio/gdal_data/grib2_table_4_2_0_5.csv,sha256=Acxx9cLX729oggWNVsmfPc9Lqq1nNTWWvgnta66WfaE,9826
|
|
104
92
|
pyogrio/gdal_data/tms_LINZAntarticaMapTileGrid.json,sha256=QjJ8qJZPlc5-AfNPvDJ4AlCkqVJOSy14g7T37sUS5aA,4115
|
|
105
93
|
pyogrio/gdal_data/jpfgdgml_Cstline.gfs,sha256=cbzTD-Dbdi2QC-nO9Ep8i64E2CUW3m9nRhmKej6qzLU,1509
|
|
106
|
-
pyogrio/gdal_data/bag_template.xml,sha256=2veBb2hsNbUexmyQ_GrtvxLb75fyj5-ulzE5L5KvtzM,9020
|
|
107
94
|
pyogrio/gdal_data/inspire_cp_CadastralZoning.gfs,sha256=e1GC-8pLjZ6gc-OY0IUDd5LL2URNHcazWW-i7QMLTPo,4812
|
|
108
95
|
pyogrio/gdal_data/jpfgdgml_WA.gfs,sha256=GBCluVns9HsNGQMnEb4VXaYYi-cNgIo9LDYMCINVlnM,1497
|
|
109
96
|
pyogrio/gdal_data/grib2_table_4_2_2_3.csv,sha256=NhDBdFAucOn0CBT4N8txwupv58jwnpCY6ChnhGNjkfo,10634
|
|
110
|
-
pyogrio/gdal_data/vcpkg.spdx.json,sha256=
|
|
97
|
+
pyogrio/gdal_data/vcpkg.spdx.json,sha256=4QXfFWTktLxstTgf3HUX7XdeMF_sMu6rHvSVY_fr6Uc,8107
|
|
111
98
|
pyogrio/gdal_data/grib2_table_4_2_0_1.csv,sha256=Islx1uwOrtFhUgZcq0urhO9eG1bFDWjFieujFdQJq3M,16505
|
|
112
99
|
pyogrio/gdal_data/grib2_table_4_2_20_1.csv,sha256=PssQWXb7slKE9Lj3j6-7bzaT_MbaNYvW1Ye9svtdHRQ,9851
|
|
113
100
|
pyogrio/gdal_data/grib2_table_4_2_4_5.csv,sha256=UH1R3eJHZQ9Xejfrgr9km-ko28squEkiEdtdfqN9boE,9495
|
|
@@ -117,7 +104,7 @@ pyogrio/gdal_data/grib2_table_4_2_0_0.csv,sha256=7lcXiYZHBVvyTtJuzN7_N7bcCTaT98t
|
|
|
117
104
|
pyogrio/gdal_data/seed_2d.dgn,sha256=3YRl8YVp2SiYCengliEV02XQpW3gITk5UqXnoKILUnw,9216
|
|
118
105
|
pyogrio/gdal_data/jpfgdgml_RailCL.gfs,sha256=WfcPfaAxyRwH0hGYR8cWo9KzkYaeVjdMpWdCj88L2Lc,1507
|
|
119
106
|
pyogrio/gdal_data/jpfgdgml_WStrA.gfs,sha256=ul-hFP9A9jVcIW4xKShR6C0yjXAq8HEPUkk8oLyH27A,1503
|
|
120
|
-
pyogrio/gdal_data/GDAL-targets.cmake,sha256=
|
|
107
|
+
pyogrio/gdal_data/GDAL-targets.cmake,sha256=ptTI3jfTABirFhAIZmN10o-4z11V961aVoOfPo8D3Vs,4035
|
|
121
108
|
pyogrio/gdal_data/grib2_table_4_2_2_0.csv,sha256=VmMPvFRcEifRi8w6eXg9Z3i_JcxhnqAcdxM4ymWV1E0,12666
|
|
122
109
|
pyogrio/gdal_data/grib2_table_4_2_0_2.csv,sha256=Hcr_tN5FR17RXjlBWHh1N-fHS7opzUxThapntte7Bd4,10892
|
|
123
110
|
pyogrio/gdal_data/jpfgdgml_SBAPt.gfs,sha256=6SXkKWcv4sOfsZUtRPBx3kSg2H8JgSLhK_fxaHhOxuE,1375
|
|
@@ -128,24 +115,23 @@ pyogrio/gdal_data/grib2_table_4_2_4_7.csv,sha256=T6hqPEH1cIRqbWuGUPrs3eiKFnUyHK-
|
|
|
128
115
|
pyogrio/gdal_data/grib2_table_4_2_0_3.csv,sha256=VyZN8AA5z_yyp6bELgKOect5RZZWX27NWAjd5msJ9GI,10558
|
|
129
116
|
pyogrio/gdal_data/pds4_template.xml,sha256=rqpN2EsXceGQFfSMeWMoD_2PrU88izTiY275iU5W9mI,3433
|
|
130
117
|
pyogrio/gdal_data/jpfgdgml_AdmArea.gfs,sha256=F8i9JfKPfW_hTQyCHb9rqmnqHhH2nGlVfAFsmF67-Rg,1640
|
|
131
|
-
pyogrio/gdal_data/gmlasconf.xsd,sha256=khv6jROHkaOsM3UI4mQsAZJDDedWGA7sJLh2RRZw_jY,48654
|
|
132
118
|
pyogrio/gdal_data/grib2_table_4_2_0_17.csv,sha256=A4I5bH537GYR-TnRfb22wWfzM7nLp4OBcXSExvrLv18,923
|
|
133
|
-
pyogrio/gdal_data/osmconf.ini,sha256=
|
|
119
|
+
pyogrio/gdal_data/osmconf.ini,sha256=oOgbs6BAhrJEBVh3S_QczWkxkeWXjY9_G-eaBEHl8Zg,5485
|
|
134
120
|
pyogrio/gdal_data/grib2_table_4_2_3_6.csv,sha256=GklA-e-8iI9GXxT-rAQ_fzEA9h4s13bKfVuUvLj2v9g,819
|
|
135
121
|
pyogrio/gdal_data/GDALLogoGS.svg,sha256=Gubi2S5rBDnzuu4MtV2ti5er-0_MWMkYmyO2PIGK7so,12305
|
|
136
122
|
pyogrio/gdal_data/jpfgdgml_RdASL.gfs,sha256=mg_FOmbuKivcTjWcIxVdf3KYzKv9x0m7DUGI1UHnFOk,1251
|
|
137
|
-
pyogrio/gdal_data/vdv452.xsd,sha256=
|
|
123
|
+
pyogrio/gdal_data/vdv452.xsd,sha256=3Uy74ZrFAwE8ZwlqfgXYOwb3QBzlaU2-lNxwl0qq9uk,1814
|
|
138
124
|
pyogrio/gdal_data/grib2_table_4_2_0_16.csv,sha256=mut7PcQsX0ZPxMjU_oHfuTTGwPUAbxkJy2Yp-ybLV-0,9671
|
|
139
125
|
pyogrio/gdal_data/grib2_table_4_2_0_14.csv,sha256=FX7I5iVqwq7iZITOHtI74X-ifJWuBDvpv2qW18jkZ2k,9551
|
|
140
126
|
pyogrio/gdal_data/default.rsc,sha256=nhydcIHVJ3XnUNQVXUklUlKwTKgf7yfLKZdnXTzZYms,463632
|
|
141
|
-
pyogrio/gdal_data/pci_datum.txt,sha256=
|
|
127
|
+
pyogrio/gdal_data/pci_datum.txt,sha256=AvdrClRR4GgBukxN5mGsXHYAZaZfQtBsnTWcNJD_nIE,45587
|
|
142
128
|
pyogrio/gdal_data/jpfgdgml_GCP.gfs,sha256=1bTmQNeaTceyuvv2p4QVBC19KFk3aLx4tgBsGeZQ0GQ,2523
|
|
143
129
|
pyogrio/gdal_data/jpfgdgml_RvrMgtBdry.gfs,sha256=3mSGD0Rm2PFV97OzIDjK8Mb3dAom_uQADHtIKsSwNjM,1388
|
|
144
130
|
pyogrio/gdal_data/grib2_table_4_2_3_5.csv,sha256=BPr_V_toW-rW2gBwOrD910yaad-Z6W97LA29E3IEjOw,920
|
|
145
131
|
pyogrio/gdal_data/s57attributes.csv,sha256=9Lbf4ugv6l5-5DPhNoMpKj-gm7ZnUEKOSxV4-ZpG0t4,20001
|
|
146
132
|
pyogrio/gdal_data/gfs.xsd,sha256=TCLwaVONVD6Fh94o6Hw-NClD8-2erBsz3V9dgozmG5I,16469
|
|
147
133
|
pyogrio/gdal_data/grib2_table_4_2_3_4.csv,sha256=Hu4t2JRqRwfmaM3AqgFhUXKfhb86y3A4e4qOYxVMrQw,1051
|
|
148
|
-
pyogrio/gdal_data/pdfcomposition.xsd,sha256=
|
|
134
|
+
pyogrio/gdal_data/pdfcomposition.xsd,sha256=2NeoZJ0rIPHUmVwsSDFZ2O_-w399Cpq62UTz_779-3w,33294
|
|
149
135
|
pyogrio/gdal_data/inspire_cp_BasicPropertyUnit.gfs,sha256=KG17Z8L6OlwyHUOfgxk7wG4MagplNoOOefFRZ4q1Rxw,1740
|
|
150
136
|
pyogrio/gdal_data/grib2_table_4_2_0_15.csv,sha256=7eBU5WigNMmSwRD7SKmCMpMzvqoBJJgcJvT55LIowhI,9846
|
|
151
137
|
pyogrio/gdal_data/jpfgdgml_CommBdry.gfs,sha256=dLHB579iCR6aIbNNiFHaX_xpdiLs3xMqm_zrRZ1kACw,1384
|
|
@@ -157,11 +143,11 @@ pyogrio/gdal_data/grib2_table_4_2_3_1.csv,sha256=_UjqsYLrMmAUhR1h2iJzqZJeTvhFuNf
|
|
|
157
143
|
pyogrio/gdal_data/jpfgdgml_RdEdg.gfs,sha256=zFrWUKdRQpadmkTottrgNxknbGTc-87RTqTzhJ-Jt4U,1642
|
|
158
144
|
pyogrio/gdal_data/esri_StatePlane_extra.wkt,sha256=aC3xsjHLbxKHaF1MZL8bJhHAr0PDBINHO7s2bOG9jTM,332546
|
|
159
145
|
pyogrio/gdal_data/usage,sha256=yFWEJh4gEalLhvBMOijdLhZcnmtHZ3qb7iaj04e8BfI,136
|
|
160
|
-
pyogrio/gdal_data/nitf_spec.xml,sha256
|
|
146
|
+
pyogrio/gdal_data/nitf_spec.xml,sha256=-xl5DBIJLIK6RUN-rSDAzLQhwGGInm-QyD_eQ1b6WZU,186405
|
|
161
147
|
pyogrio/gdal_data/tms_MapML_CBMTILE.json,sha256=tZaccbdXtciaiOyOkESWhCT1lGtiXtTwfSvgmNwm14A,7792
|
|
162
148
|
pyogrio/gdal_data/header.dxf,sha256=9GpEP0k-Q3B7x5hbnyhEViwk_qV21xVw_yr-kTF0Sd4,6572
|
|
163
149
|
pyogrio/gdal_data/grib2_table_4_2_1_1.csv,sha256=3FyIbZA43DVDSURtfTyKmbqw2bCyvB9K5ObuED1fIiU,9655
|
|
164
|
-
pyogrio/gdal_data/GDAL-targets-release.cmake,sha256=
|
|
150
|
+
pyogrio/gdal_data/GDAL-targets-release.cmake,sha256=M1RpQnS5lMXDnobmhLpZvpXXAue2xuOdtYnSei5vu1A,849
|
|
165
151
|
pyogrio/gdal_data/grib2_table_4_2_3_3.csv,sha256=I4cT-Ad19soux0yIC8cQw-UPDHA8slwLynqEtOb-_PQ,784
|
|
166
152
|
pyogrio/gdal_data/grib2_table_4_2_3_2.csv,sha256=FWUq3hX244-kBMJor_98vRY7ujIaf_ZF6SzLHOv5X8M,3833
|
|
167
153
|
pyogrio/gdal_data/grib2_table_4_2_local_Canada.csv,sha256=m8GRxbypdPQvvdSIA38HTuHKu6gO_i2lC4_SVMDcv_U,333
|
|
@@ -171,7 +157,7 @@ pyogrio/gdal_data/grib2_table_4_2_local_NCEP.csv,sha256=3u547LbwYlq1zC48OFIOqpIZ
|
|
|
171
157
|
pyogrio/gdal_data/grib2_table_4_2_0_13.csv,sha256=FiAWXbiJem9ePbrtXLu7chBm2H-PhZ39DNI_c7CXE3I,9596
|
|
172
158
|
pyogrio/gdal_data/ruian_vf_v1.gfs,sha256=Tl4_j6ZZgk6Do3HDCmPLrMyvDcI0KZZ7cpIvTMh6FBU,67252
|
|
173
159
|
pyogrio/gdal_data/jpfgdgml_ElevPt.gfs,sha256=9MRSGeU4EV1qAZ6Q2JEBsINXQXjxtlLg7JFgnFH3bIM,1500
|
|
174
|
-
pyogrio/gdal_data/vcpkg_abi_info.txt,sha256=
|
|
160
|
+
pyogrio/gdal_data/vcpkg_abi_info.txt,sha256=O5vLb3BPNW1w1gJJeW_8fo6_8PfvRRjS82Wu3TpaPXk,3267
|
|
175
161
|
pyogrio/gdal_data/grib2_table_4_2_0_190.csv,sha256=xF_PY2JAidyUTzFRSakOV3SITD5OD2LgF-2WT_vG0bc,9507
|
|
176
162
|
pyogrio/gdal_data/grib2_table_4_2_10_0.csv,sha256=9P_7VCO55ZdL-Acj5lwY6ECnruzcgMAb7bmeQYIG7-c,11822
|
|
177
163
|
pyogrio/gdal_data/grib2_table_4_2_10_1.csv,sha256=lWT-VZLPKNdqWmFE4TBRVncsUsqRkxCzcIIk7TNuOGk,9625
|
|
@@ -179,24 +165,24 @@ pyogrio/gdal_data/tms_NZTM2000.json,sha256=irMxe-d_H9zzagr3FS4bsJZScfe-XLvEMmdxa
|
|
|
179
165
|
pyogrio/gdal_data/inspire_cp_CadastralBoundary.gfs,sha256=VZY8kxf3ZQj1tkcp5gV6Iw8fX8lHOFHxAx-ZxQsa64Y,1650
|
|
180
166
|
pyogrio/gdal_data/grib2_table_4_2_0_191.csv,sha256=nb6bmMA90CcIbRmdWTwC_BWcEo4M46hoJSHQnzsEHDA,9620
|
|
181
167
|
pyogrio/gdal_data/jpfgdgml_RdCompt.gfs,sha256=e19AWCj_6GE7AR8sUE8WlRUZuOkDsfPgVrkRW4aZaK8,1646
|
|
182
|
-
pyogrio/gdal_data/gmlasconf.xml,sha256=IAk50u-H3k34Dm6_MJCMYOllTgv8a3nHrk6oqUR9t24,7432
|
|
183
168
|
pyogrio/gdal_data/s57expectedinput.csv,sha256=1bCaXEJI8-sJBqTjrGjXOAyG-BnXDerjZi5zbwWXvGw,20885
|
|
184
169
|
pyogrio/gdal_data/grib2_table_4_2_0_21.csv,sha256=30k7pyX-dRE2KdZzZ4lE4tNliimuRzYJevqXoRU9UvM,10262
|
|
185
|
-
pyogrio/gdal_data/gdalinfo_output.schema.json,sha256=
|
|
170
|
+
pyogrio/gdal_data/gdalinfo_output.schema.json,sha256=TDBG6nQXoUlzsZ0U0IY2Kgj3SqGCSueQwwXQXxrfJzM,8241
|
|
186
171
|
pyogrio/gdal_data/grib2_table_4_2_local_MRMS.csv,sha256=H_u9WF10JNULZrrg7fE4D0q-tFG0BT28Z8w3umpVDlM,15587
|
|
187
172
|
pyogrio/gdal_data/grib2_table_4_2_10_3.csv,sha256=LxrwVe-pgQTuqDSTGSarqfDaTqBED-L9uohVEyTeKIY,9989
|
|
188
|
-
pyogrio/gdal_data/ogrinfo_output.schema.json,sha256=
|
|
173
|
+
pyogrio/gdal_data/ogrinfo_output.schema.json,sha256=KAg0erS175ZGsaHth8ZOga_PIzra4wWbjHC3gK1qE6s,11667
|
|
189
174
|
pyogrio/gdal_data/grib2_table_4_2_10_2.csv,sha256=OitdURbBcwCaOEMxzAy0kugXFRiYn2TdB9oBIvSmTq4,10112
|
|
190
175
|
pyogrio/gdal_data/grib2_table_versions.csv,sha256=kmlTzSvGEG0hhPJwT9se8LVIVz61oufFbH-90NhFh_U,38
|
|
191
176
|
pyogrio/gdal_data/jpfgdgml_RdSgmtA.gfs,sha256=DrQoc9ubkSfkE8QL1Uvoq-EWklYvSIGeTw8cuJtZuZU,1644
|
|
192
177
|
pyogrio/gdal_data/ruian_vf_ob_v1.gfs,sha256=FnvtM-za4grKUwHUGLzBE_wxXj_0iYMXSg9Uf02MpBs,46735
|
|
193
178
|
pyogrio/gdal_data/inspire_cp_CadastralParcel.gfs,sha256=bxS0mxaUq_4ZHx1FyExuYmeIZuOUHcU_CV4Oxs-jDiQ,2450
|
|
194
|
-
pyogrio/gdal_data/ogrvrt.xsd,sha256=
|
|
179
|
+
pyogrio/gdal_data/ogrvrt.xsd,sha256=SNQQxkVk91zvy4iDxbz_PbOkPuhKKcq4RCxxqTAHNao,25164
|
|
195
180
|
pyogrio/gdal_data/stateplane.csv,sha256=MMYhCHKwpMENQHOajLa-2mMKfvPrTLB6cSjibo6Dy-M,10360
|
|
181
|
+
pyogrio/gdal_data/MM_m_idofic.csv,sha256=acV9u5XhcnROPCNrvnMulxBaApZ45wEd9nzjGoWylgQ,32388
|
|
196
182
|
pyogrio/gdal_data/grib2_table_4_2_0_20.csv,sha256=IUriHiSfaj_jzgaTT_lWVCZt-Uo_KSTinbaYDsQK8eY,12291
|
|
197
183
|
pyogrio/gdal_data/template_tiles.mapml,sha256=sb1swUtdRcWuDxRt2-8j07jZWr6oJQ_dU7Ep7fuPMt0,1947
|
|
198
184
|
pyogrio/gdal_data/grib2_table_4_2_0_18.csv,sha256=UGnoCo2YiZQj9wJJE4oajSegwv7jMxebvWU69-TeVfY,10224
|
|
199
|
-
pyogrio/gdal_data/gdalvrt.xsd,sha256=
|
|
185
|
+
pyogrio/gdal_data/gdalvrt.xsd,sha256=D_QIxwapVBY9W72htnIuTcv9SmnOXAaJgf2TxY8E3yM,39228
|
|
200
186
|
pyogrio/gdal_data/jpfgdgml_RdMgtBdry.gfs,sha256=icSd5TDjjersUSthlHjPande-IFpCVAEJWWReCSo0vY,1386
|
|
201
187
|
pyogrio/gdal_data/grib2_process.csv,sha256=5t64qqEuz435_VQfKj6jZrPpi9GUJPL-XS32V9VECg8,4926
|
|
202
188
|
pyogrio/gdal_data/grib2_center.csv,sha256=9qwbZ4W8m8-6dZG6LFskca3rCgl42bMLfzg0yQI_QjM,4171
|
|
@@ -213,11 +199,11 @@ pyogrio/gdal_data/grib2_table_4_2_10_4.csv,sha256=v11Tm6AQX7Y9rLhY7zjQeCR6jaO9lc
|
|
|
213
199
|
pyogrio/gdal_data/ozi_datum.csv,sha256=42eOPxRAhK6zSIwuGuIkfweoQfUBqJ5yJa6d2b-xmGg,8482
|
|
214
200
|
pyogrio/gdal_data/plscenesconf.json,sha256=Vd__WXJyPouwHYD13vuYnTYDtyPD7wPk1xV4oDcQ-Gc,41372
|
|
215
201
|
pyogrio/gdal_data/vicar.json,sha256=eSStEB2nV89BCRrUqec03eHSNUN1P3LC7t4Ryc19Asg,3610
|
|
216
|
-
pyogrio/gdal_data/nitf_spec.xsd,sha256=
|
|
202
|
+
pyogrio/gdal_data/nitf_spec.xsd,sha256=SkRz-ryVaE48VcuyOOeJvyVUiUZLJJazkCgKTKExm-U,7468
|
|
217
203
|
pyogrio/gdal_data/grib2_subcenter.csv,sha256=H1NnC7PusHTUbS3cFTfnwFyHskqvdgJNApd1FDUClFs,2328
|
|
218
204
|
pyogrio/gdal_data/copyright,sha256=Ha40aOgdANpW4pNvdNM7izrQnXJkN_Gc4gml2r6kH3c,21841
|
|
219
205
|
pyogrio/gdal_data/s57agencies.csv,sha256=IS73IR7YPEOCulni7kQ3pzMXE7KYM77nZFwHMcq8QnA,13304
|
|
220
|
-
pyogrio/gdal_data/GDALConfigVersion.cmake,sha256=
|
|
206
|
+
pyogrio/gdal_data/GDALConfigVersion.cmake,sha256=2Sj699YKOBrsKCI6W5FHHYOjV13fwcEzfVjy8fDa_4E,3678
|
|
221
207
|
pyogrio/gdal_data/ozi_ellips.csv,sha256=DINjv97cF4fVNGPXBeLhzo-9_NSdHjx3j11CgpgNdcY,1349
|
|
222
208
|
pyogrio/gdal_data/jpfgdgml_WStrL.gfs,sha256=6_4tnRheyIf-c3JQwKYxSHA4i-I7ORkf3InxygGqyJA,1505
|
|
223
209
|
pyogrio/gdal_data/GDALLogoBW.svg,sha256=qsnasz1HnguDK4vXyeVRDcvvNKfGzJrqlrviqrUWHFM,13022
|
|
@@ -234,6 +220,6 @@ pyogrio/gdal_data/grib2_table_4_2_local_NDFD.csv,sha256=-ax9PGvL20SKnBtm_yeUiXiV
|
|
|
234
220
|
pyogrio/gdal_data/jpfgdgml_BldA.gfs,sha256=AU71Y7NeeWHRmDB4tq7--DZWAQqsTV_XRNpJiBVULt0,1501
|
|
235
221
|
pyogrio/gdal_data/gdalmdiminfo_output.schema.json,sha256=uYqJkLuuqtCA6jwdnNGeNRF7XeeI6fy2Y-ybzZf7VaQ,6543
|
|
236
222
|
pyogrio/gdal_data/jpfgdgml_SBBdry.gfs,sha256=JDySSKChX3q0KetcBBC62Bvsr59qj8aq7_LWlAPOMys,1253
|
|
237
|
-
pyogrio/gdal_data/
|
|
238
|
-
pyogrio/gdal_data/vdv452.xml,sha256=q1KF0BR-dDEIomwkRLhTksR4f_maMumayx4hQ2wju8k,25816
|
|
223
|
+
pyogrio/gdal_data/vdv452.xml,sha256=wdV8j7f6QqQH-q4R5Z7jETRc1axL2cE0IX56tD9o3RE,24776
|
|
239
224
|
pyogrio/gdal_data/ecw_cs.wkt,sha256=1DGJPrRGsmXSBu6ohj3NzOO2XHwqcH2qtY6J5YOvAz4,364032
|
|
225
|
+
pyogrio/gdal_data/gdaltileindex.xsd,sha256=omsAL1b7lkIHcDfWJJ7m5UoqLKRTekPOYxeuLfK6LEA,10787
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2020-
|
|
3
|
+
Copyright (c) 2020-2024 Brendan C. Ward and pyogrio contributors
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
pyogrio/_err.pxd
DELETED