Motivation: | Need better cohabitation between geophysics and photographic views |
|---|---|
Contact: | |
Tracker: | TBD |
Description
Status
This proposal is currently under construction (it was listed against 2.5.x but has no history).
Tasks
API Change
BEFORE
| Code Block | ||
|---|---|---|
| ||
class GridCoverage2D {
GridCoverage2D geophysics(boolean);
}
|
AFTER
| Code Block | ||
|---|---|---|
| ||
enum ViewType {
NATIVE, PACKED, RENDERED, GEOPHYSICS, PHOTOGRAPHIC, SAME
}
class GridCoverage2D {
GridCoverage2D view(ViewType);
}
|