From e967786b87a414868e393bc1c291210b2ec1b918 Mon Sep 17 00:00:00 2001 From: ztychr <33706390+ztychr@users.noreply.github.com> Date: Thu, 20 Mar 2025 20:50:35 +0100 Subject: Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d617bf9..4230100 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ You are very welcome to create a pull request with images of artwork I have not # Contribution To add your submission to the project, follow the following procedure. -1. Add your image to static/images/. Please prioritise landscape oriented photos. +1. Add your image to static/images/. The list is alphabetically sorted, so find the suitable place. Please prioritise landscape oriented photos. - The naming of the image should be the quote in lower case with dashes instead of spaces. If the quote is long, it can be truncated with three dots. E.g. `very-long-quote-must....jpg` - Do you best to exclude the faces of bypassers when taking the photo. 3. Enter the data for the new image in `static/js/data.json`. -- cgit v1.3.1 From fad408bf8e936db3d39bd90af79a5df14541f62b Mon Sep 17 00:00:00 2001 From: ztychr <33706390+ztychr@users.noreply.github.com> Date: Thu, 20 Mar 2025 20:51:44 +0100 Subject: Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4230100..11437ce 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,11 @@ You are very welcome to create a pull request with images of artwork I have not # Contribution To add your submission to the project, follow the following procedure. -1. Add your image to static/images/. The list is alphabetically sorted, so find the suitable place. Please prioritise landscape oriented photos. +1. Add your image to static/images/. Please prioritise landscape oriented photos. - The naming of the image should be the quote in lower case with dashes instead of spaces. If the quote is long, it can be truncated with three dots. E.g. `very-long-quote-must....jpg` - Do you best to exclude the faces of bypassers when taking the photo. 3. Enter the data for the new image in `static/js/data.json`. + - The list is alphabetically sorted, so find the suitable place. - **lat/lng** - You may use `generate-image-entry.py` to generate the boilerplate JSON and extract the `lat`/`lng` from the image (please verify them). The usage is `python generate-image-entry.py static/images/.jpg` and the script requires the python [`exif`](https://pypi.org/project/exif/) package. If GPS information is not included in the exif data, you can enter the coordinates manually. - **name** -- cgit v1.3.1 From 0cac694accac2ec67338e6845131bb87597d1c99 Mon Sep 17 00:00:00 2001 From: Johannes Nordskov Date: Thu, 20 Mar 2025 20:56:56 +0100 Subject: added two more entries --- static/images/birdsfmk-spyo-non-serviam.jpg | Bin 0 -> 4553218 bytes static/images/jydereservat.jpg | Bin 0 -> 3595723 bytes static/js/data.json | 18 ++++++++++++++++++ 3 files changed, 18 insertions(+) create mode 100644 static/images/birdsfmk-spyo-non-serviam.jpg create mode 100644 static/images/jydereservat.jpg diff --git a/static/images/birdsfmk-spyo-non-serviam.jpg b/static/images/birdsfmk-spyo-non-serviam.jpg new file mode 100644 index 0000000..ec46c62 Binary files /dev/null and b/static/images/birdsfmk-spyo-non-serviam.jpg differ diff --git a/static/images/jydereservat.jpg b/static/images/jydereservat.jpg new file mode 100644 index 0000000..9cb597f Binary files /dev/null and b/static/images/jydereservat.jpg differ diff --git a/static/js/data.json b/static/js/data.json index 04c9b53..43c94dc 100644 --- a/static/js/data.json +++ b/static/js/data.json @@ -20,6 +20,15 @@ "authors": ["SPYO"], "image": "./static/images/artistic-integrity-you-are....jpg" }, + { + "lat": 55.654025, + "lng": 12.535908, + "name": "BIRDSFMK SPYO NON SERVIAM", + "authors": [ + "SPYO" + ], + "image": "./static/images/birdsfmk-spyo-non-serviam.jpg" + }, { "lat": 55.657492, "lng": 12.556389, @@ -90,6 +99,15 @@ "authors": ["SPYO"], "image": "./static/images/hovedloest-overforbrug.jpg" }, + { + "lat": 55.692183, + "lng": 12.556647, + "name": "JYDERESERVAT", + "authors": [ + "SPYO" + ], + "image": "./static/images/jydereservat.jpg" + }, { "lat": 55.667409, "lng": 12.539276, -- cgit v1.3.1