Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/app/components/header/queue/queue.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ <h1>
) {
@if (
product.dataset === 'Sentinel-1C' ||
product.dataset === 'Sentinel-1D' ||
product.dataset === 'Sentinel-1B' ||
product.dataset === 'Sentinel-1A'
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,7 @@ export class ScenesListHeaderComponent implements OnInit, OnDestroy {
scenes.every(
(scene) =>
scene.dataset === 'Sentinel-1C' ||
scene.dataset === 'Sentinel-1D' ||
scene.dataset === 'Sentinel-1B' ||
scene.dataset === 'Sentinel-1A',
) &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
@if (
dataset === 'Sentinel-1B' ||
dataset === 'Sentinel-1A' ||
dataset === 'Sentinel-1C'
dataset === 'Sentinel-1C' ||
dataset === 'Sentinel-1D'
) {
<span>
{{ name | truncate: sceneNameLen - 4 }}
Expand Down
2 changes: 2 additions & 0 deletions src/app/models/critical-baseline.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import {
sentinel1a,
sentinel1b,
sentinel1c,
sentinel1d,
radarsat1,
} from './critical-baselines';

Expand All @@ -13,6 +14,7 @@ const criticalBaselines = {
'SENTINEL-1A': sentinel1a, // Beam -> Pol
'SENTINEL-1B': sentinel1b, // Beam -> Pol
'SENTINEL-1C': sentinel1c, // Beam -> Pol
'SENTINEL-1D': sentinel1d, // Beam -> Pol
'RADARSAT-1': radarsat1, // Beam
'ERS-1': 1061,
'ERS-2': 1061,
Expand Down
7 changes: 6 additions & 1 deletion src/app/models/critical-baselines/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
export { alos } from './alos.models';
export { radarsat1 } from './radarsat-1.models';
export { sentinel1a, sentinel1b, sentinel1c } from './sentinel-1.models';
export {
sentinel1a,
sentinel1b,
sentinel1c,
sentinel1d,
} from './sentinel-1.models';
46 changes: 46 additions & 0 deletions src/app/models/critical-baselines/sentinel-1.models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,49 @@ export const sentinel1c = {
'VV+VH': 14991,
},
};

export const sentinel1d = {
EW: {
HH: 6066,
'HH+HV': 5855,
'VV+VH': 5828,
},
IW: {
HH: 15755,
'HH+HV': 15934,
VV: 16064,
'VV+VH': 15882,
},
S1: {
HH: 16613,
'HH+HV': 15925,
VV: 16094,
'VV+VH': 15942,
},
S2: {
HH: 14682,
VV: 14913,
'VV+VH': 14626,
},
S3: {
HH: 13844,
'HH+HV': 13684,
VV: 13474,
'VV+VH': 13705,
},
S4: {
'HH+HV': 13347,
VV: 13365,
'VV+VH': 13698,
},
S5: {
'HH+HV': 14453,
VV: 14139,
'VV+VH': 14761,
},
S6: {
'HH+HV': 15739,
VV: 15310,
'VV+VH': 14991,
},
};
4 changes: 4 additions & 0 deletions src/app/models/datasets/sentinel-1-burst.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ export const sentinel_1_bursts = {
displayName: 'Sentinel-1C',
apiValue: 'SC',
},
{
displayName: 'Sentinel-1D',
apiValue: 'SD',
},
],
platformDesc: 'SENTINEL_1_BURST_DESC',
platformIcon: '/assets/icons/satellite_alt_black_48dp.svg',
Expand Down
4 changes: 4 additions & 0 deletions src/app/models/datasets/sentinel-1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ export const sentinel_1 = {
displayName: 'Sentinel-1C',
apiValue: 'SC',
},
{
displayName: 'Sentinel-1D',
apiValue: 'SD',
},
],
platformDesc: 'SENTINEL_DESC',
platformIcon: '/assets/icons/satellite_alt_black_48dp.svg',
Expand Down
1 change: 1 addition & 0 deletions src/app/services/browse-overlay.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export class BrowseOverlayService {
selectedScene?.dataset === 'Sentinel-1A' ||
selectedScene?.dataset === 'Sentinel-1B' ||
selectedScene?.dataset === 'Sentinel-1C' ||
selectedScene?.dataset === 'Sentinel-1D' ||
selectedScene?.dataset === 'Sentinel-1 Interferogram (BETA)' ||
selectedScene?.dataset === 'UAVSAR'
);
Expand Down
1 change: 1 addition & 0 deletions src/app/services/scenes.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ export class ScenesService {
!scenes.every(
(scene) =>
scene.dataset === 'Sentinel-1C' ||
scene.dataset === 'Sentinel-1D' ||
scene.dataset === 'Sentinel-1B' ||
scene.dataset === 'Sentinel-1A',
)
Expand Down
1 change: 1 addition & 0 deletions src/app/store/map/map.effect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ export class MapEffects {
product.dataset === 'Sentinel-1A' ||
product.dataset === 'Sentinel-1B' ||
product.dataset === 'Sentinel-1C' ||
product.dataset === 'Sentinel-1D' ||
product.dataset === 'Sentinel-1 Interferogram (BETA)' ||
product.dataset === 'UAVSAR';

Expand Down
Loading