File tree Expand file tree Collapse file tree
components/shared/scene-metadata Expand file tree Collapse file tree Original file line number Diff line number Diff line change 237237 < b > {{ 'FRAME_COVERAGE' | translate }} </ b > •
238238 {{ scene.metadata.nisar?.frameCoverage }}
239239 </ span >
240- </ li >
241- < li >
242240 @if (isGeoSearch()) {
243241 < mat-icon
244242 [matMenuTriggerFor] ="setFrameCoverageMenu "
410408 {{ scene.metadata.stackSize }}
411409 </ li >
412410 }
413- @if (hasValue(scene.metadata.pgeVersion)) {
411+ @if (hasValue(scene.metadata.pgeVersion) && dataset?.id !== 'NISAR' ) {
414412 < li class ="detail-item-margin ">
415413 < b > {{ 'PGE_VERSION' | translate }} </ b > •
416414 {{ scene.metadata.pgeVersion }}
417415 </ li >
418416 }
417+ @if (hasValue(scene.metadata.nisar?.crid)) {
418+ < li class ="detail-item-margin ">
419+ < b > {{ 'CRID' | translate }} </ b > •
420+ {{ scene.metadata.nisar?.crid }}
421+ </ li >
422+ }
419423 @if (
420424 !!scene.metadata.opera && scene.metadata.productType !== 'TROPO-ZENITH'
421425 ) {
Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ export interface NISARMetadata {
110110 jointObservation : string ;
111111 sideBandPolarization : string ;
112112 mainBandPolarization : string ;
113+ crid : string | null ;
113114 rangeBandwidth : string ;
114115 sizeMB ?: Record < string , { bytes : number ; format : string } > ;
115116}
Original file line number Diff line number Diff line change @@ -61,7 +61,6 @@ export class BrowseOverlayService {
6161 datasetID === 'SENTINEL-1' ||
6262 datasetID === 'SENTINEL-1 INTERFEROGRAM (BETA)' ||
6363 datasetID === 'UAVSAR' ||
64- datasetID === 'NISAR' ||
6564 datasetID === 'OPERA-S1'
6665 ) ;
6766 case models . SearchType . SARVIEWS_EVENTS :
@@ -73,8 +72,7 @@ export class BrowseOverlayService {
7372 selectedScene ?. dataset === 'Sentinel-1B' ||
7473 selectedScene ?. dataset === 'Sentinel-1C' ||
7574 selectedScene ?. dataset === 'Sentinel-1 Interferogram (BETA)' ||
76- selectedScene ?. dataset === 'UAVSAR' ||
77- selectedScene ?. dataset === 'NISAR'
75+ selectedScene ?. dataset === 'UAVSAR'
7876 ) ;
7977 case models . SearchType . CUSTOM_PRODUCTS :
8078 return true ;
Original file line number Diff line number Diff line change @@ -149,8 +149,7 @@ export class MapEffects {
149149 dataset ?. id === 'SENTINEL-1' ||
150150 dataset ?. id === 'SENTINEL-1 INTERFEROGRAM (BETA)' ||
151151 dataset ?. id === 'UAVSAR' ||
152- dataset ?. id === 'OPERA-S1' ||
153- dataset ?. id === 'NISAR'
152+ dataset ?. id === 'OPERA-S1'
154153 ) ;
155154 }
156155 return (
You can’t perform that action at this time.
0 commit comments