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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pc-datacatalog",
"version": "2025.4.3",
"version": "2025.5.1",
"private": true,
"proxy": "http://api:7071/",
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions src/components/Header/Header.index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { headerStyle } from "./styles";
import { gridContentStyle, offGridContentStyle } from "styles";
import { HeaderBar } from "./Header.Bar";
import { HeaderOverflow } from "./Header.Overflow";
import { PlanetaryComputerProAnnouncement } from "./components/PlanetaryComputerProAnnouncement";

const Header = ({ onGrid = true }) => {
const navClass = onGrid ? gridContentStyle : offGridContentStyle;
Expand All @@ -12,6 +13,7 @@ const Header = ({ onGrid = true }) => {
<HeaderBar />
<HeaderOverflow />
</nav>
<PlanetaryComputerProAnnouncement />
</header>
);
};
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import { MessageBar, MessageBarType, Link } from "@fluentui/react";
import { useState, useEffect } from "react";
import { messageBarStyle } from "../styles";

const sessionStorageKey = "pcProMessageDismissed";

export function PlanetaryComputerProAnnouncement() {
const [isDismissed, setIsDismissed] = useState(false);
useEffect(() => {
const dismissed = sessionStorage.getItem(sessionStorageKey);
if (dismissed === "true") {
setIsDismissed(true);
}
}, []);
const onDismiss = () => {
sessionStorage.setItem(sessionStorageKey, "true");
setIsDismissed(true);
};
if (isDismissed) {
return null;
}
return (
<MessageBar
messageBarType={MessageBarType.success}
isMultiline={true}
dismissButtonAriaLabel="Close"
onDismiss={onDismiss}
className={messageBarStyle}
>
Announcing Microsoft Planetary Computer Pro - Bring the power of the Planetary
Computer to your private geospatial data.
<Link href="https://aka.ms/planetarycomputerpro" target="_blank" underline>
Click here to learn more
</Link>
</MessageBar>
);
}
4 changes: 4 additions & 0 deletions src/components/Header/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,7 @@ export const breakStyle = mergeStyles({
export const rightAligned = mergeStyles({
marginLeft: "auto !important",
});

export const messageBarStyle = mergeStyles({
margin: "10px 0",
});
32 changes: 15 additions & 17 deletions src/config/datasetGroups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -647,24 +647,22 @@ esa-cci-lc:
hls2:
title: Harmonized Landsat and Sentinel-2 (HLS) v2.0
short_description: >
Harmonized Landsat Sentinel-2 (HLS) Version 2.0 provides consistent surface
reflectance (SR) and top of atmosphere (TOA) brightness data from the Operational
Land Imager (OLI) aboard the joint NASA/USGS Landsat 8 satellite and the
Multi-Spectral Instrument (MSI) aboard the ESA (European Space Agency)
Sentinel-2A and Sentinel-2B satellites.
Harmonized Landsat Sentinel-2 (HLS) Version 2.0 provides consistent surface reflectance (SR)
and top of atmosphere (TOA) brightness data from the Operational Land Imager (OLI) aboard the
joint NASA/USGS Landsat 8 and Landsat 9 satellites and the Multi-Spectral Instrument (MSI)
aboard the ESA (European Space Agency) Sentinel-2A, Sentinel-2B, and Sentinel-2C satellites.
description: >
Harmonized Landsat Sentinel-2 (HLS) Version 2.0 provides consistent surface
reflectance (SR) and top of atmosphere (TOA) brightness data from the Operational
Land Imager (OLI) aboard the joint NASA/USGS Landsat 8 satellite and the
Multi-Spectral Instrument (MSI) aboard the ESA (European Space Agency)
Sentinel-2A and Sentinel-2B satellites. The combined measurement enables global
observations of the land every 2-3 days at 30 meter (m) spatial resolution.
The HLSS30 and HLSL30 products are gridded to the same resolution and Military
Grid Reference System (MGRS) tiling and are “stackable” for time series analysis.
This dataset is in the form of [cloud-optimized GeoTIFFs](https://www.cogeo.org/).
The HLS v2.0 data is generated by NASA's IMPACT team at Marshall Space Flight Center.
The product latency is 1.7 days, from the satellite overpass to the HLS data
availability at LP DAAC. For more information see LP DAAC's
Harmonized Landsat Sentinel-2 (HLS) Version 2.0 provides consistent surface reflectance (SR)
and top of atmosphere (TOA) brightness data from the Operational Land Imager (OLI) aboard the
joint NASA/USGS Landsat 8 and Landsat 9 satellites and the Multi-Spectral Instrument (MSI)
aboard the ESA (European Space Agency) Sentinel-2A, Sentinel-2B, and Sentinel-2C satellites.
The combined measurement enables global observations of the land every 2-3 days at 30 meter
(m) spatial resolution. The HLS-S30 and HLS-L30 products are gridded to the same resolution and
Military Grid Reference System (MGRS) tiling system and are "stackable" for time series analysis.
This dataset is in the form of cloud-optimized GeoTIFFs. The HLS v2.0 data is generated by NASA's
IMPACT team at Marshall Space Flight Center. The product latency is 1.7 days, from the satellite
overpass to the HLS data availability at NASA's Land Processes Distributed Active Archive Center
(LP DAAC). For more information see LP DAAC's
[HLS Overview](https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/harmonized-landsat-sentinel-2-hls-overview/).
assets:
headerImg:
Expand Down
Loading