diff --git a/data/gallery/DSC05538.jpg b/data/gallery/DSC05538.jpg
new file mode 100644
index 0000000..dc29d21
--- /dev/null
+++ b/data/gallery/DSC05538.jpg
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2c29356f902f9bc743947a7598e4f0595ef12543fa4277d2f516ba974359fd15
+size 5090104
diff --git a/data/gallery/DSC05702.jpg b/data/gallery/DSC05702.jpg
new file mode 100644
index 0000000..8d1ba05
--- /dev/null
+++ b/data/gallery/DSC05702.jpg
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5e1f4a36fada98c77afdbeff0452e679ddfc5c371d8d404e7af2b948e2bf8aeb
+size 4046850
diff --git a/data/gallery/DSC06201.jpg b/data/gallery/DSC06201.jpg
index efe8090..2d8d8d0 100644
--- a/data/gallery/DSC06201.jpg
+++ b/data/gallery/DSC06201.jpg
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:7ebe30b6c41c7a3491e5d5ec240514b9bf173fc2bafe7457a6abc193b3f8d91d
-size 3637262
+oid sha256:043e0bd541425841596281c1572007c75173be946fff0e1778eb3dbab6178324
+size 2508541
diff --git a/gatsby-node.ts b/gatsby-node.ts
index 277d547..afda796 100644
--- a/gatsby-node.ts
+++ b/gatsby-node.ts
@@ -147,6 +147,7 @@ function transformMetaToNodeData(
Caption: metaData.Caption,
City: metaData.City,
State: metaData.State,
+ Location: metaData.Location,
Rating: metaData.Rating,
Keywords,
},
diff --git a/src/components/GalleryImage/GalleryImage.js b/src/components/GalleryImage/GalleryImage.js
index 98f266a..dca762d 100644
--- a/src/components/GalleryImage/GalleryImage.js
+++ b/src/components/GalleryImage/GalleryImage.js
@@ -370,7 +370,7 @@ export const query = graphql`
LensModel
ObjectName
Caption
- # Location
+ Location
City
State
}
diff --git a/src/components/KeywordsPicker.tsx b/src/components/KeywordsPicker.tsx
index 6ae3747..609131a 100644
--- a/src/components/KeywordsPicker.tsx
+++ b/src/components/KeywordsPicker.tsx
@@ -31,13 +31,13 @@ const KeywordsPicker = ({ keywords, value, onChange }: KeywordsPickerProps) => {
type="button"
>
{keyword}{" "}
- {selected && (
+ {/* {selected && (
- )}
+ )} */}
);
diff --git a/src/gatsby-types.d.ts b/src/gatsby-types.d.ts
index 54c78f1..976b775 100644
--- a/src/gatsby-types.d.ts
+++ b/src/gatsby-types.d.ts
@@ -614,6 +614,7 @@ type FileFieldsImageMetaMeta = {
readonly ISO: Maybe;
readonly Keywords: Maybe>>;
readonly LensModel: Maybe;
+ readonly Location: Maybe;
readonly Make: Maybe;
readonly Model: Maybe;
readonly ObjectName: Maybe;
@@ -650,6 +651,7 @@ type FileFieldsImageMetaMetaFieldSelector = {
readonly ISO: InputMaybe;
readonly Keywords: InputMaybe;
readonly LensModel: InputMaybe;
+ readonly Location: InputMaybe;
readonly Make: InputMaybe;
readonly Model: InputMaybe;
readonly ObjectName: InputMaybe;
@@ -670,6 +672,7 @@ type FileFieldsImageMetaMetaFilterInput = {
readonly ISO: InputMaybe;
readonly Keywords: InputMaybe;
readonly LensModel: InputMaybe;
+ readonly Location: InputMaybe;
readonly Make: InputMaybe;
readonly Model: InputMaybe;
readonly ObjectName: InputMaybe;
@@ -690,6 +693,7 @@ type FileFieldsImageMetaMetaSortInput = {
readonly ISO: InputMaybe;
readonly Keywords: InputMaybe;
readonly LensModel: InputMaybe;
+ readonly Location: InputMaybe;
readonly Make: InputMaybe;
readonly Model: InputMaybe;
readonly ObjectName: InputMaybe;
@@ -2541,7 +2545,7 @@ type GalleryImageQueryVariables = Exact<{
}>;
-type GalleryImageQuery = { readonly file: { readonly base: string, readonly publicURL: string | null, readonly childImageSharp: { readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData, readonly fluid: { readonly aspectRatio: number } | null } | null, readonly fields: { readonly imageMeta: { readonly dateTaken: string | null, readonly meta: { readonly Make: string | null, readonly Model: string | null, readonly ExposureTime: number | null, readonly FNumber: number | null, readonly ISO: number | null, readonly DateTimeOriginal: string | null, readonly CreateDate: string | null, readonly ShutterSpeedValue: number | null, readonly ApertureValue: number | null, readonly FocalLength: number | null, readonly LensModel: string | null, readonly ObjectName: string | null, readonly Caption: string | null, readonly City: string | null, readonly State: string | null } | null, readonly vibrant: { readonly DarkMuted: ReadonlyArray | null, readonly DarkVibrant: ReadonlyArray | null, readonly LightMuted: ReadonlyArray | null, readonly LightVibrant: ReadonlyArray | null, readonly Vibrant: ReadonlyArray | null, readonly Muted: ReadonlyArray | null } | null } | null } | null } | null };
+type GalleryImageQuery = { readonly file: { readonly base: string, readonly publicURL: string | null, readonly childImageSharp: { readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData, readonly fluid: { readonly aspectRatio: number } | null } | null, readonly fields: { readonly imageMeta: { readonly dateTaken: string | null, readonly meta: { readonly Make: string | null, readonly Model: string | null, readonly ExposureTime: number | null, readonly FNumber: number | null, readonly ISO: number | null, readonly DateTimeOriginal: string | null, readonly CreateDate: string | null, readonly ShutterSpeedValue: number | null, readonly ApertureValue: number | null, readonly FocalLength: number | null, readonly LensModel: string | null, readonly ObjectName: string | null, readonly Caption: string | null, readonly Location: string | null, readonly City: string | null, readonly State: string | null } | null, readonly vibrant: { readonly DarkMuted: ReadonlyArray | null, readonly DarkVibrant: ReadonlyArray | null, readonly LightMuted: ReadonlyArray | null, readonly LightVibrant: ReadonlyArray | null, readonly Vibrant: ReadonlyArray | null, readonly Muted: ReadonlyArray | null } | null } | null } | null } | null };
type GalleryPageQueryQueryVariables = Exact<{ [key: string]: never; }>;
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 5b882d6..5f48122 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -118,7 +118,12 @@ export const query = graphql`
allFile(
filter: {
sourceInstanceName: { eq: "gallery" }
- base: { in: ["DSC02610-2.jpg", "DSC02615-2.jpg"] }
+ base: { in: [
+ # "DSC02610-2.jpg",
+ "DSC05702.jpg",
+ # "DSC02615-2.jpg"
+ "DSC05538.jpg"
+ ] }
}
sort: { base: ASC }
) {
diff --git a/src/pages/photogallery.tsx b/src/pages/photogallery.tsx
index e6f750d..7c1b32f 100644
--- a/src/pages/photogallery.tsx
+++ b/src/pages/photogallery.tsx
@@ -200,6 +200,7 @@ const GalleryPage = ({ data }: PageProps) => {
"panoramic",
"Portland Japanese Garden",
"shoot the light",
+ "winter"
// "sunset",
]}
onChange={setKeyword}