Skip to content

Commit

Permalink
Merge pull request #132 from earthrise-media/sandier
Browse files Browse the repository at this point in the history
Use full sand data
  • Loading branch information
kelsey-taylor authored Jan 18, 2024
2 parents 08a7eae + cbdc8ff commit 6d19f8c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion vacs-map-app/src/components/MapContainerColorSand.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<template v-slot="{ map, mapReady }">
<RasterSource
:id="rasterSourceId"
tiles-url="https://plotine-vacs.s3.us-east-2.amazonaws.com/sand-tiles/{z}/{x}/{y}.png"
tiles-url="https://plotine-vacs.s3.us-east-2.amazonaws.com/full-sand-tiles/{z}/{x}/{y}.png"
:map="map"
:map-ready="mapReady"
/>
Expand Down
2 changes: 1 addition & 1 deletion vacs-map-app/src/components/MapContainerColorSandSoil.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/>
<RasterSource
:id="rasterSourceId2"
tiles-url="https://plotine-vacs.s3.us-east-2.amazonaws.com/sand-tiles/{z}/{x}/{y}.png"
tiles-url="https://plotine-vacs.s3.us-east-2.amazonaws.com/full-sand-tiles/{z}/{x}/{y}.png"
:map="map"
:map-ready="mapReady"
/>
Expand Down
2 changes: 1 addition & 1 deletion vacs-map-app/src/components/MapContainerExploreMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/>
<RasterSource
:id="rasterSourceId3"
tiles-url="https://plotine-vacs.s3.us-east-2.amazonaws.com/sand-tiles/{z}/{x}/{y}.png"
tiles-url="https://plotine-vacs.s3.us-east-2.amazonaws.com/full-sand-tiles/{z}/{x}/{y}.png"
:map="map"
:map-ready="mapReady"
/>
Expand Down
2 changes: 1 addition & 1 deletion vacs-map-app/src/utils/colors.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const selectedFill = '#5A7CB6'
// this is the color to use for the benchmark crop if not selected
export const referenceFill = '#F7B300'

export const noDataFill = '#586163'
export const noDataFill = '#616161'

// colorblind-friendly colors for use via toggle
export const colorblindDivergingScheme = {
Expand Down

0 comments on commit 6d19f8c

Please sign in to comment.