pyogrio 0.10.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.

Files changed (49) hide show
  1. pyogrio/.dylibs/{libgdal.35.3.9.1.dylib → libgdal.36.3.10.3.dylib} +0 -0
  2. pyogrio/__init__.py +9 -9
  3. pyogrio/_compat.py +8 -0
  4. pyogrio/_err.cpython-312-darwin.so +0 -0
  5. pyogrio/_geometry.cpython-312-darwin.so +0 -0
  6. pyogrio/_io.cpython-312-darwin.so +0 -0
  7. pyogrio/_ogr.cpython-312-darwin.so +0 -0
  8. pyogrio/_version.py +3 -3
  9. pyogrio/_vsi.cpython-312-darwin.so +0 -0
  10. pyogrio/gdal_data/GDAL-targets-release.cmake +3 -3
  11. pyogrio/gdal_data/GDAL-targets.cmake +2 -2
  12. pyogrio/gdal_data/GDALConfigVersion.cmake +3 -3
  13. pyogrio/gdal_data/gdalinfo_output.schema.json +3 -3
  14. pyogrio/gdal_data/gdaltileindex.xsd +1 -17
  15. pyogrio/gdal_data/gdalvrt.xsd +48 -41
  16. pyogrio/gdal_data/nitf_spec.xml +1 -17
  17. pyogrio/gdal_data/nitf_spec.xsd +1 -17
  18. pyogrio/gdal_data/ogrvrt.xsd +1 -17
  19. pyogrio/gdal_data/osmconf.ini +3 -1
  20. pyogrio/gdal_data/pdfcomposition.xsd +1 -17
  21. pyogrio/gdal_data/template_tiles.mapml +28 -0
  22. pyogrio/gdal_data/vcpkg.spdx.json +28 -23
  23. pyogrio/gdal_data/vcpkg_abi_info.txt +28 -27
  24. pyogrio/gdal_data/vdv452.xml +1 -17
  25. pyogrio/gdal_data/vdv452.xsd +1 -17
  26. pyogrio/geopandas.py +91 -43
  27. pyogrio/proj_data/ITRF2014 +1 -1
  28. pyogrio/proj_data/ITRF2020 +91 -0
  29. pyogrio/proj_data/proj-config-version.cmake +3 -3
  30. pyogrio/proj_data/proj-config.cmake +1 -1
  31. pyogrio/proj_data/proj-targets.cmake +3 -3
  32. pyogrio/proj_data/proj.db +0 -0
  33. pyogrio/proj_data/proj.ini +11 -3
  34. pyogrio/proj_data/proj4-targets.cmake +3 -3
  35. pyogrio/proj_data/usage +7 -2
  36. pyogrio/proj_data/vcpkg.spdx.json +27 -22
  37. pyogrio/proj_data/vcpkg_abi_info.txt +16 -15
  38. pyogrio/tests/conftest.py +8 -0
  39. pyogrio/tests/test_arrow.py +3 -0
  40. pyogrio/tests/test_core.py +8 -4
  41. pyogrio/tests/test_geopandas_io.py +250 -42
  42. pyogrio/tests/test_path.py +10 -0
  43. pyogrio/tests/test_raw_io.py +6 -2
  44. pyogrio/util.py +15 -2
  45. {pyogrio-0.10.0.dist-info → pyogrio-0.11.0.dist-info}/METADATA +32 -37
  46. {pyogrio-0.10.0.dist-info → pyogrio-0.11.0.dist-info}/RECORD +49 -47
  47. {pyogrio-0.10.0.dist-info → pyogrio-0.11.0.dist-info}/WHEEL +2 -1
  48. {pyogrio-0.10.0.dist-info → pyogrio-0.11.0.dist-info/licenses}/LICENSE +0 -0
  49. {pyogrio-0.10.0.dist-info → pyogrio-0.11.0.dist-info}/top_level.txt +0 -0
pyogrio/__init__.py CHANGED
@@ -32,24 +32,24 @@ __version__ = get_versions()["version"]
32
32
  del get_versions
33
33
 
34
34
  __all__ = [
35
- "list_drivers",
35
+ "__gdal_geos_version__",
36
+ "__gdal_version__",
37
+ "__gdal_version_string__",
38
+ "__version__",
36
39
  "detect_write_driver",
37
- "list_layers",
38
- "read_bounds",
39
- "read_info",
40
- "set_gdal_config_options",
41
40
  "get_gdal_config_option",
42
41
  "get_gdal_data_path",
42
+ "list_drivers",
43
+ "list_layers",
43
44
  "open_arrow",
44
45
  "read_arrow",
46
+ "read_bounds",
45
47
  "read_dataframe",
48
+ "read_info",
49
+ "set_gdal_config_options",
46
50
  "vsi_listtree",
47
51
  "vsi_rmtree",
48
52
  "vsi_unlink",
49
53
  "write_arrow",
50
54
  "write_dataframe",
51
- "__gdal_version__",
52
- "__gdal_version_string__",
53
- "__gdal_geos_version__",
54
- "__version__",
55
55
  ]
pyogrio/_compat.py CHANGED
@@ -33,15 +33,23 @@ HAS_ARROW_API = __gdal_version__ >= (3, 6, 0)
33
33
  HAS_ARROW_WRITE_API = __gdal_version__ >= (3, 8, 0)
34
34
  HAS_PYARROW = pyarrow is not None
35
35
  HAS_PYPROJ = pyproj is not None
36
+ PYARROW_GE_19 = pyarrow is not None and Version(pyarrow.__version__) >= Version(
37
+ "19.0.0"
38
+ )
36
39
 
37
40
  HAS_GEOPANDAS = geopandas is not None
38
41
 
39
42
  PANDAS_GE_15 = pandas is not None and Version(pandas.__version__) >= Version("1.5.0")
40
43
  PANDAS_GE_20 = pandas is not None and Version(pandas.__version__) >= Version("2.0.0")
41
44
  PANDAS_GE_22 = pandas is not None and Version(pandas.__version__) >= Version("2.2.0")
45
+ PANDAS_GE_30 = pandas is not None and Version(pandas.__version__) >= Version("3.0.0dev")
42
46
 
47
+ GDAL_GE_352 = __gdal_version__ >= (3, 5, 2)
48
+ GDAL_GE_37 = __gdal_version__ >= (3, 7, 0)
43
49
  GDAL_GE_38 = __gdal_version__ >= (3, 8, 0)
50
+ GDAL_GE_311 = __gdal_version__ >= (3, 11, 0)
44
51
 
45
52
  HAS_GDAL_GEOS = __gdal_geos_version__ is not None
46
53
 
47
54
  HAS_SHAPELY = shapely is not None and Version(shapely.__version__) >= Version("2.0.0")
55
+ SHAPELY_GE_21 = shapely is not None and Version(shapely.__version__) >= Version("2.1.0")
Binary file
Binary file
Binary file
Binary file
pyogrio/_version.py CHANGED
@@ -8,11 +8,11 @@ import json
8
8
 
9
9
  version_json = '''
10
10
  {
11
- "date": "2024-09-28T11:22:57-0700",
11
+ "date": "2025-05-08T16:44:26+0200",
12
12
  "dirty": false,
13
13
  "error": null,
14
- "full-revisionid": "eb8e7889224155ffa0f779360db29f07f370eef1",
15
- "version": "0.10.0"
14
+ "full-revisionid": "7ada821e195a4c74b5135ae88d1e8c494afb0c9a",
15
+ "version": "0.11.0"
16
16
  }
17
17
  ''' # END VERSION_JSON
18
18
 
Binary file
@@ -8,12 +8,12 @@ set(CMAKE_IMPORT_FILE_VERSION 1)
8
8
  # Import target "GDAL::GDAL" for configuration "Release"
9
9
  set_property(TARGET GDAL::GDAL APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
10
10
  set_target_properties(GDAL::GDAL PROPERTIES
11
- IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libgdal.35.3.9.1.dylib"
12
- IMPORTED_SONAME_RELEASE "@rpath/libgdal.35.dylib"
11
+ IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libgdal.36.3.10.3.dylib"
12
+ IMPORTED_SONAME_RELEASE "@rpath/libgdal.36.dylib"
13
13
  )
14
14
 
15
15
  list(APPEND _cmake_import_check_targets GDAL::GDAL )
16
- list(APPEND _cmake_import_check_files_for_GDAL::GDAL "${_IMPORT_PREFIX}/lib/libgdal.35.3.9.1.dylib" )
16
+ list(APPEND _cmake_import_check_files_for_GDAL::GDAL "${_IMPORT_PREFIX}/lib/libgdal.36.3.10.3.dylib" )
17
17
 
18
18
  # Commands beyond this point should not need to know the version.
19
19
  set(CMAKE_IMPORT_FILE_VERSION)
@@ -1,13 +1,13 @@
1
1
  # Generated by CMake
2
2
 
3
3
  if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
4
- message(FATAL_ERROR "CMake >= 2.8.0 required")
4
+ message(FATAL_ERROR "CMake >= 2.8.3 required")
5
5
  endif()
6
6
  if(CMAKE_VERSION VERSION_LESS "2.8.3")
7
7
  message(FATAL_ERROR "CMake >= 2.8.3 required")
8
8
  endif()
9
9
  cmake_policy(PUSH)
10
- cmake_policy(VERSION 2.8.3...3.28)
10
+ cmake_policy(VERSION 2.8.3...3.29)
11
11
  #----------------------------------------------------------------
12
12
  # Generated CMake target import file.
13
13
  #----------------------------------------------------------------
@@ -10,13 +10,13 @@
10
10
  # The variable CVF_VERSION must be set before calling configure_file().
11
11
 
12
12
 
13
- set(PACKAGE_VERSION "3.9.1")
13
+ set(PACKAGE_VERSION "3.10.3")
14
14
 
15
15
  if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
16
16
  set(PACKAGE_VERSION_COMPATIBLE FALSE)
17
17
  else()
18
18
 
19
- if("3.9.1" MATCHES "^([0-9]+)\\.([0-9]+)")
19
+ if("3.10.3" MATCHES "^([0-9]+)\\.([0-9]+)")
20
20
  set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
21
21
  set(CVF_VERSION_MINOR "${CMAKE_MATCH_2}")
22
22
 
@@ -27,7 +27,7 @@ else()
27
27
  string(REGEX REPLACE "^0+" "" CVF_VERSION_MINOR "${CVF_VERSION_MINOR}")
28
28
  endif()
29
29
  else()
30
- set(CVF_VERSION_MAJOR "3.9.1")
30
+ set(CVF_VERSION_MAJOR "3.10.3")
31
31
  set(CVF_VERSION_MINOR "")
32
32
  endif()
33
33
 
@@ -277,7 +277,7 @@
277
277
  },
278
278
 
279
279
  "stac": {
280
- "$comment": "Derived from https://raw.githubusercontent.com/stac-extensions/projection/main/json-schema/schema.json#/definitions/fields, https://raw.githubusercontent.com/stac-extensions/eo/main/json-schema/schema.json#/definitions/bands and https://raw.githubusercontent.com/stac-extensions/eo/main/json-schema/schema.json#/definitions/bands",
280
+ "$comment": "Derived from https://raw.githubusercontent.com/stac-extensions/projection/main/json-schema/schema.json#/definitions/fields, https://raw.githubusercontent.com/stac-extensions/eo/v1.1.0/json-schema/schema.json#/definitions/bands and https://raw.githubusercontent.com/stac-extensions/eo/v1.1.0/json-schema/schema.json#/definitions/bands",
281
281
  "type": "object",
282
282
  "properties": {
283
283
  "proj:epsg": {
@@ -334,10 +334,10 @@
334
334
  }
335
335
  },
336
336
  "eo:bands": {
337
- "$ref": "https://raw.githubusercontent.com/stac-extensions/eo/main/json-schema/schema.json#/definitions/bands"
337
+ "$ref": "https://raw.githubusercontent.com/stac-extensions/eo/v1.1.0/json-schema/schema.json#/definitions/bands"
338
338
  },
339
339
  "raster:bands": {
340
- "$ref": "https://raw.githubusercontent.com/stac-extensions/eo/main/json-schema/schema.json#/definitions/bands"
340
+ "$ref": "https://raw.githubusercontent.com/stac-extensions/eo/v1.1.0/json-schema/schema.json#/definitions/bands"
341
341
  }
342
342
  },
343
343
  "additionalProperties": false
@@ -10,23 +10,7 @@
10
10
  **********************************************************************
11
11
  * Copyright (c) 2023, Even Rouault
12
12
  *
13
- * Permission is hereby granted, free of charge, to any person obtaining a
14
- * copy of this software and associated documentation files (the "Software"),
15
- * to deal in the Software without restriction, including without limitation
16
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17
- * and/or sell copies of the Software, and to permit persons to whom the
18
- * Software is furnished to do so, subject to the following conditions:
19
- *
20
- * The above copyright notice and this permission notice shall be included
21
- * in all copies or substantial portions of the Software.
22
- *
23
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29
- * DEALINGS IN THE SOFTWARE.
13
+ * SPDX-License-Identifier: MIT
30
14
  ****************************************************************************/
31
15
  -->
32
16
  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="1.0">
@@ -10,23 +10,7 @@
10
10
  **********************************************************************
11
11
  * Copyright (c) 2015, Even Rouault
12
12
  *
13
- * Permission is hereby granted, free of charge, to any person obtaining a
14
- * copy of this software and associated documentation files (the "Software"),
15
- * to deal in the Software without restriction, including without limitation
16
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17
- * and/or sell copies of the Software, and to permit persons to whom the
18
- * Software is furnished to do so, subject to the following conditions:
19
- *
20
- * The above copyright notice and this permission notice shall be included
21
- * in all copies or substantial portions of the Software.
22
- *
23
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29
- * DEALINGS IN THE SOFTWARE.
13
+ * SPDX-License-Identifier: MIT
30
14
  ****************************************************************************/
31
15
  -->
32
16
  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="1.0">
@@ -442,6 +426,23 @@
442
426
  <xs:enumeration value="YCbCr_Cb"/>
443
427
  <xs:enumeration value="YCbCr_Cr"/>
444
428
  <xs:enumeration value="Undefined"/>
429
+ <xs:enumeration value="Pan"/> <!-- 3.10 addition -->
430
+ <xs:enumeration value="Coastal"/> <!-- 3.10 addition -->
431
+ <xs:enumeration value="RedEdge"/> <!-- 3.10 addition -->
432
+ <xs:enumeration value="NIR"/> <!-- 3.10 addition -->
433
+ <xs:enumeration value="SWIR"/> <!-- 3.10 addition -->
434
+ <xs:enumeration value="MWIR"/> <!-- 3.10 addition -->
435
+ <xs:enumeration value="LWIR"/> <!-- 3.10 addition -->
436
+ <xs:enumeration value="TIR"/> <!-- 3.10 addition -->
437
+ <xs:enumeration value="OtherIR"/> <!-- 3.10 addition -->
438
+ <xs:enumeration value="SAR_Ka"/> <!-- 3.10 addition -->
439
+ <xs:enumeration value="SAR_K"/> <!-- 3.10 addition -->
440
+ <xs:enumeration value="SAR_Ku"/> <!-- 3.10 addition -->
441
+ <xs:enumeration value="SAR_X"/> <!-- 3.10 addition -->
442
+ <xs:enumeration value="SAR_C"/> <!-- 3.10 addition -->
443
+ <xs:enumeration value="SAR_S"/> <!-- 3.10 addition -->
444
+ <xs:enumeration value="SAR_L"/> <!-- 3.10 addition -->
445
+ <xs:enumeration value="SAR_P"/> <!-- 3.10 addition -->
445
446
  </xs:restriction>
446
447
  </xs:simpleType>
447
448
 
@@ -634,35 +635,41 @@
634
635
  </xs:complexType>
635
636
 
636
637
  <xs:complexType name="ArrayType">
637
- <xs:sequence>
638
- <xs:element name="DataType" type="xs:string" minOccurs="1" maxOccurs="1"/>
639
- <xs:sequence>
640
- <xs:choice minOccurs="0" maxOccurs="unbounded">
641
- <xs:element name="Dimension" type="DimensionType"/>
642
- <xs:element name="DimensionRef" type="DimensionRefType"/>
643
- </xs:choice>
644
- </xs:sequence>
645
- <xs:element name="SRS" type="SRSType" minOccurs="0" maxOccurs="1"/>
646
- <xs:element name="Unit" type="xs:string" minOccurs="0" maxOccurs="1"/>
647
- <xs:element name="NoDataValue" type="DoubleOrNanType" minOccurs="0" maxOccurs="1"/>
648
- <xs:element name="Offset" type="xs:double" minOccurs="0" maxOccurs="1"/>
649
- <xs:element name="Scale" type="xs:double" minOccurs="0" maxOccurs="1"/>
650
- <xs:choice>
651
- <xs:element name="RegularlySpacedValues" type="RegularlySpacedValuesType" minOccurs="0" maxOccurs="1"/>
638
+ <xs:complexContent>
639
+ <xs:extension base="AbstractArrayType">
652
640
  <xs:sequence>
653
- <xs:choice minOccurs="0" maxOccurs="unbounded">
654
- <xs:element name="ConstantValue" type="ConstantValueType"/>
655
- <xs:element name="InlineValues" type="InlineValuesType"/>
656
- <xs:element name="InlineValuesWithValueElement" type="InlineValuesWithValueElementType"/>
657
- <xs:element name="Source" type="SourceType"/>
641
+ <xs:element name="DataType" type="xs:string" minOccurs="1" maxOccurs="1"/>
642
+ <xs:sequence>
643
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
644
+ <xs:element name="Dimension" type="DimensionType"/>
645
+ <xs:element name="DimensionRef" type="DimensionRefType"/>
646
+ </xs:choice>
647
+ </xs:sequence>
648
+ <xs:element name="SRS" type="SRSType" minOccurs="0" maxOccurs="1"/>
649
+ <xs:element name="Unit" type="xs:string" minOccurs="0" maxOccurs="1"/>
650
+ <xs:element name="NoDataValue" type="DoubleOrNanType" minOccurs="0" maxOccurs="1"/>
651
+ <xs:element name="Offset" type="xs:double" minOccurs="0" maxOccurs="1"/>
652
+ <xs:element name="Scale" type="xs:double" minOccurs="0" maxOccurs="1"/>
653
+ <xs:choice>
654
+ <xs:element name="RegularlySpacedValues" type="RegularlySpacedValuesType" minOccurs="0" maxOccurs="1"/>
655
+ <xs:sequence>
656
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
657
+ <xs:element name="ConstantValue" type="ConstantValueType"/>
658
+ <xs:element name="InlineValues" type="InlineValuesType"/>
659
+ <xs:element name="InlineValuesWithValueElement" type="InlineValuesWithValueElementType"/>
660
+ <xs:element name="Source" type="SourceType"/>
661
+ </xs:choice>
662
+ </xs:sequence>
658
663
  </xs:choice>
664
+ <xs:element name="Attribute" type="AttributeType" minOccurs="0" maxOccurs="unbounded"/>
659
665
  </xs:sequence>
660
- </xs:choice>
661
- <xs:element name="Attribute" type="AttributeType" minOccurs="0" maxOccurs="unbounded"/>
662
- </xs:sequence>
663
- <xs:attribute name="name" type="xs:string" use="required"/>
666
+ <xs:attribute name="name" type="xs:string" use="required"/>
667
+ </xs:extension>
668
+ </xs:complexContent>
664
669
  </xs:complexType>
665
670
 
671
+ <xs:element name="Array" substitutionGroup="AbstractArray" type="ArrayType"/>
672
+
666
673
  <xs:complexType name="RegularlySpacedValuesType">
667
674
  <xs:attribute name="start" type="xs:double" use="required"/>
668
675
  <xs:attribute name="increment" type="xs:double" use="required"/>
@@ -10,23 +10,7 @@
10
10
  **********************************************************************
11
11
  * Copyright (c) 2011, Even Rouault
12
12
  *
13
- * Permission is hereby granted, free of charge, to any person obtaining a
14
- * copy of this software and associated documentation files (the "Software"),
15
- * to deal in the Software without restriction, including without limitation
16
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17
- * and/or sell copies of the Software, and to permit persons to whom the
18
- * Software is furnished to do so, subject to the following conditions:
19
- *
20
- * The above copyright notice and this permission notice shall be included
21
- * in all copies or substantial portions of the Software.
22
- *
23
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29
- * DEALINGS IN THE SOFTWARE.
13
+ * SPDX-License-Identifier: MIT
30
14
  ****************************************************************************/
31
15
  -->
32
16
 
@@ -10,23 +10,7 @@
10
10
  **********************************************************************
11
11
  * Copyright (c) 2011, Even Rouault
12
12
  *
13
- * Permission is hereby granted, free of charge, to any person obtaining a
14
- * copy of this software and associated documentation files (the "Software"),
15
- * to deal in the Software without restriction, including without limitation
16
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17
- * and/or sell copies of the Software, and to permit persons to whom the
18
- * Software is furnished to do so, subject to the following conditions:
19
- *
20
- * The above copyright notice and this permission notice shall be included
21
- * in all copies or substantial portions of the Software.
22
- *
23
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29
- * DEALINGS IN THE SOFTWARE.
13
+ * SPDX-License-Identifier: MIT
30
14
  ****************************************************************************/
31
15
  -->
32
16
  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
@@ -10,23 +10,7 @@
10
10
  **********************************************************************
11
11
  * Copyright (c) 2012, Even Rouault
12
12
  *
13
- * Permission is hereby granted, free of charge, to any person obtaining a
14
- * copy of this software and associated documentation files (the "Software"),
15
- * to deal in the Software without restriction, including without limitation
16
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17
- * and/or sell copies of the Software, and to permit persons to whom the
18
- * Software is furnished to do so, subject to the following conditions:
19
- *
20
- * The above copyright notice and this permission notice shall be included
21
- * in all copies or substantial portions of the Software.
22
- *
23
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29
- * DEALINGS IN THE SOFTWARE.
13
+ * SPDX-License-Identifier: MIT
30
14
  ****************************************************************************/
31
15
  -->
32
16
  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="1.0">
@@ -1,6 +1,8 @@
1
1
  #
2
- # Configuration file for OSM import
2
+ # Configuration file for importing OSM data into OGR
3
3
  #
4
+ # NOTE: remove the below "[general]" line for GDAL < 3.10
5
+ [general]
4
6
 
5
7
  # put here the name of keys, or key=value, for ways that are assumed to be polygons if they are closed
6
8
  # see http://wiki.openstreetmap.org/wiki/Map_Features
@@ -10,23 +10,7 @@
10
10
  **********************************************************************
11
11
  * Copyright (c) 2019, Even Rouault
12
12
  *
13
- * Permission is hereby granted, free of charge, to any person obtaining a
14
- * copy of this software and associated documentation files (the "Software"),
15
- * to deal in the Software without restriction, including without limitation
16
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17
- * and/or sell copies of the Software, and to permit persons to whom the
18
- * Software is furnished to do so, subject to the following conditions:
19
- *
20
- * The above copyright notice and this permission notice shall be included
21
- * in all copies or substantial portions of the Software.
22
- *
23
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29
- * DEALINGS IN THE SOFTWARE.
13
+ * SPDX-License-Identifier: MIT
30
14
  ****************************************************************************/
31
15
  -->
32
16
  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="1.0">
@@ -0,0 +1,28 @@
1
+ <mapml>
2
+ <head>
3
+ <title>states</title>
4
+ <base href="${URL}" />
5
+ <meta charset="utf-8" />
6
+ <meta content="text/mapml;projection=${TILING_SCHEME}" http-equiv="Content-Type" />
7
+ <!--
8
+ <link href="http://localhost:8080/myservice/mapml/WGS84?style=" rel="alternate" projection="WGS84" />
9
+ <link href="http://localhost:8080/myservice/mapml/OSMTILE?style=" rel="alternate" projection="OSMTILE" />
10
+ <link href="http://localhost:8080/myservice/mapml/CBMTILE?style=" rel="alternate" projection="CBMTILE" />
11
+ <link href="http://localhost:8080/myservice/mapml/APSTILE?style=" rel="alternate" projection="APSTILE" />
12
+ -->
13
+ </head>
14
+ <body>
15
+ <extent units="${TILING_SCHEME}">
16
+ <input name="z" type="zoom" value="${CURZOOM}" min="${MINZOOM}" max="${MAXZOOM}" />
17
+ <input name="x" type="location" axis="column" units="tilematrix" min="${MINTILEX}" max="${MAXTILEX}" />
18
+ <input name="y" type="location" axis="row" units="tilematrix" min="${MINTILEY}" max="${MAXTILEY}" />
19
+ <link tref="${URL}{z}/{x}/{y}.${TILEEXT}" rel="tile" />
20
+ <!--<link tref="http://localhost:8080/myservice/wmts?layer=MYLAYER&amp;style=&amp;tilematrixset=${TILING_SCHEME}&amp;service=WMTS&amp;request=GetTile&amp;version=1.0.0&amp;tilematrix={z}&amp;TileCol={x}&amp;TileRow={y}&amp;format=image/png" rel="tile" />-->
21
+ <!--
22
+ <input name="i" type="location" axis="i" units="tile" />
23
+ <input name="j" type="location" axis="j" units="tile" />
24
+ <link tref="http://localhost:8080/myservice/wmts/?LAYER=MYLAYER&amp;TILEMATRIX={z}&amp;TileCol={x}&amp;TileRow={y}&amp;TILEMATRIXSET=WGS84&amp;SERVICE=WMTS&amp;VERSION=1.0.0&amp;REQUEST=GetFeatureInfo&amp;FEATURE_COUNT=50&amp;FORMAT=image/png&amp;STYLE=&amp;INFOFORMAT=text/mapml&amp;I={i}&amp;J={j}" rel="query" />
25
+ -->
26
+ </extent>
27
+ </body>
28
+ </mapml>
@@ -3,13 +3,13 @@
3
3
  "spdxVersion": "SPDX-2.2",
4
4
  "dataLicense": "CC0-1.0",
5
5
  "SPDXID": "SPDXRef-DOCUMENT",
6
- "documentNamespace": "https://spdx.org/spdxdocs/gdal-arm64-osx-dynamic-release-3.9.1-b331061d-c93d-4dbd-80c5-dc9857187183",
7
- "name": "gdal:arm64-osx-dynamic-release@3.9.1 30b727933787000162a8802f047d7eb6016fccd4146f578b63c82e6b077ed3c5",
6
+ "documentNamespace": "https://spdx.org/spdxdocs/gdal-arm64-osx-dynamic-release-3.10.3-d997cc0b-364d-4510-b991-48143596850b",
7
+ "name": "gdal:arm64-osx-dynamic-release@3.10.3 3b9bcb6f704f356d70d60249796ffc7e8ebff0f7ef4518d2f365aedd3a5a3d79",
8
8
  "creationInfo": {
9
9
  "creators": [
10
- "Tool: vcpkg-2024-08-01-fd884a0d390d12783076341bd43d77c3a6a15658"
10
+ "Tool: vcpkg-2025-04-16-f9b6c6917b23c1ccf16c1a9f015ebabf8f615045"
11
11
  ],
12
- "created": "2024-09-28T18:41:15Z"
12
+ "created": "2025-05-07T14:29:30Z"
13
13
  },
14
14
  "relationships": [
15
15
  {
@@ -87,6 +87,11 @@
87
87
  "relationshipType": "CONTAINED_BY",
88
88
  "relatedSpdxElement": "SPDXRef-port"
89
89
  },
90
+ {
91
+ "spdxElementId": "SPDXRef-file-3",
92
+ "relationshipType": "DEPENDENCY_MANIFEST_OF",
93
+ "relatedSpdxElement": "SPDXRef-port"
94
+ },
90
95
  {
91
96
  "spdxElementId": "SPDXRef-file-4",
92
97
  "relationshipType": "CONTAINED_BY",
@@ -117,8 +122,8 @@
117
122
  {
118
123
  "name": "gdal",
119
124
  "SPDXID": "SPDXRef-port",
120
- "versionInfo": "3.9.1",
121
- "downloadLocation": "git+https://github.com/Microsoft/vcpkg@65b271a32a93a9dfa4dfd3905fcd0b5388926f81",
125
+ "versionInfo": "3.10.3",
126
+ "downloadLocation": "git+https://github.com/Microsoft/vcpkg@5fbf8e1a6b0541dd68d3e256c0fd77ab6f99c163",
122
127
  "homepage": "https://gdal.org",
123
128
  "licenseConcluded": "NOASSERTION",
124
129
  "licenseDeclared": "NOASSERTION",
@@ -129,7 +134,7 @@
129
134
  {
130
135
  "name": "gdal:arm64-osx-dynamic-release",
131
136
  "SPDXID": "SPDXRef-binary",
132
- "versionInfo": "30b727933787000162a8802f047d7eb6016fccd4146f578b63c82e6b077ed3c5",
137
+ "versionInfo": "3b9bcb6f704f356d70d60249796ffc7e8ebff0f7ef4518d2f365aedd3a5a3d79",
133
138
  "downloadLocation": "NONE",
134
139
  "licenseConcluded": "NOASSERTION",
135
140
  "licenseDeclared": "NOASSERTION",
@@ -137,23 +142,23 @@
137
142
  "comment": "This is a binary package built by vcpkg."
138
143
  },
139
144
  {
140
- "SPDXID": "SPDXRef-resource-1",
145
+ "SPDXID": "SPDXRef-resource-0",
141
146
  "name": "OSGeo/gdal",
142
- "downloadLocation": "git+https://github.com/OSGeo/gdal@v3.9.1",
147
+ "downloadLocation": "git+https://github.com/OSGeo/gdal@v3.10.3",
143
148
  "licenseConcluded": "NOASSERTION",
144
149
  "licenseDeclared": "NOASSERTION",
145
150
  "copyrightText": "NOASSERTION",
146
151
  "checksums": [
147
152
  {
148
153
  "algorithm": "SHA512",
149
- "checksumValue": "d9ab5d94dc870df17b010166d3ebbe897a1f673ba05bf31cd4bed437b6db303dd9e373ba5099d3a191ff3e48c995556fb5bcc77d03d975614df4aa20a2c2b085"
154
+ "checksumValue": "02dfa7d57c37b0f0c5994cae6632286a8671039b5aa9853360c08df8210d93227e42b0f22e74e167dc888761e8118b1b2dd2fe365bdc6c75daf7283c4be89b4c"
150
155
  }
151
156
  ]
152
157
  }
153
158
  ],
154
159
  "files": [
155
160
  {
156
- "fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/65b271a32a93a9dfa4dfd3905fcd0b5388926f81/libkml.patch",
161
+ "fileName": "./libkml.patch",
157
162
  "SPDXID": "SPDXRef-file-0",
158
163
  "checksums": [
159
164
  {
@@ -165,7 +170,7 @@
165
170
  "copyrightText": "NOASSERTION"
166
171
  },
167
172
  {
168
- "fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/65b271a32a93a9dfa4dfd3905fcd0b5388926f81/usage",
173
+ "fileName": "./usage",
169
174
  "SPDXID": "SPDXRef-file-1",
170
175
  "checksums": [
171
176
  {
@@ -177,43 +182,43 @@
177
182
  "copyrightText": "NOASSERTION"
178
183
  },
179
184
  {
180
- "fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/65b271a32a93a9dfa4dfd3905fcd0b5388926f81/portfile.cmake",
185
+ "fileName": "./portfile.cmake",
181
186
  "SPDXID": "SPDXRef-file-2",
182
187
  "checksums": [
183
188
  {
184
189
  "algorithm": "SHA256",
185
- "checksumValue": "92a0c437215b5fed404a2deb00ade3a8cfb4da00c518af38525a3194a7d89c1a"
190
+ "checksumValue": "cad1f2ba6b48b6df0a2f4237f551d1e42061577c04e77eeafef1cbde7b7a8d5a"
186
191
  }
187
192
  ],
188
193
  "licenseConcluded": "NOASSERTION",
189
194
  "copyrightText": "NOASSERTION"
190
195
  },
191
196
  {
192
- "fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/65b271a32a93a9dfa4dfd3905fcd0b5388926f81/vcpkg.json",
197
+ "fileName": "./vcpkg.json",
193
198
  "SPDXID": "SPDXRef-file-3",
194
199
  "checksums": [
195
200
  {
196
201
  "algorithm": "SHA256",
197
- "checksumValue": "71bb644d1501bdc16fbe5e88a45a27c478bee667cbace588c569de28778c89ff"
202
+ "checksumValue": "f72051f0ae2778e0a0ccf7953d6eff004ef88af304dc7ca173c773275ab99d3a"
198
203
  }
199
204
  ],
200
205
  "licenseConcluded": "NOASSERTION",
201
206
  "copyrightText": "NOASSERTION"
202
207
  },
203
208
  {
204
- "fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/65b271a32a93a9dfa4dfd3905fcd0b5388926f81/target-is-valid.patch",
209
+ "fileName": "./target-is-valid.patch",
205
210
  "SPDXID": "SPDXRef-file-4",
206
211
  "checksums": [
207
212
  {
208
213
  "algorithm": "SHA256",
209
- "checksumValue": "6a369356c57860f97bd756d3604e7219774e2bfe5c74e5e0178496fad253900f"
214
+ "checksumValue": "d9404cebec6e0f7dc6ae92af733ebad86584eafc40742c916603a8338acfcd15"
210
215
  }
211
216
  ],
212
217
  "licenseConcluded": "NOASSERTION",
213
218
  "copyrightText": "NOASSERTION"
214
219
  },
215
220
  {
216
- "fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/65b271a32a93a9dfa4dfd3905fcd0b5388926f81/fix-gdal-target-interfaces.patch",
221
+ "fileName": "./fix-gdal-target-interfaces.patch",
217
222
  "SPDXID": "SPDXRef-file-5",
218
223
  "checksums": [
219
224
  {
@@ -225,7 +230,7 @@
225
230
  "copyrightText": "NOASSERTION"
226
231
  },
227
232
  {
228
- "fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/65b271a32a93a9dfa4dfd3905fcd0b5388926f81/vcpkg-cmake-wrapper.cmake",
233
+ "fileName": "./vcpkg-cmake-wrapper.cmake",
229
234
  "SPDXID": "SPDXRef-file-6",
230
235
  "checksums": [
231
236
  {
@@ -237,19 +242,19 @@
237
242
  "copyrightText": "NOASSERTION"
238
243
  },
239
244
  {
240
- "fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/65b271a32a93a9dfa4dfd3905fcd0b5388926f81/cmake-project-include.cmake",
245
+ "fileName": "./cmake-project-include.cmake",
241
246
  "SPDXID": "SPDXRef-file-7",
242
247
  "checksums": [
243
248
  {
244
249
  "algorithm": "SHA256",
245
- "checksumValue": "60c0f79155c78ec0ec4ccdc77e00f4613ae4630c6697f51f884bf8f979a48593"
250
+ "checksumValue": "196dcc1fc79ab94bae08c6ed5cb169eaaf208ddb656931579128bfd81a7e3582"
246
251
  }
247
252
  ],
248
253
  "licenseConcluded": "NOASSERTION",
249
254
  "copyrightText": "NOASSERTION"
250
255
  },
251
256
  {
252
- "fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/65b271a32a93a9dfa4dfd3905fcd0b5388926f81/find-link-libraries.patch",
257
+ "fileName": "./find-link-libraries.patch",
253
258
  "SPDXID": "SPDXRef-file-8",
254
259
  "checksums": [
255
260
  {