Skip to content

Commit

Permalink
Fix date format
Browse files Browse the repository at this point in the history
  • Loading branch information
hanbyul-here committed Dec 10, 2024
1 parent aa06bb3 commit bd07f04
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions datasets/tornadoes2024-dow.data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ layers:
layerId: tornadoes-2024-dow-rhohv-greenfield
mapLabel: |
::js ({ dateFns, datetime, compareDatetime }) => {
return `${dateFns.format(datetime, 'DD LLL yyyy')}`;
return `${dateFns.format(datetime, 'dd LLL yyyy')}`;
}
- id: tornadoes-2024-dow-rhohv-greenfield
Expand Down Expand Up @@ -171,7 +171,7 @@ layers:
layerId: tornadoes-2024-dow-vg-greenfield
mapLabel: |
::js ({ dateFns, datetime, compareDatetime }) => {
return `${dateFns.format(datetime, 'DD LLL yyyy')}`;
return `${dateFns.format(datetime, 'dd LLL yyyy')}`;
}
- id: tornadoes-2024-dow-sw-greenfield
Expand Down Expand Up @@ -277,7 +277,7 @@ layers:
layerId: tornadoes-2024-dow-v-harlan
mapLabel: |
::js ({ dateFns, datetime, compareDatetime }) => {
return `${dateFns.format(datetime, 'DD LLL yyyy')}`;
return `${dateFns.format(datetime, 'dd LLL yyyy')}`;
}
- id: tornadoes-2024-dow-v-harlan
Expand Down Expand Up @@ -317,7 +317,7 @@ layers:
layerId: tornadoes-2024-dow-refl-harlan
mapLabel: |
::js ({ dateFns, datetime, compareDatetime }) => {
return `${dateFns.format(datetime, 'DD LLL yyyy')}`;
return `${dateFns.format(datetime, 'dd LLL yyyy')}`;
}
- id: tornadoes-2024-dow-rhohv-harlan
Expand Down
2 changes: 1 addition & 1 deletion datasets/tornadoes2024-paths.data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ layers:
layerId: ps-tornadoes-2024-difference
mapLabel: |
::js ({ dateFns, datetime, compareDatetime }) => {
return `${dateFns.format(datetime, 'DD LLL yyyy')}`;
return `${dateFns.format(datetime, 'dd LLL yyyy')}`;
}
info:
source: National Weather Service (NWS)
Expand Down
6 changes: 3 additions & 3 deletions datasets/tornadoes2024-planet.data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ layers:
layerId: ps-greenfield-post-tornadoes-2024
mapLabel: |
::js ({ dateFns, datetime, compareDatetime }) => {
return `${dateFns.format(datetime, 'DD LLL yyyy')}`;
return `${dateFns.format(datetime, 'dd LLL yyyy')}`;
}
info:
source: Planet
Expand All @@ -89,7 +89,7 @@ layers:
layerId: ps-greenfield-pre-tornadoes-2024
mapLabel: |
::js ({ dateFns, datetime, compareDatetime }) => {
return `${dateFns.format(datetime, 'DD LLL yyyy')}`;
return `${dateFns.format(datetime, 'dd LLL yyyy')}`;
}
info:
source: Planet
Expand Down Expand Up @@ -153,7 +153,7 @@ layers:
layerId: tornadoes-2024-dow-vmax-greenfield
mapLabel: |
::js ({ dateFns, datetime, compareDatetime }) => {
return `${dateFns.format(datetime, 'DD LLL yyyy')}`;
return `${dateFns.format(datetime, 'dd LLL yyyy')}`;
}
info:
source: Planet
Expand Down

0 comments on commit bd07f04

Please sign in to comment.