Developer ManualPython CookbookAPI Setup Get CRS from project This example shows how to retrieve the project's CRS (Coordinate Reference System). # Get the coordinate system given project ID result = vf.get_project_crs(project) if not result.success: print(result.error_info) exit() crs = result.crs