Change the label of the ui.Chart.image.seriesByRegion in Google Earth EngineGoogle Earth Engine: label...
Modeling an IP Address
Intersection point of 2 lines defined by 2 points each
Arrow those variables!
Why is 150k or 200k jobs considered good when there's 300k+ births a month?
Alternative to sending password over mail?
When a company launches a new product do they "come out" with a new product or do they "come up" with a new product?
Convert two switches to a dual stack, and add outlet - possible here?
Are the number of citations and number of published articles the most important criteria for a tenure promotion?
Can you really stack all of this on an Opportunity Attack?
Add text to same line using sed
How to determine what difficulty is right for the game?
Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?
How to format long polynomial?
What does it mean to describe someone as a butt steak?
Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?
How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?
Today is the Center
Meaning of に in 本当に
Important Resources for Dark Age Civilizations?
How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?
Perform and show arithmetic with LuaLaTeX
How does quantile regression compare to logistic regression with the variable split at the quantile?
Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?
Replacing matching entries in one column of a file by another column from a different file
Change the label of the ui.Chart.image.seriesByRegion in Google Earth Engine
Google Earth Engine: label objects on mapCount the number of pixel identified as water from a collection of landsat imageCalculating albedo values with landsat 7 ImageCollection/FeatureCollection error in Google Earth Engine?LinearFit with Google Earth EngineCloud mask for Landsat8 on Google Earth EngineDOY chart in Google Earth EngineGoogle Earth Engine - Map.addLayerGoogle Earth Engine, how to distinguish between rivers/streams and ponds/lakes in a water maskChart Series By Region in Google Earth Engine?Cloud Mask Landsat 7 Tier 2 TOA
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I would like to change the label of the chart in Google Earth Engine. I had the code:
var image= ee.FeatureCollection('ft:1OXpMKiwvIBC__iYcgjyW23A2oMr89IQlC3cLqk3q')
.filter(ee.Filter.or(ee.Filter.eq('name', 'Lake Tekapo')));
print (image);
var collection = ee.ImageCollection('LANDSAT/LC08/C01/T1_SR')
.filterBounds(image)
.filterDate('2017-01-01','2017-05-01');
// Map a function over the Landsat 8 TOA collection to add an NDVI band.
function test(image) {
var equation = image.expression(
'(7.27 * B4/B3) - 1.7',
{
B3: image.select('B4'),
B4: image.select('B3'),
}).rename('TEST').float();
return image.addBands(equation).set('system:time_start',
image.get('system:time_start'));
}
var test =collection.map(test).select(['TEST']);
print (test,'median');
//CHART TIME SERIES
// Define customization options.
var options = {
title: 'TEST over time in regions',
hAxis: {title: 'Time'},
vAxis: {title: 'TEST values'},
lineWidth: 1,
series: {
0: {color: '00FF00'},
1: {color: '0000FF'},
}};
// Create a time series chart.
var tempTimeSeries = ui.Chart.image.seriesByRegion(
test, image, ee.Reducer.mean(), 'TEST',300)
.setChartType('LineChart')
.setOptions(options);
// Display.
print(tempTimeSeries);
I would like that the chart of the lable is the property name of the feature (name = Lake Tekapo) instead of the Id of the feature (id = 2819) (see the figure attached).
google-earth-engine chart
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I would like to change the label of the chart in Google Earth Engine. I had the code:
var image= ee.FeatureCollection('ft:1OXpMKiwvIBC__iYcgjyW23A2oMr89IQlC3cLqk3q')
.filter(ee.Filter.or(ee.Filter.eq('name', 'Lake Tekapo')));
print (image);
var collection = ee.ImageCollection('LANDSAT/LC08/C01/T1_SR')
.filterBounds(image)
.filterDate('2017-01-01','2017-05-01');
// Map a function over the Landsat 8 TOA collection to add an NDVI band.
function test(image) {
var equation = image.expression(
'(7.27 * B4/B3) - 1.7',
{
B3: image.select('B4'),
B4: image.select('B3'),
}).rename('TEST').float();
return image.addBands(equation).set('system:time_start',
image.get('system:time_start'));
}
var test =collection.map(test).select(['TEST']);
print (test,'median');
//CHART TIME SERIES
// Define customization options.
var options = {
title: 'TEST over time in regions',
hAxis: {title: 'Time'},
vAxis: {title: 'TEST values'},
lineWidth: 1,
series: {
0: {color: '00FF00'},
1: {color: '0000FF'},
}};
// Create a time series chart.
var tempTimeSeries = ui.Chart.image.seriesByRegion(
test, image, ee.Reducer.mean(), 'TEST',300)
.setChartType('LineChart')
.setOptions(options);
// Display.
print(tempTimeSeries);
I would like that the chart of the lable is the property name of the feature (name = Lake Tekapo) instead of the Id of the feature (id = 2819) (see the figure attached).
google-earth-engine chart
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
1
I got the answer. // Create a time series chart. var tempTimeSeries = ui.Chart.image.seriesByRegion( test, image, ee.Reducer.mean(), 'TEST',300, 'system:time_start','name')
– user30985
Apr 19 '18 at 13:31
Please post this as an answer instead of a comment and mark it as accepted. This way people finding this question in the future will find the answer easier.
– Kersten
Apr 20 '18 at 11:27
add a comment |
I would like to change the label of the chart in Google Earth Engine. I had the code:
var image= ee.FeatureCollection('ft:1OXpMKiwvIBC__iYcgjyW23A2oMr89IQlC3cLqk3q')
.filter(ee.Filter.or(ee.Filter.eq('name', 'Lake Tekapo')));
print (image);
var collection = ee.ImageCollection('LANDSAT/LC08/C01/T1_SR')
.filterBounds(image)
.filterDate('2017-01-01','2017-05-01');
// Map a function over the Landsat 8 TOA collection to add an NDVI band.
function test(image) {
var equation = image.expression(
'(7.27 * B4/B3) - 1.7',
{
B3: image.select('B4'),
B4: image.select('B3'),
}).rename('TEST').float();
return image.addBands(equation).set('system:time_start',
image.get('system:time_start'));
}
var test =collection.map(test).select(['TEST']);
print (test,'median');
//CHART TIME SERIES
// Define customization options.
var options = {
title: 'TEST over time in regions',
hAxis: {title: 'Time'},
vAxis: {title: 'TEST values'},
lineWidth: 1,
series: {
0: {color: '00FF00'},
1: {color: '0000FF'},
}};
// Create a time series chart.
var tempTimeSeries = ui.Chart.image.seriesByRegion(
test, image, ee.Reducer.mean(), 'TEST',300)
.setChartType('LineChart')
.setOptions(options);
// Display.
print(tempTimeSeries);
I would like that the chart of the lable is the property name of the feature (name = Lake Tekapo) instead of the Id of the feature (id = 2819) (see the figure attached).
google-earth-engine chart
I would like to change the label of the chart in Google Earth Engine. I had the code:
var image= ee.FeatureCollection('ft:1OXpMKiwvIBC__iYcgjyW23A2oMr89IQlC3cLqk3q')
.filter(ee.Filter.or(ee.Filter.eq('name', 'Lake Tekapo')));
print (image);
var collection = ee.ImageCollection('LANDSAT/LC08/C01/T1_SR')
.filterBounds(image)
.filterDate('2017-01-01','2017-05-01');
// Map a function over the Landsat 8 TOA collection to add an NDVI band.
function test(image) {
var equation = image.expression(
'(7.27 * B4/B3) - 1.7',
{
B3: image.select('B4'),
B4: image.select('B3'),
}).rename('TEST').float();
return image.addBands(equation).set('system:time_start',
image.get('system:time_start'));
}
var test =collection.map(test).select(['TEST']);
print (test,'median');
//CHART TIME SERIES
// Define customization options.
var options = {
title: 'TEST over time in regions',
hAxis: {title: 'Time'},
vAxis: {title: 'TEST values'},
lineWidth: 1,
series: {
0: {color: '00FF00'},
1: {color: '0000FF'},
}};
// Create a time series chart.
var tempTimeSeries = ui.Chart.image.seriesByRegion(
test, image, ee.Reducer.mean(), 'TEST',300)
.setChartType('LineChart')
.setOptions(options);
// Display.
print(tempTimeSeries);
I would like that the chart of the lable is the property name of the feature (name = Lake Tekapo) instead of the Id of the feature (id = 2819) (see the figure attached).
google-earth-engine chart
google-earth-engine chart
edited Apr 19 '18 at 7:20
Kersten
7,34332446
7,34332446
asked Apr 19 '18 at 5:23
user30985user30985
517
517
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
1
I got the answer. // Create a time series chart. var tempTimeSeries = ui.Chart.image.seriesByRegion( test, image, ee.Reducer.mean(), 'TEST',300, 'system:time_start','name')
– user30985
Apr 19 '18 at 13:31
Please post this as an answer instead of a comment and mark it as accepted. This way people finding this question in the future will find the answer easier.
– Kersten
Apr 20 '18 at 11:27
add a comment |
1
I got the answer. // Create a time series chart. var tempTimeSeries = ui.Chart.image.seriesByRegion( test, image, ee.Reducer.mean(), 'TEST',300, 'system:time_start','name')
– user30985
Apr 19 '18 at 13:31
Please post this as an answer instead of a comment and mark it as accepted. This way people finding this question in the future will find the answer easier.
– Kersten
Apr 20 '18 at 11:27
1
1
I got the answer. // Create a time series chart. var tempTimeSeries = ui.Chart.image.seriesByRegion( test, image, ee.Reducer.mean(), 'TEST',300, 'system:time_start','name')
– user30985
Apr 19 '18 at 13:31
I got the answer. // Create a time series chart. var tempTimeSeries = ui.Chart.image.seriesByRegion( test, image, ee.Reducer.mean(), 'TEST',300, 'system:time_start','name')
– user30985
Apr 19 '18 at 13:31
Please post this as an answer instead of a comment and mark it as accepted. This way people finding this question in the future will find the answer easier.
– Kersten
Apr 20 '18 at 11:27
Please post this as an answer instead of a comment and mark it as accepted. This way people finding this question in the future will find the answer easier.
– Kersten
Apr 20 '18 at 11:27
add a comment |
1 Answer
1
active
oldest
votes
Series labels are defined by the parameter 'seriesProperty' (the 7th 'Argument' in the syntax) for 'ui.Chart.image.seriesByRegion' function. You just have to specify the name of the column that describes names of the lakes and it should work as long as it is specified in the 7th slot. If there are certain arguments which you don't want to specify (and are not mandatory), you can leave them as 'undefined'.
So in your case the following should work,
var tempTimeSeries = ui.Chart.image.seriesByRegion(test, image, ee.Reducer.mean(), 'TEST', 300, undefined, INSERT COLUMN NAME HERE)
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "79"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f280029%2fchange-the-label-of-the-ui-chart-image-seriesbyregion-in-google-earth-engine%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Series labels are defined by the parameter 'seriesProperty' (the 7th 'Argument' in the syntax) for 'ui.Chart.image.seriesByRegion' function. You just have to specify the name of the column that describes names of the lakes and it should work as long as it is specified in the 7th slot. If there are certain arguments which you don't want to specify (and are not mandatory), you can leave them as 'undefined'.
So in your case the following should work,
var tempTimeSeries = ui.Chart.image.seriesByRegion(test, image, ee.Reducer.mean(), 'TEST', 300, undefined, INSERT COLUMN NAME HERE)
add a comment |
Series labels are defined by the parameter 'seriesProperty' (the 7th 'Argument' in the syntax) for 'ui.Chart.image.seriesByRegion' function. You just have to specify the name of the column that describes names of the lakes and it should work as long as it is specified in the 7th slot. If there are certain arguments which you don't want to specify (and are not mandatory), you can leave them as 'undefined'.
So in your case the following should work,
var tempTimeSeries = ui.Chart.image.seriesByRegion(test, image, ee.Reducer.mean(), 'TEST', 300, undefined, INSERT COLUMN NAME HERE)
add a comment |
Series labels are defined by the parameter 'seriesProperty' (the 7th 'Argument' in the syntax) for 'ui.Chart.image.seriesByRegion' function. You just have to specify the name of the column that describes names of the lakes and it should work as long as it is specified in the 7th slot. If there are certain arguments which you don't want to specify (and are not mandatory), you can leave them as 'undefined'.
So in your case the following should work,
var tempTimeSeries = ui.Chart.image.seriesByRegion(test, image, ee.Reducer.mean(), 'TEST', 300, undefined, INSERT COLUMN NAME HERE)
Series labels are defined by the parameter 'seriesProperty' (the 7th 'Argument' in the syntax) for 'ui.Chart.image.seriesByRegion' function. You just have to specify the name of the column that describes names of the lakes and it should work as long as it is specified in the 7th slot. If there are certain arguments which you don't want to specify (and are not mandatory), you can leave them as 'undefined'.
So in your case the following should work,
var tempTimeSeries = ui.Chart.image.seriesByRegion(test, image, ee.Reducer.mean(), 'TEST', 300, undefined, INSERT COLUMN NAME HERE)
answered Oct 4 '18 at 16:10
TejasTejas
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f280029%2fchange-the-label-of-the-ui-chart-image-seriesbyregion-in-google-earth-engine%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
I got the answer. // Create a time series chart. var tempTimeSeries = ui.Chart.image.seriesByRegion( test, image, ee.Reducer.mean(), 'TEST',300, 'system:time_start','name')
– user30985
Apr 19 '18 at 13:31
Please post this as an answer instead of a comment and mark it as accepted. This way people finding this question in the future will find the answer easier.
– Kersten
Apr 20 '18 at 11:27