Guest User

Untitled

a guest
Nov 17th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var polygons = ee.FeatureCollection('xxxxx');
  2.  
  3. var bufferPoly100 = function(feature) {
  4. return feature.buffer(100);
  5. };
  6.  
  7. var bufferPoly200 = function(feature) {
  8. return feature.buffer(200);
  9. };
  10.  
  11. var bufferedPolys100 = polygons.map(bufferPoly100);
  12. var bufferedPolys200 = polygons.map(bufferPoly200);
Add Comment
Please, Sign In to add comment