From 58c23e590f1f027c5ff9d83f4c10427b48d74f39 Mon Sep 17 00:00:00 2001 From: Victor Lins Date: Mon, 29 Oct 2012 23:34:36 -0300 Subject: [PATCH 1/3] new RGB layers --- src/content/templates/_header.html | 2 +- src/static/js/rgb_layers.js | 20 +++++++++++++++++--- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/src/content/templates/_header.html b/src/content/templates/_header.html index 9d41eac..dab5639 100755 --- a/src/content/templates/_header.html +++ b/src/content/templates/_header.html @@ -93,7 +93,7 @@

Are you sure?

-

Ranges analyzed: -

+

Range analyzed: -

diff --git a/src/static/js/rgb_layers.js b/src/static/js/rgb_layers.js index c35f39d..59838dc 100644 --- a/src/static/js/rgb_layers.js +++ b/src/static/js/rgb_layers.js @@ -4,17 +4,24 @@ var RGB_layers = [ { r: 1, g: 4, - b: 3, + b: 1, /*3,*/ sensor: 'modis', description: 'True color RGB141' }, { - r: 5, + r: 4, /*5,*/ g: 2, b: 1, sensor: 'modis', description: 'False color RGB421' }, + { + r: 1, + g: 2, + b: 1, + sensor: 'modis', + description: 'False color RGB121' + }, { r: 2, g: 1, @@ -27,7 +34,14 @@ var RGB_layers = [ g: 20, b: 10, sensor: 'landsat', - description: 'Landsat Stretch' + description: 'Landsat Stretch RGB321' + }, + { + r: 50, + g: 40, + b: 30, + sensor: 'landsat', + description: 'Landsat Stretch RGB543' } ]; From 455cf41c11a2c7b514746c9595c0239d97e36398 Mon Sep 17 00:00:00 2001 From: Victor Lins Date: Tue, 30 Oct 2012 05:47:53 -0300 Subject: [PATCH 2/3] Landsat Stretch RGB142 --- src/static/js/rgb_layers.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/static/js/rgb_layers.js b/src/static/js/rgb_layers.js index 59838dc..c989fca 100644 --- a/src/static/js/rgb_layers.js +++ b/src/static/js/rgb_layers.js @@ -42,6 +42,13 @@ var RGB_layers = [ b: 30, sensor: 'landsat', description: 'Landsat Stretch RGB543' + }, + { + r: 10, + g: 40, + b: 20, + sensor: 'landsat', + description: 'Landsat Stretch RGB142' } ]; From 40792bac1608ae6967a27a4875d866640c002329 Mon Sep 17 00:00:00 2001 From: Victor Lins Date: Tue, 6 Nov 2012 16:30:14 -0300 Subject: [PATCH 3/3] Landsat Stretch RGB432 --- src/static/js/rgb_layers.js | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/static/js/rgb_layers.js b/src/static/js/rgb_layers.js index c989fca..6e06b55 100644 --- a/src/static/js/rgb_layers.js +++ b/src/static/js/rgb_layers.js @@ -44,11 +44,18 @@ var RGB_layers = [ description: 'Landsat Stretch RGB543' }, { - r: 10, - g: 40, + r: 40, + g: 30, b: 20, sensor: 'landsat', - description: 'Landsat Stretch RGB142' + description: 'Landsat Stretch RGB432' + }, + { + r: 10, + g: 20, + b: 10, + sensor: 'landsat', + description: 'Landsat Stretch RGB121' } ];