Skip to content

Commit

Permalink
Adjust sensor swath and pass params
Browse files Browse the repository at this point in the history
  • Loading branch information
Flowm committed Oct 22, 2024
1 parent ec77e61 commit f0005ea
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/Orbit.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default class Orbit {
groundStationPosition,
startDate = dayjs().toDate(),
endDate = dayjs(startDate).add(7, "day").toDate(),
minElevation = 10,
minElevation = 5,
maxPasses = 50,
) {
const groundStation = { ...groundStationPosition };
Expand Down
9 changes: 9 additions & 0 deletions src/modules/SatelliteProperties.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,9 +302,18 @@ export class SatelliteProperties {
if (this.name.includes("SENTINEL-2")) {
return 290;
}
if (this.name.includes("SENTINEL-3")) {
return 740;
}
if (this.name.includes("LANDSAT")) {
return 185;
}
if (this.name.includes("FENGYUN")) {
return 2900;
}
if (this.name.includes("METOP")) {
return 2900;
}
return 200;
}
}

0 comments on commit f0005ea

Please sign in to comment.