Guest User

Untitled

a guest
Jun 25th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. var ar=table.toList(200,0)
  2. print(ar)
  3.  
  4. var data=ee.List([ 'bio01','bio02','bio03','bio04','bio05','bio06','bio07',
  5. 'bio08','bio09','bio10','bio11','bio12','bio13','bio14',
  6. 'bio15','bio16','bio17','bio18','bio19','dem','tmax','tmin','prec']);
  7.  
  8. var matA= ar.map(function(feat){
  9. feat=ee.Feature(feat)
  10. var a=feat.toArray(data)
  11. return a
  12. })
  13.  
  14. var matb=ee.List.repeat([1],ar.length())
  15. var matB=ee.Array(matb)
  16. print(matB)
Add Comment
Please, Sign In to add comment