that's too much!
This commit is contained in:
96
.venv/lib/python3.12/site-packages/pyproj/__init__.py
Normal file
96
.venv/lib/python3.12/site-packages/pyproj/__init__.py
Normal file
@@ -0,0 +1,96 @@
|
||||
"""
|
||||
Python interface to PROJ (https://proj.org),
|
||||
cartographic projections and coordinate transformations library.
|
||||
|
||||
Download: http://python.org/pypi/pyproj
|
||||
|
||||
Requirements: Python 10+.
|
||||
|
||||
Contact: Jeffrey Whitaker <jeffrey.s.whitaker@noaa.gov>
|
||||
|
||||
Copyright (c) 2006-2018, Jeffrey Whitaker.
|
||||
Copyright (c) 2019-2024, Open source contributors.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to use,
|
||||
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
|
||||
Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
||||
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
||||
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
"""
|
||||
|
||||
import warnings
|
||||
|
||||
import pyproj.network
|
||||
from pyproj._context import ( # noqa: F401 pylint: disable=unused-import
|
||||
set_use_global_context,
|
||||
)
|
||||
from pyproj._show_versions import ( # noqa: F401 pylint: disable=unused-import
|
||||
show_versions,
|
||||
)
|
||||
from pyproj._version import ( # noqa: F401 pylint: disable=unused-import
|
||||
PROJ_COMPILED_VERSION,
|
||||
PROJ_COMPILED_VERSION_STR,
|
||||
PROJ_VERSION,
|
||||
PROJ_VERSION_STR,
|
||||
)
|
||||
from pyproj.crs import CRS # noqa: F401 pylint: disable=unused-import
|
||||
from pyproj.database import ( # noqa: F401 pylint: disable=unused-import
|
||||
get_authorities,
|
||||
get_codes,
|
||||
get_units_map,
|
||||
)
|
||||
from pyproj.exceptions import ( # noqa: F401 pylint: disable=unused-import
|
||||
DataDirError,
|
||||
ProjError,
|
||||
)
|
||||
from pyproj.geod import ( # noqa: F401 pylint: disable=unused-import
|
||||
Geod,
|
||||
geodesic_version_str,
|
||||
pj_ellps,
|
||||
)
|
||||
from pyproj.list import ( # noqa: F401 pylint: disable=unused-import
|
||||
get_ellps_map,
|
||||
get_prime_meridians_map,
|
||||
get_proj_operations_map,
|
||||
)
|
||||
from pyproj.proj import Proj, pj_list # noqa: F401 pylint: disable=unused-import
|
||||
from pyproj.transformer import ( # noqa: F401 pylint: disable=unused-import
|
||||
Transformer,
|
||||
itransform,
|
||||
transform,
|
||||
)
|
||||
|
||||
__version__ = "3.7.0"
|
||||
__all__ = [
|
||||
"Proj",
|
||||
"Geod",
|
||||
"CRS",
|
||||
"Transformer",
|
||||
"transform",
|
||||
"itransform",
|
||||
"pj_ellps",
|
||||
"pj_list",
|
||||
"get_ellps_map",
|
||||
"get_prime_meridians_map",
|
||||
"get_proj_operations_map",
|
||||
"get_units_map",
|
||||
"show_versions",
|
||||
]
|
||||
__proj_version__ = PROJ_VERSION_STR
|
||||
proj_version_str = PROJ_VERSION_STR # pylint: disable=invalid-name
|
||||
__proj_compiled_version__ = PROJ_COMPILED_VERSION_STR
|
||||
try:
|
||||
pyproj.network.set_ca_bundle_path()
|
||||
except DataDirError as err:
|
||||
warnings.warn(str(err))
|
||||
Reference in New Issue
Block a user