Skip to content

Commit

Permalink
Merge pull request #1047 from orontee/main
Browse files Browse the repository at this point in the history
BUG: Complete database stub file with query_utm_crs_info() signature
  • Loading branch information
snowman2 committed Mar 31, 2022
2 parents 1ca11c2 + 0891756 commit 43e49b7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Change Log

Latest
-------
- BUG: Complete database stub file with query_utm_crs_info() signature (issue #1044)
- BUG: Reorder deps in show_versions for setuptools issue (issue #1017)
- BUG: remove CustomConstructorCRS @abstractmethod decorator (pull #1018)
- BUG: Correct type annotation for AreaofUse.bounds (issue #1012)
Expand Down
5 changes: 5 additions & 0 deletions pyproj/database.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,9 @@ def query_crs_info(
contains: bool = False,
allow_deprecated: bool = False,
) -> List[CRSInfo]: ...
def query_utm_crs_info(
datum_name: Optional[str] = None,
area_of_interest: Optional[AreaOfInterest] = None,
contains: bool = False,
) -> List[CRSInfo]: ...
def get_database_metadata(key: str) -> Optional[str]: ...

0 comments on commit 43e49b7

Please sign in to comment.