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
4 changes: 2 additions & 2 deletions src/components/core/Aladin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function AladinViewer({
ra,
dec,
fov = 0.5,
survey = "P/DSS2/color",
survey = "CDS/P/DESI-Legacy-Surveys/DR10/color",
className = "w-full h-96",
additionalSources,
}: AladinViewerProps) {
Expand All @@ -37,7 +37,7 @@ export function AladinViewer({
showReticle: false,
showZoomControl: true,
showFullscreenControl: false,
showLayersControl: false,
showLayersControl: true,
showCooGridControl: false,
});

Expand Down
23 changes: 5 additions & 18 deletions src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,15 @@ const homePageHint: ReactElement = (
<div>Examples:</div>
<ul>
<li>
Search by name: <Link href="/query?q=name:IC1445">name:IC1445</Link>
By name (string match): <Link href="/query?q=IC1445">IC1445</Link>
</li>
<li>
Search by PGC number: <Link href="/query?q=pgc:112642">pgc:112642</Link>
</li>
</ul>
<div>
The search conditions can be concatenated with AND or OR operators. For
example:
</div>
<ul>
<li>
Search by name and PGC number:{" "}
<Link href="/query?q=name:IC1445%20AND%20pgc:112642">
name:IC1445 and pgc:112642
</Link>
By coordinates (hms+dms):{" "}
<Link href="/query?q=12h32m22s%2B15d22m45s">12h32m22s+15d22m45s</Link>
</li>
<li>
Search by name or PGC number:{" "}
<Link href="/query?q=name:IC1445%20OR%20pgc:112642">
name:IC4445 or pgc:87422
</Link>
By coordinates (J2000):{" "}
<Link href="/query?q=J001122.33%2B443322.1">J001122.33+443322.1</Link>
</li>
</ul>
</div>
Expand Down
1 change: 0 additions & 1 deletion src/pages/ObjectDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ function ObjectDetails({ object, schema }: ObjectDetailsProps): ReactElement {
ra={object.catalogs.coordinates.equatorial.ra}
dec={object.catalogs.coordinates.equatorial.dec}
fov={0.02}
survey="P/DSS2/color"
className="w-96 h-96"
/>
)}
Expand Down
1 change: 0 additions & 1 deletion src/pages/RecordCrossmatchDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ function RecordCrossmatchDetails({
ra={crossmatch.catalogs.coordinates.equatorial.ra}
dec={crossmatch.catalogs.coordinates.equatorial.dec}
fov={0.02}
survey="P/DSS2/color"
className="w-96 h-96"
additionalSources={candidateSources}
/>
Expand Down