Skip to content

Commit

Permalink
ajustes Satellites.
Browse files Browse the repository at this point in the history
  • Loading branch information
tharlestsa committed Sep 30, 2024
1 parent f80e55e commit c5e7806
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
13 changes: 11 additions & 2 deletions src/server/libs/GoogleEarthEngine.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const ee = require('@google/earthengine');
const { google } = require('google-auth-library');
const { PrismaClient } = require('@prisma/client')
import { mongo } from "./Mongo";

Expand Down Expand Up @@ -89,8 +90,16 @@ export class GoogleEarthEngine {
run(callback, errorCallback, authenticationErrorCallback) {
this.ee.data.authenticateViaPrivateKey(
this.credentials,
() => {this.ee.initialize(null, null, callback, errorCallback) },
authenticationErrorCallback
() => {
this.ee.initialize(null, null, callback, (error) => {
errorCallback(error);
console.error('Initialization error:', error);
});
},
(authError) => {
authenticationErrorCallback(authError);
console.error('Authentication error:', authError);
}
);
}
}
12 changes: 6 additions & 6 deletions src/server/libs/Landsat.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export class Landsat extends GoogleEarthEngine {
}
];
Landsat.prototype.mosaicsPromises = [];
this.initSatellites();
this.getCompositions();

PythonShell.defaultOptions = {
Expand All @@ -32,10 +33,9 @@ export class Landsat extends GoogleEarthEngine {
}

initSatellites() {

Landsat.prototype.landsat_5 = super.ee.ImageCollection("LANDSAT/LT05/C01/T1_TOA");
Landsat.prototype.landsat_7 = super.ee.ImageCollection("LANDSAT/LE07/C01/T1_TOA");
Landsat.prototype.landsat_8 = super.ee.ImageCollection("LANDSAT/LC08/C01/T1_TOA");
Landsat.prototype.landsat_5 = super.ee.ImageCollection("LANDSAT/LT05/C02/T1_L2");
Landsat.prototype.landsat_7 = super.ee.ImageCollection("LANDSAT/LE07/C02/T1_L2");
Landsat.prototype.landsat_8 = super.ee.ImageCollection("LANDSAT/LC08/C02/T1_L2");
}

getCompositions() {
Expand Down Expand Up @@ -86,7 +86,7 @@ export class Landsat extends GoogleEarthEngine {
this.getBounds().then(ob => {
const year = moment().year() - 1;
const bands = ['B5','B6','B4']
const img = super.ee.ImageCollection("LANDSAT/LC08/C01/T1_TOA").filterDate(year + '-01-01', year + '-12-31')
const img = super.ee.ImageCollection("LANDSAT/LC08/C02/T1_L2").filterDate(year + '-01-01', year + '-12-31')
.sort("CLOUD_COVER", false)
.filterBounds(ob)
.mosaic()
Expand All @@ -98,7 +98,7 @@ export class Landsat extends GoogleEarthEngine {
'dimensions': 180,
'format': 'png'
});

console.log(thumb, this.compositions)
resolve(thumb)
})
} catch (e) {
Expand Down
4 changes: 2 additions & 2 deletions src/server/util/satellites.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const Satellites = {
SENTINEL: 1,
LANDSAT: 2,
SENTINEL: 2,
LANDSAT: 1,
PLANET: 3
}

0 comments on commit c5e7806

Please sign in to comment.