In 2.x, there is a convenient way to save a Layer to a projection to avoid having to do projection on the fly. The layer has the function SaveToProjection.
Dim Layer As New Layer("...\MyLayer.shp")
Dim GeoToUTM17N As New GeodeticToUTM17N()
Layer.SaveToProjection("UTM17N", GeoToUTM17N , True)
I could not find a such a simple API in 3.x. What would be the way to accomplish that task in 3.x? Are you planning on offering a simple API for that in the near future?
Thank you.