projection
require(["esri/geometry/projection"], function(projection) { /* code goes here */ });
esri/geometry/projection
A client-side projection engine for converting geometries from one SpatialReference to another. When projecting geometries the starting spatial reference must be specified on the input geometry. You can specify a specific geographic (datum) transformation for the project operation, or accept the default transformation if one is needed.
Known Limitations
The browser must support WebAssembly for the client-side engine to work.
Currently, only equation-based geographic transformations are supported.
Method Overview
Name | Return Type | Summary | Object | |
---|---|---|---|---|
GeographicTransformation | Returns the default geographic transformation used to convert the geometry from the input spatial reference to the output spatial reference. more details | more details | projection | |
GeographicTransformation[] | Returns a list of all geographic transformations suitable to convert geometries from the input spatial reference to the specified output spatial reference. more details | more details | projection | |
Boolean | Indicates if all dependencies of this module have been loaded. more details | more details | projection | |
Boolean | Indicates if this module is supported in the browser. more details | more details | projection | |
Promise | Loads this module's dependencies. more details | more details | projection | |
Geometry|Geometry[] | Projects a geometry or an array of geometries to the specified output spatial reference. more details | more details | projection |
Method Details
- getTransformation(inSpatialReference, outSpatialReference, extent){GeographicTransformation}
Returns the default geographic transformation used to convert the geometry from the input spatial reference to the output spatial reference. The default transformation is used when projecting geometries where the datum transformation is required but not specified in the
geographicTransformation
parameter.Known Limitations
- This method returns equation-based geographic transformations only.
- Geographic transformations are returned with their maximum number of steps. Currently, number of steps is limited to 2.
Parameters:Autocasts from ObjectThe input spatial reference from which to project geometries. This is the spatial reference of the input geometries.
Autocasts from ObjectThe spatial reference to which you are converting the geometries.
extent ExtentoptionalAn extent used to determine the suitability of the returned transformation. The extent will be re-projected to the
inSpatialReference
if it has a different spatial reference.Returns:Type Description GeographicTransformation Returns the default geographic transformation for the given parameters. If no transformation is required or there are no suitable transformations, then null
is returned.
- getTransformations(inSpatialReference, outSpatialReference, extent){GeographicTransformation[]}
Returns a list of all geographic transformations suitable to convert geometries from the input spatial reference to the specified output spatial reference. The list is ordered in descending order by suitability, with the most suitable being first in the list.
Known Limitations
- This method returns all the suitable equation-based geographic transformations.
- Geographic transformations are returned with their maximum number of steps. Currently, number of steps is limited to 2.
Parameters:Autocasts from ObjectThe spatial reference that the geometries are currently using.
Autocasts from ObjectThe spatial reference to which you are converting the geometries to.
extent ExtentoptionalAn extent used to determine the suitability of the returned transformations. The extent will be re-projected to the input spatial reference if necessary.
Returns:Type Description GeographicTransformation[] Returns an array containing the maximum number the suitable geographic transformations that can be used to convert geometries between input and output spatial references. The list will be empty if the provided extent lies out of the area of use for the input spatial reference. Example:const cs1 = new SpatialReference({ wkid: 4272 //PE_GCS_ED_1950 }); const cs2 = new SpatialReference({ wkid: 4167 }); const extent = new Extent({ xmin: -186.0, ymin: -42.0, xmax: -179.0, ymax: -38.0 }); const geogtrans = projection.getTransformations(cs1, cs2, extent); geogtrans.forEach(function(geogtran, index) { geogtran.steps.forEach(function(step, index) { console.log("step wkid: ", step.wkid); }); });
- isLoaded(){Boolean}
Indicates if all dependencies of this module have been loaded.
Returns:Type Description Boolean Returns true
if this module's dependencies have been loaded.
- isSupported(){Boolean}
Indicates if this module is supported in the browser. The browser must support WebAssembly.
Returns:Type Description Boolean Returns true
if this module is supported in the browser.Example:if (!projection.isSupported()) { console.error("projection is not supported"); return; }
- load(){Promise}
Loads this module's dependencies. This method must be called before projecting geometries.
Returns:Type Description Promise Resolves when the dependencies have been loaded. - See also:
Example:projection.load().then(function() { // the projection module is loaded. Geometries can be re-projected. ... }
- project(geometry, outSpatialReference, geographicTransformation){Geometry|Geometry[]}
Projects a geometry or an array of geometries to the specified output spatial reference. A default geographic transformation is used if not explicitly provided, but required. Use the getTransformation() method to find out which transformation is used by default for the given input and output spatial references.
Note that you must load this module before attempting to project geometries.
Known Limitations
This method uses the spatial reference of the first geometry as an input spatial reference. Therefore all geometries in the array must have the same spatial reference.
Parameters:geometry Geometry|Geometry[]The geometry or geometries to project.
Autocasts from ObjectThe spatial reference to which you are converting the geometries' coordinates.
geographicTransformation GeographicTransformationoptionalThe geographic transformation used to transform the geometries. Specify this parameter to project a geometry when the default transformation is not appropriate for your requirements.
Returns:Type Description Geometry | Geometry[] The result will be an array if an array of geometries is used as input. It will be a single geometry if a single geometry used as input. Examples:// projects each polygon in the array // project() will use the spatial reference of the first geometry in the array // as an input spatial reference. It will use the default transformation // if one is required when converting from input spatial reference // to the output spatial reference var outSpatialReference = new SpatialReference({ wkid: 53008 //Sphere_Sinusoidal projection }); polygonGraphics.forEach(function(graphic) { graphic.geometry = projection.project(graphic.geometry, outSpatialReference); });
var outSpatialReference = { wkid: 54044 }; // projects an array of points var projectedPoints = projection.project(wgsPoints, outSpatialReference); projectedPoints.forEach(function(point) { console.log(point.x, point.y); });