#!/usr/bin/python import mapscript projInObj = mapscript.projectionObj("init=epsg:4326") projOutObj = mapscript.projectionObj("init=epsg:26918") shape = mapscript.shapeObj.fromWKT("POINT(-75 45)") print shape.toWKT() shape.project(projInObj, projOutObj) print shape.toWKT()