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