Add beach blues pics and hard code 1/30 exposure

This commit is contained in:
Chuck Dries 2022-07-03 03:25:13 -07:00
parent 6da82c69a6
commit 5c9696788d
No known key found for this signature in database
GPG Key ID: A00B7AEAE1DC5BE6
6 changed files with 16 additions and 1 deletions

BIN
data/gallery/DSC00345.jpg (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/gallery/DSC00364.jpg (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/gallery/DSC00373.jpg (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/gallery/DSC00394.jpg (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -9,7 +9,7 @@
], ],
"scripts": { "scripts": {
"develop": "gatsby develop", "develop": "gatsby develop",
"start": "cross-env NODE_OPTIONS=--no-experimental-fetch gatsby develop", "start": "gatsby develop",
"build": "gatsby build", "build": "gatsby build",
"serve": "gatsby serve", "serve": "gatsby serve",
"clean": "gatsby clean", "clean": "gatsby clean",

View File

@ -49,6 +49,9 @@ const gcd = (a, b) => {
}; };
export const getShutterFractionFromExposureTime = (exposureTime) => { export const getShutterFractionFromExposureTime = (exposureTime) => {
if (exposureTime === 0.03333333333333333) {
return "1/30";
}
if (exposureTime === 0.016666666666666666) { if (exposureTime === 0.016666666666666666) {
return "1/60"; return "1/60";
} }