Skip to content

improve support of rgb coverages

Jody Garnett edited this page Apr 10, 2015 · 6 revisions
  • Motivation: Need better cohabitation between geophysics and photographic views

  • Contact:

  • Martin Desruisseaux

Description

Status

This proposal is currently under construction (it was listed against 2.5.x but has no history).

Tasks

API Change

BEFORE

class GridCoverage2D {
   GridCoverage2D geophysics(boolean);
}

AFTER

enum ViewType {
    NATIVE, PACKED, RENDERED, GEOPHYSICS, PHOTOGRAPHIC, SAME
}

class GridCoverage2D {
   GridCoverage2D view(ViewType);
}
Clone this wiki locally