Right now, you have to know what type of shape your are going to project and choose the appropriate method (e.g. FeatureCollection vs. Feature vs. MultiPolygon vs. Point, etc.).
Instead we should probably have a project(from, to, someKindOfData) method that can take any shape type and choose the appropriate method for projecting. We can still keep the individual methods publicly accessible for those who need them.
Right now, you have to know what type of shape your are going to project and choose the appropriate method (e.g.
FeatureCollectionvs.Featurevs.MultiPolygonvs.Point, etc.).Instead we should probably have a
project(from, to, someKindOfData)method that can take any shape type and choose the appropriate method for projecting. We can still keep the individual methods publicly accessible for those who need them.