MCPcopy Create free account
hub / github.com/OSGeo/gdal / OSRIsDynamic

Function OSRIsDynamic

ogr/ogrspatialreference.cpp:9654–9660  ·  view source on GitHub ↗

/ OSRIsDynamic() */ / * \brief Check if a CRS is a dynamic CRS. * * A dynamic CRS relies on a dynamic datum, that is a datum that is not * plate-fixed. * * This function is the same as OGRSpatialReference::IsDynamic(). * * @since OGR 3.4.0 */

Source from the content-addressed store, hash-verified

9652 * @since OGR 3.4.0
9653 */
9654int OSRIsDynamic(OGRSpatialReferenceH hSRS)
9655
9656{
9657 VALIDATE_POINTER1(hSRS, "OSRIsDynamic", 0);
9658
9659 return ToPointer(hSRS)->IsDynamic();
9660}
9661
9662/************************************************************************/
9663/* HasPointMotionOperation() */

Callers

nothing calls this directly

Calls 2

IsDynamicMethod · 0.80
ToPointerFunction · 0.70

Tested by

no test coverage detected