pyogrio 0.10.0__cp310-cp310-macosx_12_0_arm64.whl → 0.11.1__cp310-cp310-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.35.3.9.1.dylib → libgdal.36.3.10.3.dylib} +0 -0
- pyogrio/__init__.py +12 -10
- pyogrio/_compat.py +8 -0
- pyogrio/_err.cpython-310-darwin.so +0 -0
- pyogrio/_geometry.cpython-310-darwin.so +0 -0
- pyogrio/_io.cpython-310-darwin.so +0 -0
- pyogrio/_ogr.cpython-310-darwin.so +0 -0
- pyogrio/_version.py +3 -3
- pyogrio/_vsi.cpython-310-darwin.so +0 -0
- pyogrio/gdal_data/GDAL-targets-release.cmake +3 -3
- pyogrio/gdal_data/GDAL-targets.cmake +2 -2
- pyogrio/gdal_data/GDALConfigVersion.cmake +3 -3
- pyogrio/gdal_data/gdalinfo_output.schema.json +3 -3
- pyogrio/gdal_data/gdaltileindex.xsd +1 -17
- pyogrio/gdal_data/gdalvrt.xsd +48 -41
- pyogrio/gdal_data/nitf_spec.xml +1 -17
- pyogrio/gdal_data/nitf_spec.xsd +1 -17
- pyogrio/gdal_data/ogrvrt.xsd +1 -17
- pyogrio/gdal_data/osmconf.ini +3 -1
- pyogrio/gdal_data/pdfcomposition.xsd +1 -17
- pyogrio/gdal_data/template_tiles.mapml +28 -0
- pyogrio/gdal_data/vcpkg.spdx.json +30 -25
- pyogrio/gdal_data/vcpkg_abi_info.txt +28 -27
- pyogrio/gdal_data/vdv452.xml +1 -17
- pyogrio/gdal_data/vdv452.xsd +1 -17
- pyogrio/geopandas.py +91 -43
- pyogrio/proj_data/ITRF2014 +1 -1
- pyogrio/proj_data/ITRF2020 +91 -0
- pyogrio/proj_data/proj-config-version.cmake +3 -3
- 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/usage +7 -2
- pyogrio/proj_data/vcpkg.spdx.json +27 -22
- pyogrio/proj_data/vcpkg_abi_info.txt +16 -15
- pyogrio/tests/conftest.py +8 -0
- pyogrio/tests/test_arrow.py +3 -0
- pyogrio/tests/test_core.py +8 -4
- pyogrio/tests/test_geopandas_io.py +270 -45
- pyogrio/tests/test_path.py +10 -0
- pyogrio/tests/test_raw_io.py +6 -2
- pyogrio/util.py +15 -2
- {pyogrio-0.10.0.dist-info → pyogrio-0.11.1.dist-info}/METADATA +32 -37
- {pyogrio-0.10.0.dist-info → pyogrio-0.11.1.dist-info}/RECORD +49 -47
- {pyogrio-0.10.0.dist-info → pyogrio-0.11.1.dist-info}/WHEEL +2 -1
- {pyogrio-0.10.0.dist-info → pyogrio-0.11.1.dist-info/licenses}/LICENSE +0 -0
- {pyogrio-0.10.0.dist-info → pyogrio-0.11.1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pyogrio
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.11.1
|
|
4
4
|
Summary: Vectorized spatial vector file format I/O using GDAL/OGR
|
|
5
5
|
Author: pyogrio contributors
|
|
6
6
|
Author-email: "Brendan C. Ward" <bcward@astutespruce.com>
|
|
@@ -41,48 +41,43 @@ License-File: LICENSE
|
|
|
41
41
|
Requires-Dist: certifi
|
|
42
42
|
Requires-Dist: numpy
|
|
43
43
|
Requires-Dist: packaging
|
|
44
|
-
Provides-Extra: benchmark
|
|
45
|
-
Requires-Dist: pytest-benchmark ; extra == 'benchmark'
|
|
46
44
|
Provides-Extra: dev
|
|
47
|
-
Requires-Dist: cython
|
|
48
|
-
Provides-Extra: geopandas
|
|
49
|
-
Requires-Dist: geopandas ; extra == 'geopandas'
|
|
45
|
+
Requires-Dist: cython; extra == "dev"
|
|
50
46
|
Provides-Extra: test
|
|
51
|
-
Requires-Dist: pytest
|
|
52
|
-
Requires-Dist: pytest-cov
|
|
53
|
-
|
|
54
|
-
|
|
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
|
|
55
54
|
|
|
56
|
-
|
|
57
|
-
[GeoPandas](https://github.com/geopandas/geopandas)-oriented API to OGR vector
|
|
58
|
-
data sources, such as ESRI Shapefile, GeoPackage, and GeoJSON. Vector data sources
|
|
59
|
-
have geometries, such as points, lines, or polygons, and associated records
|
|
60
|
-
with potentially many columns worth of data.
|
|
55
|
+
# pyogrio - bulk-oriented spatial vector file I/O using GDAL/OGR
|
|
61
56
|
|
|
62
|
-
Pyogrio
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
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.
|
|
67
62
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
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.
|
|
71
68
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
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.
|
|
76
74
|
|
|
77
|
-
|
|
78
|
-
|
|
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).
|
|
79
77
|
|
|
80
78
|
Read the documentation for more information:
|
|
81
79
|
[https://pyogrio.readthedocs.io](https://pyogrio.readthedocs.io/en/latest/).
|
|
82
80
|
|
|
83
|
-
WARNING: Pyogrio is still at an early version and the API is subject to
|
|
84
|
-
substantial change. Please see [CHANGES](CHANGES.md).
|
|
85
|
-
|
|
86
81
|
## Requirements
|
|
87
82
|
|
|
88
83
|
Supports Python 3.9 - 3.13 and GDAL 3.4.x - 3.9.x.
|
|
@@ -105,9 +100,9 @@ for more information.
|
|
|
105
100
|
|
|
106
101
|
## Supported vector formats
|
|
107
102
|
|
|
108
|
-
Pyogrio supports
|
|
109
|
-
|
|
110
|
-
|
|
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.
|
|
111
106
|
|
|
112
107
|
Please see the [list of supported formats](https://pyogrio.readthedocs.io/en/latest/supported_formats.html)
|
|
113
108
|
for more information.
|
|
@@ -117,7 +112,7 @@ for more information.
|
|
|
117
112
|
Please read the [introduction](https://pyogrio.readthedocs.io/en/latest/supported_formats.html)
|
|
118
113
|
for more information and examples to get started using Pyogrio.
|
|
119
114
|
|
|
120
|
-
You can also check out the
|
|
115
|
+
You can also check out the [API documentation](https://pyogrio.readthedocs.io/en/latest/api.html)
|
|
121
116
|
for full details on using the API.
|
|
122
117
|
|
|
123
118
|
## Credits
|
|
@@ -1,50 +1,56 @@
|
|
|
1
|
-
pyogrio
|
|
2
|
-
pyogrio/
|
|
3
|
-
pyogrio
|
|
1
|
+
pyogrio-0.11.1.dist-info/RECORD,,
|
|
2
|
+
pyogrio-0.11.1.dist-info/WHEEL,sha256=6pa2fuyF_6Q7V-g0TImbCb_GytBBdzmeoywp3dPE17M,136
|
|
3
|
+
pyogrio-0.11.1.dist-info/top_level.txt,sha256=DUBAVaLxa9r0nHHskG8tHdP1P3zt6TYYPRiDBlEUc7Y,8
|
|
4
|
+
pyogrio-0.11.1.dist-info/METADATA,sha256=RWKIiEG-GRyTknGDJ5Xp9-WZldR4NQPwqKcvMVXegeU,5256
|
|
5
|
+
pyogrio-0.11.1.dist-info/licenses/LICENSE,sha256=cLGJD_UZOxwnHgUg3rmhlzRkgfv6x9s8yx1zZ1Orc10,1102
|
|
6
|
+
pyogrio/_ogr.cpython-310-darwin.so,sha256=YyABA-XMumRTNrvkP_iY5hoG_6v0mxq6Dh34nbwGcaQ,160896
|
|
7
|
+
pyogrio/_version.py,sha256=VZ4HnGSNSWJuyFf5AlXU7S7BXlDYoXAEgZu4Am8JLW0,498
|
|
8
|
+
pyogrio/_io.cpython-310-darwin.so,sha256=g0wU7W3GaoWiZfRx3YhD044pmhYOgaoBrwOGVo0PrXc,530880
|
|
4
9
|
pyogrio/raw.py,sha256=wF443ou_yv6-_c1_zBAPGsLzMCFUzxGBbicdHhlJdh0,34375
|
|
5
|
-
pyogrio/util.py,sha256=
|
|
6
|
-
pyogrio/_geometry.cpython-310-darwin.so,sha256=
|
|
7
|
-
pyogrio/__init__.py,sha256=
|
|
10
|
+
pyogrio/util.py,sha256=EanTwJHJXvd5uLLzQBuL5pMqjFyErvy-mTaCOA0hveI,7131
|
|
11
|
+
pyogrio/_geometry.cpython-310-darwin.so,sha256=nvGBdYGeCgcXrFX1OdVyu-tSlzQ0YWGrYnQ-Bovcdfg,116928
|
|
12
|
+
pyogrio/__init__.py,sha256=gsLtnp2fshNpz0C9kWlTr4VH3ZsLsHRdcnumEmnm4Hk,1313
|
|
8
13
|
pyogrio/core.py,sha256=Wck5hTG-Gw9xBslG9sJenrCq8DNXuVtc3ZM9R7u-drg,12702
|
|
9
|
-
pyogrio/_err.cpython-310-darwin.so,sha256=
|
|
10
|
-
pyogrio/geopandas.py,sha256=
|
|
14
|
+
pyogrio/_err.cpython-310-darwin.so,sha256=M132d-dmptwX0QJ-3v18v73FscpkpZ8zu5yqipwCjws,186528
|
|
15
|
+
pyogrio/geopandas.py,sha256=dBhoRukJ4CjYstJcBcZgnRKDWNDbOMABSew5Gf0o0_I,31192
|
|
11
16
|
pyogrio/errors.py,sha256=gVPzLg6A5QZ7MNDHKGSVwlpkOPt6WthhMctkIsJ_K1E,645
|
|
12
|
-
pyogrio/_compat.py,sha256=
|
|
13
|
-
pyogrio/_vsi.cpython-310-darwin.so,sha256=
|
|
17
|
+
pyogrio/_compat.py,sha256=Q2x7EHE-RQ9tiNzjJSkkbVqmJ5kEFFAA7PC_t7bf_4M,1508
|
|
18
|
+
pyogrio/_vsi.cpython-310-darwin.so,sha256=I4kW-hFPn33HvAf640eOHrxRzLgWtdeujcuVuHizS-I,141888
|
|
14
19
|
pyogrio/_env.py,sha256=VPsAlVd6PAG1c9Xp46P5zZYopj_5ZlitPMTkCrd7cfo,1494
|
|
15
|
-
pyogrio/proj_data/vcpkg.spdx.json,sha256=
|
|
16
|
-
pyogrio/proj_data/proj.db,sha256=
|
|
20
|
+
pyogrio/proj_data/vcpkg.spdx.json,sha256=dkolB5TxDBcOJi7tANzEy27mYEUMnZ4w926Hh2KHOK4,6161
|
|
21
|
+
pyogrio/proj_data/proj.db,sha256=f1lW9moJcBNOp1IV9AHT1794cPK8y9cbdHlyq0I2SoA,9359360
|
|
17
22
|
pyogrio/proj_data/nad83,sha256=mmJgyGgKvlIWyo_phZmPq6vBIbADKHmoIddcrjQR3JY,16593
|
|
18
23
|
pyogrio/proj_data/CH,sha256=bFPqQKLGAyW6bGuaK5wUO9FlZxw4gg7NjyPKq0omSrU,1097
|
|
19
24
|
pyogrio/proj_data/world,sha256=8nHNPlbHdZ0vz7u9OYcCZOuBBkFVcTwE_JLq3TCt60g,7079
|
|
20
|
-
pyogrio/proj_data/
|
|
21
|
-
pyogrio/proj_data/
|
|
22
|
-
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
|
|
23
29
|
pyogrio/proj_data/nad.lst,sha256=Gijthy_RVQ9b97Wl5b_F51ALX5TJdFuEodFWsyA5kow,6385
|
|
24
30
|
pyogrio/proj_data/ITRF2000,sha256=UiXDszZ6NwIeY5z9W9FSHSvV0Ay8R0zWs7OCdhWk_nI,2099
|
|
25
31
|
pyogrio/proj_data/ITRF2008,sha256=3GmF1XIeLh0Y-smW3uXeyQJE7z4gw49yIF4y2IQq8uI,5682
|
|
26
|
-
pyogrio/proj_data/proj-config-version.cmake,sha256=
|
|
32
|
+
pyogrio/proj_data/proj-config-version.cmake,sha256=D6fMl3Zprzp-LXg_6Bv5bgZyC8fRv-EXD0yFgJhejSA,1789
|
|
27
33
|
pyogrio/proj_data/triangulation.schema.json,sha256=sVKCZmZ9Tz6HByx043CycTUQFRWpASolKH_PMSzqF5o,8403
|
|
28
|
-
pyogrio/proj_data/proj-targets.cmake,sha256=
|
|
34
|
+
pyogrio/proj_data/proj-targets.cmake,sha256=LBEQNhA9lXIs6ApNbp1vorW3Mz6Xg8rd2S-luUUro60,4516
|
|
29
35
|
pyogrio/proj_data/deformation_model.schema.json,sha256=ugxZERFyB6k2_HOMHjHaABtFtRGTdzzgxnQhQ_NyuZ0,17671
|
|
30
|
-
pyogrio/proj_data/proj-config.cmake,sha256=
|
|
36
|
+
pyogrio/proj_data/proj-config.cmake,sha256=fyu_oILyBFm1onu8sHxnKAlsJq0j_z0BLMUE9Dunryo,2508
|
|
31
37
|
pyogrio/proj_data/nad27,sha256=C8IxkiRhrHWJIsanJR6W1-U-ZWYIsbTwa3hI-o_CVSA,19535
|
|
32
38
|
pyogrio/proj_data/copyright,sha256=ao8weT6HfTLj-IuXLwlwoFGjtaJs0FfTmTy1HiHEMxk,1784
|
|
33
39
|
pyogrio/proj_data/projjson.schema.json,sha256=Z_CQVWuumWUi7a1IJZfA-eG5GcpMkoisn4981BgPSbY,38418
|
|
34
|
-
pyogrio/proj_data/proj4-targets.cmake,sha256=
|
|
40
|
+
pyogrio/proj_data/proj4-targets.cmake,sha256=ukoXKvIcpmITe0IyB8D2kqDCwfWVXVmfs6us91q2wO4,4521
|
|
35
41
|
pyogrio/proj_data/GL27,sha256=hTdeYxXW9kTkV32t88XxV1KK0VtxXJmyh73asj1EGT0,728
|
|
36
42
|
pyogrio/proj_data/proj4-targets-release.cmake,sha256=5AMWErMkyX8NvT_r6MD_mrisCRtS-uOAk_odUdeIqRw,826
|
|
37
|
-
pyogrio/proj_data/ITRF2014,sha256=
|
|
43
|
+
pyogrio/proj_data/ITRF2014,sha256=X6F9a2aSjubLAa5BdP-L8yRYRov4Fwid8Rl3nf04Lvo,3490
|
|
38
44
|
pyogrio/proj_data/other.extra,sha256=we90wKmz4fQqV2wVvENmbBNbfpNh21cno1MgTaJ5zLs,3915
|
|
39
45
|
pyogrio/proj_data/proj-targets-release.cmake,sha256=EUGwmwyqLMarJjwhp5G63iw2U2s2nEln64t-eEYH3Q8,821
|
|
40
|
-
pyogrio/tests/conftest.py,sha256=
|
|
41
|
-
pyogrio/tests/test_raw_io.py,sha256=
|
|
42
|
-
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
|
|
43
49
|
pyogrio/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
50
|
pyogrio/tests/test_util.py,sha256=kCsVL87vgckQdUSQ9vl4wWCRv5mGQKIk7UWah_WAFhs,2126
|
|
45
|
-
pyogrio/tests/test_geopandas_io.py,sha256=
|
|
46
|
-
pyogrio/tests/test_path.py,sha256=
|
|
47
|
-
pyogrio/tests/test_arrow.py,sha256=
|
|
51
|
+
pyogrio/tests/test_geopandas_io.py,sha256=NKHl5WMbfzTjKLJZ6hnjflsPHRgjhF2Z4RP8iEcCL5Y,87925
|
|
52
|
+
pyogrio/tests/test_path.py,sha256=qENCJNdJi4nhVQSM65QZ7TgSg96RxIln8HZRkq1lh9c,12605
|
|
53
|
+
pyogrio/tests/test_arrow.py,sha256=20ZdHwXJQH9Z1mbZhdQ7OZjPux1Ptsa2utzr0xmKD9s,37803
|
|
48
54
|
pyogrio/tests/fixtures/curvepolygon.gpkg,sha256=AKEwmrDyn5ekxfbLnNO94nFD_JNnEtUQF2f2DwyWusc,98304
|
|
49
55
|
pyogrio/tests/fixtures/test_gpkg_nulls.gpkg,sha256=QoHTxV8gQuIXSrmhPFxaBtE4QQccGqPqLMExr69x4dg,98304
|
|
50
56
|
pyogrio/tests/fixtures/README.md,sha256=q-oUVZIJXOX12GJAaIDft3eSxrNF1dTDWSlLFmjIUI4,3606
|
|
@@ -57,7 +63,7 @@ pyogrio/tests/fixtures/naturalearth_lowres/naturalearth_lowres.cpg,sha256=CfwxMH
|
|
|
57
63
|
pyogrio/tests/fixtures/naturalearth_lowres/naturalearth_lowres.shp,sha256=CONBYG6DkeRYw_CN6zEt5mS1a_rjdgZMWqCu5mgaX1U,180924
|
|
58
64
|
pyogrio/tests/fixtures/naturalearth_lowres/naturalearth_lowres.dbf,sha256=0q4cma3PjkWGpbEsY5ZyA1-i8_Rp5yVZR94AQBw-1-E,48869
|
|
59
65
|
pyogrio/tests/fixtures/naturalearth_lowres/naturalearth_lowres.prj,sha256=mKrz0cDsrfGkJKRTbeJhw9r043NpfLhsQMQ7mJ2vUus,143
|
|
60
|
-
pyogrio/.dylibs/libgdal.
|
|
66
|
+
pyogrio/.dylibs/libgdal.36.3.10.3.dylib,sha256=o4pMiKdObE3leqgoZr9hkgYIFPWrg9ZfjIfAGiPM8DM,45475984
|
|
61
67
|
pyogrio/gdal_data/gml_registry.xml,sha256=2rVxsqdOS23ieg_eYtNIhxQcpFbRHKrN11oWay3lp0M,6643
|
|
62
68
|
pyogrio/gdal_data/grib2_table_4_2_2_5.csv,sha256=DMm7VDNZcLAKXwFA4SIgfExBb1d8iGFNMKpOoYmwY5U,9513
|
|
63
69
|
pyogrio/gdal_data/grib2_table_4_2_10_191.csv,sha256=D1EVM9Eyzl1STFGdSwy-OjkzyVNqUJc4JvToQgIcscg,9634
|
|
@@ -88,7 +94,7 @@ pyogrio/gdal_data/jpfgdgml_Cstline.gfs,sha256=cbzTD-Dbdi2QC-nO9Ep8i64E2CUW3m9nRh
|
|
|
88
94
|
pyogrio/gdal_data/inspire_cp_CadastralZoning.gfs,sha256=e1GC-8pLjZ6gc-OY0IUDd5LL2URNHcazWW-i7QMLTPo,4812
|
|
89
95
|
pyogrio/gdal_data/jpfgdgml_WA.gfs,sha256=GBCluVns9HsNGQMnEb4VXaYYi-cNgIo9LDYMCINVlnM,1497
|
|
90
96
|
pyogrio/gdal_data/grib2_table_4_2_2_3.csv,sha256=NhDBdFAucOn0CBT4N8txwupv58jwnpCY6ChnhGNjkfo,10634
|
|
91
|
-
pyogrio/gdal_data/vcpkg.spdx.json,sha256=
|
|
97
|
+
pyogrio/gdal_data/vcpkg.spdx.json,sha256=oG-PYoTH_2_TMVrc9Zj1FwKOYD6Yxrnp6wrXR4NmozI,8127
|
|
92
98
|
pyogrio/gdal_data/grib2_table_4_2_0_1.csv,sha256=Islx1uwOrtFhUgZcq0urhO9eG1bFDWjFieujFdQJq3M,16505
|
|
93
99
|
pyogrio/gdal_data/grib2_table_4_2_20_1.csv,sha256=PssQWXb7slKE9Lj3j6-7bzaT_MbaNYvW1Ye9svtdHRQ,9851
|
|
94
100
|
pyogrio/gdal_data/grib2_table_4_2_4_5.csv,sha256=UH1R3eJHZQ9Xejfrgr9km-ko28squEkiEdtdfqN9boE,9495
|
|
@@ -98,7 +104,7 @@ pyogrio/gdal_data/grib2_table_4_2_0_0.csv,sha256=7lcXiYZHBVvyTtJuzN7_N7bcCTaT98t
|
|
|
98
104
|
pyogrio/gdal_data/seed_2d.dgn,sha256=3YRl8YVp2SiYCengliEV02XQpW3gITk5UqXnoKILUnw,9216
|
|
99
105
|
pyogrio/gdal_data/jpfgdgml_RailCL.gfs,sha256=WfcPfaAxyRwH0hGYR8cWo9KzkYaeVjdMpWdCj88L2Lc,1507
|
|
100
106
|
pyogrio/gdal_data/jpfgdgml_WStrA.gfs,sha256=ul-hFP9A9jVcIW4xKShR6C0yjXAq8HEPUkk8oLyH27A,1503
|
|
101
|
-
pyogrio/gdal_data/GDAL-targets.cmake,sha256=
|
|
107
|
+
pyogrio/gdal_data/GDAL-targets.cmake,sha256=ptTI3jfTABirFhAIZmN10o-4z11V961aVoOfPo8D3Vs,4035
|
|
102
108
|
pyogrio/gdal_data/grib2_table_4_2_2_0.csv,sha256=VmMPvFRcEifRi8w6eXg9Z3i_JcxhnqAcdxM4ymWV1E0,12666
|
|
103
109
|
pyogrio/gdal_data/grib2_table_4_2_0_2.csv,sha256=Hcr_tN5FR17RXjlBWHh1N-fHS7opzUxThapntte7Bd4,10892
|
|
104
110
|
pyogrio/gdal_data/jpfgdgml_SBAPt.gfs,sha256=6SXkKWcv4sOfsZUtRPBx3kSg2H8JgSLhK_fxaHhOxuE,1375
|
|
@@ -110,11 +116,11 @@ pyogrio/gdal_data/grib2_table_4_2_0_3.csv,sha256=VyZN8AA5z_yyp6bELgKOect5RZZWX27
|
|
|
110
116
|
pyogrio/gdal_data/pds4_template.xml,sha256=rqpN2EsXceGQFfSMeWMoD_2PrU88izTiY275iU5W9mI,3433
|
|
111
117
|
pyogrio/gdal_data/jpfgdgml_AdmArea.gfs,sha256=F8i9JfKPfW_hTQyCHb9rqmnqHhH2nGlVfAFsmF67-Rg,1640
|
|
112
118
|
pyogrio/gdal_data/grib2_table_4_2_0_17.csv,sha256=A4I5bH537GYR-TnRfb22wWfzM7nLp4OBcXSExvrLv18,923
|
|
113
|
-
pyogrio/gdal_data/osmconf.ini,sha256=
|
|
119
|
+
pyogrio/gdal_data/osmconf.ini,sha256=oOgbs6BAhrJEBVh3S_QczWkxkeWXjY9_G-eaBEHl8Zg,5485
|
|
114
120
|
pyogrio/gdal_data/grib2_table_4_2_3_6.csv,sha256=GklA-e-8iI9GXxT-rAQ_fzEA9h4s13bKfVuUvLj2v9g,819
|
|
115
121
|
pyogrio/gdal_data/GDALLogoGS.svg,sha256=Gubi2S5rBDnzuu4MtV2ti5er-0_MWMkYmyO2PIGK7so,12305
|
|
116
122
|
pyogrio/gdal_data/jpfgdgml_RdASL.gfs,sha256=mg_FOmbuKivcTjWcIxVdf3KYzKv9x0m7DUGI1UHnFOk,1251
|
|
117
|
-
pyogrio/gdal_data/vdv452.xsd,sha256=
|
|
123
|
+
pyogrio/gdal_data/vdv452.xsd,sha256=3Uy74ZrFAwE8ZwlqfgXYOwb3QBzlaU2-lNxwl0qq9uk,1814
|
|
118
124
|
pyogrio/gdal_data/grib2_table_4_2_0_16.csv,sha256=mut7PcQsX0ZPxMjU_oHfuTTGwPUAbxkJy2Yp-ybLV-0,9671
|
|
119
125
|
pyogrio/gdal_data/grib2_table_4_2_0_14.csv,sha256=FX7I5iVqwq7iZITOHtI74X-ifJWuBDvpv2qW18jkZ2k,9551
|
|
120
126
|
pyogrio/gdal_data/default.rsc,sha256=nhydcIHVJ3XnUNQVXUklUlKwTKgf7yfLKZdnXTzZYms,463632
|
|
@@ -125,7 +131,7 @@ pyogrio/gdal_data/grib2_table_4_2_3_5.csv,sha256=BPr_V_toW-rW2gBwOrD910yaad-Z6W9
|
|
|
125
131
|
pyogrio/gdal_data/s57attributes.csv,sha256=9Lbf4ugv6l5-5DPhNoMpKj-gm7ZnUEKOSxV4-ZpG0t4,20001
|
|
126
132
|
pyogrio/gdal_data/gfs.xsd,sha256=TCLwaVONVD6Fh94o6Hw-NClD8-2erBsz3V9dgozmG5I,16469
|
|
127
133
|
pyogrio/gdal_data/grib2_table_4_2_3_4.csv,sha256=Hu4t2JRqRwfmaM3AqgFhUXKfhb86y3A4e4qOYxVMrQw,1051
|
|
128
|
-
pyogrio/gdal_data/pdfcomposition.xsd,sha256=
|
|
134
|
+
pyogrio/gdal_data/pdfcomposition.xsd,sha256=2NeoZJ0rIPHUmVwsSDFZ2O_-w399Cpq62UTz_779-3w,33294
|
|
129
135
|
pyogrio/gdal_data/inspire_cp_BasicPropertyUnit.gfs,sha256=KG17Z8L6OlwyHUOfgxk7wG4MagplNoOOefFRZ4q1Rxw,1740
|
|
130
136
|
pyogrio/gdal_data/grib2_table_4_2_0_15.csv,sha256=7eBU5WigNMmSwRD7SKmCMpMzvqoBJJgcJvT55LIowhI,9846
|
|
131
137
|
pyogrio/gdal_data/jpfgdgml_CommBdry.gfs,sha256=dLHB579iCR6aIbNNiFHaX_xpdiLs3xMqm_zrRZ1kACw,1384
|
|
@@ -137,11 +143,11 @@ pyogrio/gdal_data/grib2_table_4_2_3_1.csv,sha256=_UjqsYLrMmAUhR1h2iJzqZJeTvhFuNf
|
|
|
137
143
|
pyogrio/gdal_data/jpfgdgml_RdEdg.gfs,sha256=zFrWUKdRQpadmkTottrgNxknbGTc-87RTqTzhJ-Jt4U,1642
|
|
138
144
|
pyogrio/gdal_data/esri_StatePlane_extra.wkt,sha256=aC3xsjHLbxKHaF1MZL8bJhHAr0PDBINHO7s2bOG9jTM,332546
|
|
139
145
|
pyogrio/gdal_data/usage,sha256=yFWEJh4gEalLhvBMOijdLhZcnmtHZ3qb7iaj04e8BfI,136
|
|
140
|
-
pyogrio/gdal_data/nitf_spec.xml,sha256
|
|
146
|
+
pyogrio/gdal_data/nitf_spec.xml,sha256=-xl5DBIJLIK6RUN-rSDAzLQhwGGInm-QyD_eQ1b6WZU,186405
|
|
141
147
|
pyogrio/gdal_data/tms_MapML_CBMTILE.json,sha256=tZaccbdXtciaiOyOkESWhCT1lGtiXtTwfSvgmNwm14A,7792
|
|
142
148
|
pyogrio/gdal_data/header.dxf,sha256=9GpEP0k-Q3B7x5hbnyhEViwk_qV21xVw_yr-kTF0Sd4,6572
|
|
143
149
|
pyogrio/gdal_data/grib2_table_4_2_1_1.csv,sha256=3FyIbZA43DVDSURtfTyKmbqw2bCyvB9K5ObuED1fIiU,9655
|
|
144
|
-
pyogrio/gdal_data/GDAL-targets-release.cmake,sha256=
|
|
150
|
+
pyogrio/gdal_data/GDAL-targets-release.cmake,sha256=M1RpQnS5lMXDnobmhLpZvpXXAue2xuOdtYnSei5vu1A,849
|
|
145
151
|
pyogrio/gdal_data/grib2_table_4_2_3_3.csv,sha256=I4cT-Ad19soux0yIC8cQw-UPDHA8slwLynqEtOb-_PQ,784
|
|
146
152
|
pyogrio/gdal_data/grib2_table_4_2_3_2.csv,sha256=FWUq3hX244-kBMJor_98vRY7ujIaf_ZF6SzLHOv5X8M,3833
|
|
147
153
|
pyogrio/gdal_data/grib2_table_4_2_local_Canada.csv,sha256=m8GRxbypdPQvvdSIA38HTuHKu6gO_i2lC4_SVMDcv_U,333
|
|
@@ -151,7 +157,7 @@ pyogrio/gdal_data/grib2_table_4_2_local_NCEP.csv,sha256=3u547LbwYlq1zC48OFIOqpIZ
|
|
|
151
157
|
pyogrio/gdal_data/grib2_table_4_2_0_13.csv,sha256=FiAWXbiJem9ePbrtXLu7chBm2H-PhZ39DNI_c7CXE3I,9596
|
|
152
158
|
pyogrio/gdal_data/ruian_vf_v1.gfs,sha256=Tl4_j6ZZgk6Do3HDCmPLrMyvDcI0KZZ7cpIvTMh6FBU,67252
|
|
153
159
|
pyogrio/gdal_data/jpfgdgml_ElevPt.gfs,sha256=9MRSGeU4EV1qAZ6Q2JEBsINXQXjxtlLg7JFgnFH3bIM,1500
|
|
154
|
-
pyogrio/gdal_data/vcpkg_abi_info.txt,sha256=
|
|
160
|
+
pyogrio/gdal_data/vcpkg_abi_info.txt,sha256=O5vLb3BPNW1w1gJJeW_8fo6_8PfvRRjS82Wu3TpaPXk,3267
|
|
155
161
|
pyogrio/gdal_data/grib2_table_4_2_0_190.csv,sha256=xF_PY2JAidyUTzFRSakOV3SITD5OD2LgF-2WT_vG0bc,9507
|
|
156
162
|
pyogrio/gdal_data/grib2_table_4_2_10_0.csv,sha256=9P_7VCO55ZdL-Acj5lwY6ECnruzcgMAb7bmeQYIG7-c,11822
|
|
157
163
|
pyogrio/gdal_data/grib2_table_4_2_10_1.csv,sha256=lWT-VZLPKNdqWmFE4TBRVncsUsqRkxCzcIIk7TNuOGk,9625
|
|
@@ -161,7 +167,7 @@ pyogrio/gdal_data/grib2_table_4_2_0_191.csv,sha256=nb6bmMA90CcIbRmdWTwC_BWcEo4M4
|
|
|
161
167
|
pyogrio/gdal_data/jpfgdgml_RdCompt.gfs,sha256=e19AWCj_6GE7AR8sUE8WlRUZuOkDsfPgVrkRW4aZaK8,1646
|
|
162
168
|
pyogrio/gdal_data/s57expectedinput.csv,sha256=1bCaXEJI8-sJBqTjrGjXOAyG-BnXDerjZi5zbwWXvGw,20885
|
|
163
169
|
pyogrio/gdal_data/grib2_table_4_2_0_21.csv,sha256=30k7pyX-dRE2KdZzZ4lE4tNliimuRzYJevqXoRU9UvM,10262
|
|
164
|
-
pyogrio/gdal_data/gdalinfo_output.schema.json,sha256=
|
|
170
|
+
pyogrio/gdal_data/gdalinfo_output.schema.json,sha256=TDBG6nQXoUlzsZ0U0IY2Kgj3SqGCSueQwwXQXxrfJzM,8241
|
|
165
171
|
pyogrio/gdal_data/grib2_table_4_2_local_MRMS.csv,sha256=H_u9WF10JNULZrrg7fE4D0q-tFG0BT28Z8w3umpVDlM,15587
|
|
166
172
|
pyogrio/gdal_data/grib2_table_4_2_10_3.csv,sha256=LxrwVe-pgQTuqDSTGSarqfDaTqBED-L9uohVEyTeKIY,9989
|
|
167
173
|
pyogrio/gdal_data/ogrinfo_output.schema.json,sha256=KAg0erS175ZGsaHth8ZOga_PIzra4wWbjHC3gK1qE6s,11667
|
|
@@ -170,12 +176,13 @@ pyogrio/gdal_data/grib2_table_versions.csv,sha256=kmlTzSvGEG0hhPJwT9se8LVIVz61ou
|
|
|
170
176
|
pyogrio/gdal_data/jpfgdgml_RdSgmtA.gfs,sha256=DrQoc9ubkSfkE8QL1Uvoq-EWklYvSIGeTw8cuJtZuZU,1644
|
|
171
177
|
pyogrio/gdal_data/ruian_vf_ob_v1.gfs,sha256=FnvtM-za4grKUwHUGLzBE_wxXj_0iYMXSg9Uf02MpBs,46735
|
|
172
178
|
pyogrio/gdal_data/inspire_cp_CadastralParcel.gfs,sha256=bxS0mxaUq_4ZHx1FyExuYmeIZuOUHcU_CV4Oxs-jDiQ,2450
|
|
173
|
-
pyogrio/gdal_data/ogrvrt.xsd,sha256=
|
|
179
|
+
pyogrio/gdal_data/ogrvrt.xsd,sha256=SNQQxkVk91zvy4iDxbz_PbOkPuhKKcq4RCxxqTAHNao,25164
|
|
174
180
|
pyogrio/gdal_data/stateplane.csv,sha256=MMYhCHKwpMENQHOajLa-2mMKfvPrTLB6cSjibo6Dy-M,10360
|
|
175
181
|
pyogrio/gdal_data/MM_m_idofic.csv,sha256=acV9u5XhcnROPCNrvnMulxBaApZ45wEd9nzjGoWylgQ,32388
|
|
176
182
|
pyogrio/gdal_data/grib2_table_4_2_0_20.csv,sha256=IUriHiSfaj_jzgaTT_lWVCZt-Uo_KSTinbaYDsQK8eY,12291
|
|
183
|
+
pyogrio/gdal_data/template_tiles.mapml,sha256=sb1swUtdRcWuDxRt2-8j07jZWr6oJQ_dU7Ep7fuPMt0,1947
|
|
177
184
|
pyogrio/gdal_data/grib2_table_4_2_0_18.csv,sha256=UGnoCo2YiZQj9wJJE4oajSegwv7jMxebvWU69-TeVfY,10224
|
|
178
|
-
pyogrio/gdal_data/gdalvrt.xsd,sha256=
|
|
185
|
+
pyogrio/gdal_data/gdalvrt.xsd,sha256=D_QIxwapVBY9W72htnIuTcv9SmnOXAaJgf2TxY8E3yM,39228
|
|
179
186
|
pyogrio/gdal_data/jpfgdgml_RdMgtBdry.gfs,sha256=icSd5TDjjersUSthlHjPande-IFpCVAEJWWReCSo0vY,1386
|
|
180
187
|
pyogrio/gdal_data/grib2_process.csv,sha256=5t64qqEuz435_VQfKj6jZrPpi9GUJPL-XS32V9VECg8,4926
|
|
181
188
|
pyogrio/gdal_data/grib2_center.csv,sha256=9qwbZ4W8m8-6dZG6LFskca3rCgl42bMLfzg0yQI_QjM,4171
|
|
@@ -192,11 +199,11 @@ pyogrio/gdal_data/grib2_table_4_2_10_4.csv,sha256=v11Tm6AQX7Y9rLhY7zjQeCR6jaO9lc
|
|
|
192
199
|
pyogrio/gdal_data/ozi_datum.csv,sha256=42eOPxRAhK6zSIwuGuIkfweoQfUBqJ5yJa6d2b-xmGg,8482
|
|
193
200
|
pyogrio/gdal_data/plscenesconf.json,sha256=Vd__WXJyPouwHYD13vuYnTYDtyPD7wPk1xV4oDcQ-Gc,41372
|
|
194
201
|
pyogrio/gdal_data/vicar.json,sha256=eSStEB2nV89BCRrUqec03eHSNUN1P3LC7t4Ryc19Asg,3610
|
|
195
|
-
pyogrio/gdal_data/nitf_spec.xsd,sha256=
|
|
202
|
+
pyogrio/gdal_data/nitf_spec.xsd,sha256=SkRz-ryVaE48VcuyOOeJvyVUiUZLJJazkCgKTKExm-U,7468
|
|
196
203
|
pyogrio/gdal_data/grib2_subcenter.csv,sha256=H1NnC7PusHTUbS3cFTfnwFyHskqvdgJNApd1FDUClFs,2328
|
|
197
204
|
pyogrio/gdal_data/copyright,sha256=Ha40aOgdANpW4pNvdNM7izrQnXJkN_Gc4gml2r6kH3c,21841
|
|
198
205
|
pyogrio/gdal_data/s57agencies.csv,sha256=IS73IR7YPEOCulni7kQ3pzMXE7KYM77nZFwHMcq8QnA,13304
|
|
199
|
-
pyogrio/gdal_data/GDALConfigVersion.cmake,sha256=
|
|
206
|
+
pyogrio/gdal_data/GDALConfigVersion.cmake,sha256=2Sj699YKOBrsKCI6W5FHHYOjV13fwcEzfVjy8fDa_4E,3678
|
|
200
207
|
pyogrio/gdal_data/ozi_ellips.csv,sha256=DINjv97cF4fVNGPXBeLhzo-9_NSdHjx3j11CgpgNdcY,1349
|
|
201
208
|
pyogrio/gdal_data/jpfgdgml_WStrL.gfs,sha256=6_4tnRheyIf-c3JQwKYxSHA4i-I7ORkf3InxygGqyJA,1505
|
|
202
209
|
pyogrio/gdal_data/GDALLogoBW.svg,sha256=qsnasz1HnguDK4vXyeVRDcvvNKfGzJrqlrviqrUWHFM,13022
|
|
@@ -213,11 +220,6 @@ pyogrio/gdal_data/grib2_table_4_2_local_NDFD.csv,sha256=-ax9PGvL20SKnBtm_yeUiXiV
|
|
|
213
220
|
pyogrio/gdal_data/jpfgdgml_BldA.gfs,sha256=AU71Y7NeeWHRmDB4tq7--DZWAQqsTV_XRNpJiBVULt0,1501
|
|
214
221
|
pyogrio/gdal_data/gdalmdiminfo_output.schema.json,sha256=uYqJkLuuqtCA6jwdnNGeNRF7XeeI6fy2Y-ybzZf7VaQ,6543
|
|
215
222
|
pyogrio/gdal_data/jpfgdgml_SBBdry.gfs,sha256=JDySSKChX3q0KetcBBC62Bvsr59qj8aq7_LWlAPOMys,1253
|
|
216
|
-
pyogrio/gdal_data/vdv452.xml,sha256=
|
|
223
|
+
pyogrio/gdal_data/vdv452.xml,sha256=wdV8j7f6QqQH-q4R5Z7jETRc1axL2cE0IX56tD9o3RE,24776
|
|
217
224
|
pyogrio/gdal_data/ecw_cs.wkt,sha256=1DGJPrRGsmXSBu6ohj3NzOO2XHwqcH2qtY6J5YOvAz4,364032
|
|
218
|
-
pyogrio/gdal_data/gdaltileindex.xsd,sha256=
|
|
219
|
-
pyogrio-0.10.0.dist-info/RECORD,,
|
|
220
|
-
pyogrio-0.10.0.dist-info/LICENSE,sha256=cLGJD_UZOxwnHgUg3rmhlzRkgfv6x9s8yx1zZ1Orc10,1102
|
|
221
|
-
pyogrio-0.10.0.dist-info/WHEEL,sha256=--Ymsu41TuPfIR-1S4wafqJa3FR4c_mDiNnWEJlW_As,109
|
|
222
|
-
pyogrio-0.10.0.dist-info/top_level.txt,sha256=DUBAVaLxa9r0nHHskG8tHdP1P3zt6TYYPRiDBlEUc7Y,8
|
|
223
|
-
pyogrio-0.10.0.dist-info/METADATA,sha256=Kip5YfRSMB2QTK_yJcdI0CSElUKjz0jHLBimi68Nf8E,5501
|
|
225
|
+
pyogrio/gdal_data/gdaltileindex.xsd,sha256=omsAL1b7lkIHcDfWJJ7m5UoqLKRTekPOYxeuLfK6LEA,10787
|
|
File without changes
|
|
File without changes
|