This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var stateMT = ee.FeatureCollection('ft:15Y2IjO7bMc-COe8xOm3x1tfZdgb7GO4hK1TDWxGg'); | |
var state = stateMT.geometry() | |
Map.centerObject(state) | |
// This script allows you to interactively explore the effects | |
// of mosaicking different Landsat 8 TOA images using ee.Reducer.median(). | |
/* | |
* Style defaults |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const functions = require('firebase-functions'); | |
const express = require('express'); | |
const app = express(); | |
app.get('/', (req, res) => res.send('Hello, World')); | |
exports.api = functions.https.onRequest(app); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
******** PARTE 1 - COMANDOS BÁSICOS | |
## Para listar as imagens existentes localmente | |
-> docker images | |
## Para rodar um container | |
-> docker run -it centos /bin/bash | |
run > executar uma imagem | |
-i > interatividade |