Transformer¶
The pyproj.Transformer has the capabilities of performing 2D, 3D, and 4D (time) transformations. It can do anything that the PROJ command line programs proj, cs2cs, and cct can do. This means that it allows translation between any pair of definable coordinate systems, including support for datum transformation.
Warning
The axis order may be swapped if the source and destination
CRS’s are defined as having the first coordinate component point in a
northerly direction (See PROJ FAQ on
axis order).
You can check the axis order with the pyproj.crs.CRS
class. If you prefer to
keep your axis order as always x,y, you can use the always_xy option when
creating the pyproj.transformer.Transformer
.
pyproj.Transformer¶
-
class
pyproj.transformer.
Transformer
(transformer_maker: Optional[pyproj.transformer.TransformerMaker] = None)[source]¶ The Transformer class is for facilitating re-using transforms without needing to re-create them. The goal is to make repeated transforms faster.
Additionally, it provides multiple methods for initialization.
New in version 2.1.0.
-
property
accuracy
¶ Expected accuracy of the transformation. -1 if unknown.
- Type
float
-
property
area_of_use
¶ New in version 2.3.0.
- Returns
The area of use object with associated attributes.
- Return type
-
property
definition
¶ Definition of the projection.
- Type
str
-
property
description
¶ Description of the projection.
- Type
str
-
static
from_crs
(crs_from: Any, crs_to: Any, skip_equivalent: bool = False, always_xy: bool = False, area_of_interest: Optional[pyproj.aoi.AreaOfInterest] = None, authority: Optional[str] = None, accuracy: Optional[float] = None, allow_ballpark: Optional[bool] = None) → pyproj.transformer.Transformer[source]¶ Make a Transformer from a
pyproj.crs.CRS
or input used to create one.New in version 2.1.2: skip_equivalent
New in version 2.2.0: always_xy
New in version 2.3.0: area_of_interest
New in version 3.1.0: authority, accuracy, allow_ballpark
Deprecated since version 3.1: skip_equivalent
- Parameters
crs_from (pyproj.crs.CRS or input used to create one) – Projection of input data.
crs_to (pyproj.crs.CRS or input used to create one) – Projection of output data.
skip_equivalent (bool, default=False) – DEPRECATED: If true, will skip the transformation operation if input and output projections are equivalent.
always_xy (bool, default=False) – If true, the transform method will accept as input and return as output coordinates using the traditional GIS order, that is longitude, latitude for geographic CRS and easting, northing for most projected CRS.
area_of_interest (
pyproj.transformer.AreaOfInterest
, optional) – The area of interest to help select the transformation.authority (str, optional) – When not specified, coordinate operations from any authority will be searched, with the restrictions set in the authority_to_authority_preference database table related to the authority of the source/target CRS themselves. If authority is set to “any”, then coordinate operations from any authority will be searched. If authority is a non-empty string different from “any”, then coordinate operations will be searched only in that authority namespace (e.g. EPSG). Requires PROJ 8+.
accuracy (float, optional) – The minimum desired accuracy (in metres) of the candidate coordinate operations. Requires PROJ 8+.
allow_ballpark (bool, optional) – Set to False to disallow the use of Ballpark transformation in the candidate coordinate operations. Default is to allow. Requires PROJ 8+.
- Returns
- Return type
-
static
from_pipeline
(proj_pipeline: str) → pyproj.transformer.Transformer[source]¶ Make a Transformer from a PROJ pipeline string.
New in version 3.1.0: AUTH:CODE string suppor (e.g. EPSG:1671)
- Allowed input:
a PROJ string
a WKT string
a PROJJSON string
an object code (e.g. “EPSG:1671” “urn:ogc:def:coordinateOperation:EPSG::1671”)
an object name. e.g “ITRF2014 to ETRF2014 (1)”. In that case as uniqueness is not guaranteed, heuristics are applied to determine the appropriate best match.
a OGC URN combining references for concatenated operations (e.g. “urn:ogc:def:coordinateOperation,coordinateOperation:EPSG::3895, coordinateOperation:EPSG::1618”)
- Parameters
proj_pipeline (str) – Projection pipeline string.
- Returns
- Return type
-
static
from_proj
(proj_from: Any, proj_to: Any, skip_equivalent: bool = False, always_xy: bool = False, area_of_interest: Optional[pyproj.aoi.AreaOfInterest] = None) → pyproj.transformer.Transformer[source]¶ Make a Transformer from a
pyproj.Proj
or input used to create one.New in version 2.1.2: skip_equivalent
New in version 2.2.0: always_xy
New in version 2.3.0: area_of_interest
Deprecated since version 3.1: skip_equivalent
- Parameters
proj_from (
pyproj.Proj
or input used to create one) – Projection of input data.proj_to (
pyproj.Proj
or input used to create one) – Projection of output data.skip_equivalent (bool, default=False) – DEPRECATED: If true, will skip the transformation operation if input and output projections are equivalent.
always_xy (bool, default=False) – If true, the transform method will accept as input and return as output coordinates using the traditional GIS order, that is longitude, latitude for geographic CRS and easting, northing for most projected CRS.
area_of_interest (
pyproj.transformer.AreaOfInterest
, optional) – The area of interest to help select the transformation.
- Returns
- Return type
-
property
has_inverse
¶ True if an inverse mapping exists.
- Type
bool
-
is_exact_same
(other: Any) → bool[source]¶ Check if the Transformer objects are the exact same. If it is not a Transformer, then it returns False.
- Parameters
other (Any) –
- Returns
- Return type
bool
-
property
is_network_enabled
¶ New in version 3.0.0.
- bool:
If the network is enabled.
-
itransform
(points: Any, switch: bool = False, time_3rd: bool = False, radians: bool = False, errcheck: bool = False, direction: Union[pyproj.enums.TransformDirection, str] = <TransformDirection.FORWARD: 'FORWARD'>) → Iterator[Iterable][source]¶ Iterator/generator version of the function pyproj.Transformer.transform.
New in version 2.1.1: errcheck
New in version 2.2.0: direction
- Parameters
points (list) – List of point tuples.
switch (bool, default=False) – If True x, y or lon,lat coordinates of points are switched to y, x or lat, lon. Default is False.
time_3rd (bool, default=False) – If the input coordinates are 3 dimensional and the 3rd dimension is time.
radians (bool, default=False) – If True, will expect input data to be in radians and will return radians if the projection is geographic. Otherwise, it uses degrees. Ignored for pipeline transformations with pyproj 2, but will work in pyproj 3.
errcheck (bool, default=False) – If True, an exception is raised if the errors are found in the process. If False,
inf
is returned for errors.direction (pyproj.enums.TransformDirection, optional) – The direction of the transform. Default is
pyproj.enums.TransformDirection.FORWARD
.
Example
>>> from pyproj import Transformer >>> transformer = Transformer.from_crs(4326, 2100) >>> points = [(22.95, 40.63), (22.81, 40.53), (23.51, 40.86)] >>> for pt in transformer.itransform(points): '{:.3f} {:.3f}'.format(*pt) '2221638.801 2637034.372' '2212924.125 2619851.898' '2238294.779 2703763.736' >>> pipeline_str = ( ... "+proj=pipeline +step +proj=longlat +ellps=WGS84 " ... "+step +proj=unitconvert +xy_in=rad +xy_out=deg" ... ) >>> pipe_trans = Transformer.from_pipeline(pipeline_str) >>> for pt in pipe_trans.itransform([(2.1, 0.001)]): ... '{:.3f} {:.3f}'.format(*pt) '2.100 0.001' >>> transproj = Transformer.from_crs( ... {"proj":'geocent', "ellps":'WGS84', "datum":'WGS84'}, ... "EPSG:4326", ... always_xy=True, ... ) >>> for pt in transproj.itransform( ... [(-2704026.010, -4253051.810, 3895878.820)], ... radians=True, ... ): ... '{:.3f} {:.3f} {:.3f}'.format(*pt) '-2.137 0.661 -20.531' >>> transprojr = Transformer.from_crs( ... "EPSG:4326", ... {"proj":'geocent', "ellps":'WGS84', "datum":'WGS84'}, ... always_xy=True, ... ) >>> for pt in transprojr.itransform( ... [(-2.137, 0.661, -20.531)], ... radians=True ... ): ... '{:.3f} {:.3f} {:.3f}'.format(*pt) '-2704214.394 -4254414.478 3894270.731' >>> transproj_eq = Transformer.from_proj( ... 'EPSG:4326', ... '+proj=longlat +datum=WGS84 +no_defs +type=crs', ... always_xy=True, ... ) >>> for pt in transproj_eq.itransform([(-2.137, 0.661)]): ... '{:.3f} {:.3f}'.format(*pt) '-2.137 0.661'
-
property
name
¶ Name of the projection.
- Type
str
-
property
operations
¶ New in version 2.4.0.
- Returns
The operations in a concatenated operation.
- Return type
Tuple[CoordinateOperation]
-
property
remarks
¶ New in version 2.4.0.
- Returns
Remarks about object.
- Return type
str
-
property
scope
¶ New in version 2.4.0.
- Returns
Scope of object.
- Return type
str
-
to_json
(pretty: bool = False, indentation: int = 2) → str[source]¶ Convert the projection to a JSON string.
New in version 2.4.0.
- Parameters
pretty (bool, default=False) – If True, it will set the output to be a multiline string.
indentation (int, default=2) – If pretty is True, it will set the width of the indentation.
- Returns
The JSON string.
- Return type
str
-
to_json_dict
() → dict[source]¶ Convert the projection to a JSON dictionary.
New in version 2.4.0.
- Returns
The JSON dictionary.
- Return type
dict
-
to_proj4
(version: Union[pyproj.enums.ProjVersion, str] = <ProjVersion.PROJ_5: 5>, pretty: bool = False) → str[source]¶ Convert the projection to a PROJ string.
New in version 3.1.0.
- Parameters
version (pyproj.enums.ProjVersion) – The version of the PROJ string output. Default is
pyproj.enums.ProjVersion.PROJ_5
.pretty (bool, default=False) – If True, it will set the output to be a multiline string.
- Returns
The PROJ string.
- Return type
str
-
to_wkt
(version: Union[pyproj.enums.WktVersion, str] = <WktVersion.WKT2_2019: 'WKT2_2019'>, pretty: bool = False) → str[source]¶ Convert the projection to a WKT string.
- Version options:
WKT2_2015
WKT2_2015_SIMPLIFIED
WKT2_2019
WKT2_2019_SIMPLIFIED
WKT1_GDAL
WKT1_ESRI
- Parameters
version (pyproj.enums.WktVersion, optional) – The version of the WKT output. Default is
pyproj.enums.WktVersion.WKT2_2019
.pretty (bool, default=False) – If True, it will set the output to be a multiline string.
- Returns
The WKT string.
- Return type
str
-
transform
(xx: Any, yy: Any, radians: bool = 'False', errcheck: bool = 'False', direction: Union[pyproj.enums.TransformDirection, str] = 'TransformDirection.FORWARD', inplace: bool = 'False') → Tuple[Any, Any][source]¶ -
transform
(xx: Any, yy: Any, zz: Any, radians: bool = 'False', errcheck: bool = 'False', direction: Union[pyproj.enums.TransformDirection, str] = 'TransformDirection.FORWARD', inplace: bool = 'False') → Tuple[Any, Any, Any] -
transform
(xx: Any, yy: Any, zz: Any, tt: Any, radians: bool = 'False', errcheck: bool = 'False', direction: Union[pyproj.enums.TransformDirection, str] = 'TransformDirection.FORWARD', inplace: bool = 'False') → Tuple[Any, Any, Any, Any] Transform points between two coordinate systems.
New in version 2.1.1: errcheck
New in version 2.2.0: direction
New in version 3.2.0: inplace
- Parameters
xx (scalar or array (numpy or python)) – Input x coordinate(s).
yy (scalar or array (numpy or python)) – Input y coordinate(s).
zz (scalar or array (numpy or python), optional) – Input z coordinate(s).
tt (scalar or array (numpy or python), optional) – Input time coordinate(s).
radians (bool, default=False) – If True, will expect input data to be in radians and will return radians if the projection is geographic. Otherwise, it uses degrees. Ignored for pipeline transformations with pyproj 2, but will work in pyproj 3.
errcheck (bool, default=False) – If True, an exception is raised if the errors are found in the process. If False,
inf
is returned for errors.direction (pyproj.enums.TransformDirection, optional) – The direction of the transform. Default is
pyproj.enums.TransformDirection.FORWARD
.inplace (bool, default=False) – If True, will attempt to write the results to the input array instead of returning a new array. This will fail if the input is not an array in C order with the double data type.
Example
>>> from pyproj import Transformer >>> transformer = Transformer.from_crs("epsg:4326", "epsg:3857") >>> x3, y3 = transformer.transform(33, 98) >>> f"{x3:.3f} {y3:.3f}" '10909310.098 3895303.963' >>> pipeline_str = ( ... "+proj=pipeline +step +proj=longlat +ellps=WGS84 " ... "+step +proj=unitconvert +xy_in=rad +xy_out=deg" ... ) >>> pipe_trans = Transformer.from_pipeline(pipeline_str) >>> xt, yt = pipe_trans.transform(2.1, 0.001) >>> f"{xt:.3f} {yt:.3f}" '2.100 0.001' >>> transproj = Transformer.from_crs( ... {"proj":'geocent', "ellps":'WGS84', "datum":'WGS84'}, ... "EPSG:4326", ... always_xy=True, ... ) >>> xpj, ypj, zpj = transproj.transform( ... -2704026.010, ... -4253051.810, ... 3895878.820, ... radians=True, ... ) >>> f"{xpj:.3f} {ypj:.3f} {zpj:.3f}" '-2.137 0.661 -20.531' >>> transprojr = Transformer.from_crs( ... "EPSG:4326", ... {"proj":'geocent', "ellps":'WGS84', "datum":'WGS84'}, ... always_xy=True, ... ) >>> xpjr, ypjr, zpjr = transprojr.transform(xpj, ypj, zpj, radians=True) >>> f"{xpjr:.3f} {ypjr:.3f} {zpjr:.3f}" '-2704026.010 -4253051.810 3895878.820' >>> transformer = Transformer.from_proj("epsg:4326", 4326) >>> xeq, yeq = transformer.transform(33, 98) >>> f"{xeq:.0f} {yeq:.0f}" '33 98'
-
transform_bounds
(left: float, bottom: float, right: float, top: float, densify_pts: int = 21, radians: bool = False, errcheck: bool = False, direction: Union[pyproj.enums.TransformDirection, str] = <TransformDirection.FORWARD: 'FORWARD'>) → Tuple[float, float, float, float][source]¶ New in version 3.1.0.
Transform boundary densifying the edges to account for nonlinear transformations along these edges and extracting the outermost bounds.
If the destination CRS is geographic and right < left then the bounds crossed the antimeridian. In this scenario there are two polygons, one on each side of the antimeridian. The first polygon should be constructed with (left, bottom, 180, top) and the second with (-180, bottom, top, right).
To construct the bounding polygons with shapely:
def bounding_polygon(left, bottom, right, top): if right < left: return shapely.geometry.MultiPolygon( [ shapely.geometry.box(left, bottom, 180, top), shapely.geometry.box(-180, bottom, right, top), ] ) return shapely.geometry.box(left, bottom, right, top)
- Parameters
left (float) – Left bounding coordinate in source CRS.
bottom (float) – Bottom bounding coordinate in source CRS.
right (float) – Right bounding coordinate in source CRS.
top (float) – Top bounding coordinate in source CRS.
densify_points (uint, default=21) – Number of points to add to each edge to account for nonlinear edges produced by the transform process. Large numbers will produce worse performance.
radians (bool, default=False) – If True, will expect input data to be in radians and will return radians if the projection is geographic. Otherwise, it uses degrees.
errcheck (bool, default=False) – If True, an exception is raised if the errors are found in the process. If False,
inf
is returned for errors.direction (pyproj.enums.TransformDirection, optional) – The direction of the transform. Default is
pyproj.enums.TransformDirection.FORWARD
.
- Returns
left, bottom, right, top – Outermost coordinates in target coordinate reference system.
- Return type
float
-
property
pyproj.transformer.TransformerGroup¶
-
class
pyproj.transformer.
TransformerGroup
(crs_from: Any, crs_to: Any, skip_equivalent: bool = False, always_xy: bool = False, area_of_interest: Optional[pyproj.aoi.AreaOfInterest] = None)[source]¶ The TransformerGroup is a set of possible transformers from one CRS to another.
New in version 2.3.0.
Warning
CoordinateOperation and Transformer objects returned are not thread-safe.
From PROJ docs:
The operations are sorted with the most relevant ones first: by descending area (intersection of the transformation area with the area of interest, or intersection of the transformation with the area of use of the CRS), and by increasing accuracy. Operations with unknown accuracy are sorted last, whatever their area.
-
__init__
(crs_from: Any, crs_to: Any, skip_equivalent: bool = False, always_xy: bool = False, area_of_interest: Optional[pyproj.aoi.AreaOfInterest] = None) → None[source]¶ Get all possible transformations from a
pyproj.crs.CRS
or input used to create one.Deprecated since version 3.1: skip_equivalent
- Parameters
crs_from (pyproj.crs.CRS or input used to create one) – Projection of input data.
crs_to (pyproj.crs.CRS or input used to create one) – Projection of output data.
skip_equivalent (bool, default=False) – DEPRECATED: If true, will skip the transformation operation if input and output projections are equivalent.
always_xy (bool, default=False) – If true, the transform method will accept as input and return as output coordinates using the traditional GIS order, that is longitude, latitude for geographic CRS and easting, northing for most projected CRS.
area_of_interest (
pyproj.transformer.AreaOfInterest
, optional) – The area of interest to help order the transformations based on the best operation for the area.
-
property
best_available
¶ If True, the best possible transformer is available.
- Type
bool
-
download_grids
(directory: Optional[Union[str, pathlib.Path]] = None, open_license: bool = True, verbose: bool = False) → None[source]¶ New in version 3.0.0.
Download missing grids that can be downloaded automatically.
Warning
There are cases where the URL to download the grid is missing. In those cases, you can enable enable Debugging Internal PROJ and perform a transformation. The logs will show the grids PROJ searches for.
- Parameters
directory (str or Path, optional) – The directory to download the grids to. Defaults to
pyproj.datadir.get_user_data_dir()
open_license (bool, default=True) – If True, will only download grids with an open license.
verbose (bool, default=False) – If True, will print information about grids downloaded.
-
property
transformers
¶ list[
Transformer
]: List of availableTransformer
associated with the transformation.
list[
pyproj.crs.CoordinateOperation
]: List ofpyproj.crs.CoordinateOperation
that are not available due to missing grids.
-
pyproj.transform¶
-
pyproj.transformer.
transform
(p1: Any, p2: Any, x: Any, y: Any, z: Optional[Any] = None, tt: Optional[Any] = None, radians: bool = False, errcheck: bool = False, skip_equivalent: bool = False, always_xy: bool = False)[source]¶ New in version 2.1.2: skip_equivalent
New in version 2.2.0: always_xy
Deprecated since version 2.6.1: This function is deprecated. See: Upgrading to pyproj 2 from pyproj 1
x2, y2, z2 = transform(p1, p2, x1, y1, z1)
Transform points between two coordinate systems defined by the Proj instances p1 and p2.
The points x1,y1,z1 in the coordinate system defined by p1 are transformed to x2,y2,z2 in the coordinate system defined by p2.
z1 is optional, if it is not set it is assumed to be zero (and only x2 and y2 are returned). If the optional keyword ‘radians’ is True (default is False), then all input and output coordinates will be in radians instead of the default of degrees for geographic input/output projections. If the optional keyword ‘errcheck’ is set to True an exception is raised if the transformation is invalid. By default errcheck=False and
inf
is returned for an invalid transformation (and no exception is raised). If always_xy is toggled, the transform method will accept as input and return as output coordinates using the traditional GIS order, that is longitude, latitude for geographic CRS and easting, northing for most projected CRS.In addition to converting between cartographic and geographic projection coordinates, this function can take care of datum shifts (which cannot be done using the __call__ method of the Proj instances). It also allows for one of the coordinate systems to be geographic (proj = ‘latlong’).
x,y and z can be numpy or regular python arrays, python lists/tuples or scalars. Arrays are fastest. For projections in geocentric coordinates, values of x and y are given in meters. z is always meters.
Example usage:
>>> from pyproj import Proj, transform >>> # projection 1: UTM zone 15, grs80 ellipse, NAD83 datum >>> # (defined by epsg code 26915) >>> p1 = Proj('epsg:26915', preserve_units=False) >>> # projection 2: UTM zone 15, clrk66 ellipse, NAD27 datum >>> p2 = Proj('epsg:26715', preserve_units=False) >>> # find x,y of Jefferson City, MO. >>> x1, y1 = p1(-92.199881,38.56694) >>> # transform this point to projection 2 coordinates. >>> x2, y2 = transform(p1,p2,x1,y1) >>> '%9.3f %11.3f' % (x1,y1) '569704.566 4269024.671' >>> '%9.3f %11.3f' % (x2,y2) '569722.342 4268814.028' >>> '%8.3f %5.3f' % p2(x2,y2,inverse=True) ' -92.200 38.567' >>> # process 3 points at a time in a tuple >>> lats = (38.83,39.32,38.75) # Columbia, KC and StL Missouri >>> lons = (-92.22,-94.72,-90.37) >>> x1, y1 = p1(lons,lats) >>> x2, y2 = transform(p1,p2,x1,y1) >>> xy = x1+y1 >>> '%9.3f %9.3f %9.3f %11.3f %11.3f %11.3f' % xy '567703.344 351730.944 728553.093 4298200.739 4353698.725 4292319.005' >>> xy = x2+y2 >>> '%9.3f %9.3f %9.3f %11.3f %11.3f %11.3f' % xy '567721.149 351747.558 728569.133 4297989.112 4353489.645 4292106.305' >>> lons, lats = p2(x2,y2,inverse=True) >>> xy = lons+lats >>> '%8.3f %8.3f %8.3f %5.3f %5.3f %5.3f' % xy ' -92.220 -94.720 -90.370 38.830 39.320 38.750'
pyproj.itransform¶
-
pyproj.transformer.
itransform
(p1: Any, p2: Any, points: Iterable[Iterable], switch: bool = False, time_3rd: bool = False, radians: bool = False, errcheck: bool = False, skip_equivalent: bool = False, always_xy: bool = False)[source]¶ New in version 2.1.2: skip_equivalent
New in version 2.2.0: always_xy
Deprecated since version 2.6.1: This function is deprecated. See: Upgrading to pyproj 2 from pyproj 1
points2 = itransform(p1, p2, points1) Iterator/generator version of the function pyproj.transform. Transform points between two coordinate systems defined by the Proj instances p1 and p2. This function can be used as an alternative to pyproj.transform when there is a need to transform a big number of coordinates lazily, for example when reading and processing from a file. Points1 is an iterable/generator of coordinates x1,y1(,z1) or lon1,lat1(,z1) in the coordinate system defined by p1. Points2 is an iterator that returns tuples of x2,y2(,z2) or lon2,lat2(,z2) coordinates in the coordinate system defined by p2. z are provided optionally.
- Points1 can be:
a tuple/list of tuples/lists i.e. for 2d points: [(xi,yi),(xj,yj),….(xn,yn)]
a Nx3 or Nx2 2d numpy array where N is the point number
a generator of coordinates (xi,yi) for 2d points or (xi,yi,zi) for 3d
If optional keyword ‘switch’ is True (default is False) then x, y or lon,lat coordinates of points are switched to y, x or lat, lon. If the optional keyword ‘radians’ is True (default is False), then all input and output coordinates will be in radians instead of the default of degrees for geographic input/output projections. If the optional keyword ‘errcheck’ is set to True an exception is raised if the transformation is invalid. By default errcheck=False and
inf
is returned for an invalid transformation (and no exception is raised). If always_xy is toggled, the transform method will accept as input and return as output coordinates using the traditional GIS order, that is longitude, latitude for geographic CRS and easting, northing for most projected CRS.Example usage:
>>> from pyproj import Proj, itransform >>> # projection 1: WGS84 >>> # (defined by epsg code 4326) >>> p1 = Proj('epsg:4326', preserve_units=False) >>> # projection 2: GGRS87 / Greek Grid >>> p2 = Proj('epsg:2100', preserve_units=False) >>> # Three points with coordinates lon, lat in p1 >>> points = [(22.95, 40.63), (22.81, 40.53), (23.51, 40.86)] >>> # transform this point to projection 2 coordinates. >>> for pt in itransform(p1,p2,points, always_xy=True): '%6.3f %7.3f' % pt '411050.470 4497928.574' '399060.236 4486978.710' '458553.243 4523045.485' >>> for pt in itransform(4326, 4326, [(30, 60)]): ... '{:.0f} {:.0f}'.format(*pt) '30 60'