compose static method
Creates a ComposedProjector that will apply the provided projectors in order.
Use when dealing with multiple coordinate transformations in succession.
Implementation
static Projector compose(List<Projector> projectors) {
return ComposedProjector(projectors);
}