Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,16 @@
<span matTooltip="{{ 'FREQUENCY' | translate }}">{{
dataset.frequency
}}</span>
@if (dataset.id === 'NISAR') {
<em class="uncalibrated"
><app-docs-modal
class="info-text"
[text]="'(' + ('UNCALIBRATED' | translate) + ')'"
url="https://nisar-docs.asf.alaska.edu/product-known-issues/"
>
</app-docs-modal>
</em>
}
</mat-card-subtitle>
</mat-card-header>
<div class="detail-card-info">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ a {
text-decoration: none;
}

.uncalibrated {
margin-left: 5px;
}
.detail-card {
max-width: 100%;
height: 90%;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
@if (text && !custStyle) {
<a (click)="showDoc()" class="link-pointer text-link">
{{ text | translate }}
<a (click)="showDoc()" class="link-pointer text-link"
>{{ text | translate }}
</a>
}
@if (text && custStyle) {
<a (click)="showDoc()" style="{{ custStyle }}">
{{ text | translate }}
</a>
<a (click)="showDoc()" style="{{ custStyle }}">{{ text | translate }} </a>
}
@if (description) {
<a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class DocsModalComponent implements OnInit, OnDestroy {

public isAsfUrl(url: string): boolean {
const domain = new URL(url).hostname.replace('www.', '');
return domain.includes('asf.alaska.edu');
return domain.includes('asf.alaska.edu') && domain !== 'asf.alaska.edu';
}

public docsLanguageAdjust(url: string): string {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class MaxResultsSelectorComponent implements OnInit, OnDestroy {

public burstXMLFileCount = 0;

public possibleMaxResults = [250, 500];
public possibleMaxResults = [250, 500, 1000, 2000];
private subs = new SubSink();
constructor() {
const library = inject(FaIconLibrary);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@
}

@if (dataset.id === 'NISAR') {
<span
><em> ({{ 'UNCALIBRATED' | translate }}) </em></span
>
<span>
<app-docs-modal
class="info-text"
[text]="'(' + ('UNCALIBRATED' | translate) + ')'"
url="https://nisar-docs.asf.alaska.edu/product-known-issues/"
></app-docs-modal
></span>
}
@if (dataset.subName) {
<div class="dataset__subName faint-text">
Expand Down
2 changes: 1 addition & 1 deletion src/app/models/datasets/nisar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const nisar = {
],
apiValue: { dataset: 'NISAR' },
date: { start: new Date('2025/08/02 03:44:43 UTC') },
infoUrl: 'https://nisar.jpl.nasa.gov',
infoUrl: 'https://nisar-docs.asf.alaska.edu/',
citationUrl: 'https://asf.alaska.edu/nisar/',
frequency: 'L-Band',
source: {
Expand Down
Loading