GLDAS-1: Global Land Data Assimilation System band ( AvgSurfTsfc: Average surface temperature [K] ) provides daily data.I want to get this data as an annual average.

This is the script I'm using;

//GLDAS-1: Küresel Toprak Verisi var noahAvgSurfTsfc = ee.ImageCollection('NASA/GLDAS/V001/NOAH/G025/T3H').filterDate(startTime, endTime).select('AvgSurfTsfc'); noahAvgSurfTsfc = noahAvgSurfTsfc.map(function(image) { return image.addBands(image.subtract(273.15).select([0], ['S?cakl?k C°'])); });

var noahAvgSurfTsfc = ui.Chart.image.series(noahAvgSurfTsfc, plot, ee.Reducer.mean(), 30); noahAvgSurfTsfc = noahAvgSurfTsfc .setOptions({ title: 'Ortalama Yüzey S?cakl??? [K]', hAxis: {title: 'Aylar'}, vAxis: {title: 'S?cakl?k'}

});

print(noahAvgSurfTsfc);

I do not want to take this data everyday.I want to take it as an average year. Can ypu help me ? Thanks

asked 09 Nov '17, 13:19

talhaberkarikan's gravatar image

talhaberkarikan
1134
accept rate: 0%


For Google Earth Engine related questions please go to the GEE forum :

https://groups.google.com/forum/#!forum/google-earth-engine-developers

/Thank you

permanent link

answered 10 Nov '17, 14:45

Open%20Foris's gravatar image

Open Foris ♦♦
9995714
accept rate: 10%

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×281

question asked: 09 Nov '17, 13:19

question was seen: 3,695 times

last updated: 10 Nov '17, 14:45