Skip to content

Commit f86934f

Browse files
jjimenezshawsnowman2
authored andcommitted
convert from str to PJType
1 parent 4ac008f commit f86934f

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

pyproj/database.pyx

+3
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,9 @@ def query_geodetic_crs_from_datum(
501501
list[CRS]
502502
"""
503503

504+
if pj_type is not None and not isinstance(pj_type, PJType):
505+
pj_type = PJType.create(pj_type)
506+
504507
cdef const char* c_crs_type = NULL
505508
if pj_type is None:
506509
pass

test/test_database.py

+7
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,10 @@ def test_get_database_metadata__invalid():
272272

273273

274274
def test_query_geodetic_crs_from_datum():
275+
crss = query_geodetic_crs_from_datum("EPSG", "EPSG", "1116", "GEOCENTRIC_CRS")
276+
assert len(crss) == 1
277+
assert crss[0].to_authority()[1] == "6317"
278+
275279
crss = query_geodetic_crs_from_datum("EPSG", "EPSG", "1116", PJType.GEOCENTRIC_CRS)
276280
assert len(crss) == 1
277281
assert crss[0].to_authority()[1] == "6317"
@@ -304,6 +308,9 @@ def test_query_geodetic_crs_from_datum_invalid():
304308
with pytest.raises(ValueError):
305309
query_geodetic_crs_from_datum("EPSG", "EPSG", "1116", PJType.PROJECTED_CRS)
306310

311+
with pytest.raises(ValueError):
312+
query_geodetic_crs_from_datum("EPSG", "EPSG", "1116", "invalid string")
313+
307314
with pytest.raises(TypeError):
308315
query_geodetic_crs_from_datum("EPSG", "EPSG", None)
309316

0 commit comments

Comments
 (0)