Skip to content

Commit

Permalink
Merge pull request #7 from brandonfcohen1/fix-query
Browse files Browse the repository at this point in the history
fix pixel value
  • Loading branch information
brandonfcohen1 authored Nov 25, 2024
2 parents 4123056 + 94329c9 commit 4295c65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LeafletMap/LeafletMap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const HandleClick = () => {
}
const pixelValue: number = featureCollection.features.filter(
(p: GeoJsonProperties) => p?.layerId === 3
)[0]?.properties["Pixel Value"];
)[0]?.properties["Service Pixel Value"];
if (!pixelValue) {
setSnowDepth("No Data");
return;
Expand Down

0 comments on commit 4295c65

Please sign in to comment.