gdal.transform_points

Transform a tabular file of coordinates between two CRSs.

  • Kind: standard
  • Network: no
  • Wraps: gdaltransform

Inputs🔗

NameTypeDescription
pointsfile (CSV)Input CSV with x, y (and optional z) columns.
source_crsstringSource CRS (e.g. "EPSG:4326").
target_crsstringTarget CRS (e.g. "EPSG:32618").
x_fieldstringName of the X column in the CSV (default "x").
y_fieldstringName of the Y column in the CSV (default "y").

Outputs🔗

NameTypeDescription
pointsfile (CSV)Output CSV with columns x, y and (when present) z in the target CRS.