-
Notifications
You must be signed in to change notification settings - Fork 0
/
images.json
6799 lines (6799 loc) · 262 KB
/
images.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"albums": {
"fog": {
"title": "Ethereal fog",
"cover": "albums\/foggy-trees-slovenia.jpg",
"description": "Fog is one of my favourite subjects, it portrays mood and creates separation. It conveys mystery with an eerie atmosphere, but combined with light, opposing emotions are experienced, elation, harmony and wonder prevail."
},
"weather": {
"title": "Ferocious weather",
"cover": "albums\/karawanken-foggy-sunset.jpg",
"description": "Weather is a key element in my photography, often times bad weather is the secret ingredient for impactful images. In the right environment, the weather can elevate a scene to untold levels of beauty. Storms, fog, snow, rain, ice, extreme heat & wind all have their own unique characteristics that can transform a photograph."
},
"winter": {
"title": "Winter Dreams",
"cover": "albums\/dobratsch-winter-sunset.jpg",
"description": "Winter is my favourite season, at least when there is an abundance of snow. I'm not particularly well trained or equipped for it but I try not to let that get in my way. I love the simplicity, the softness, the shapes and patterns and not to mention it's the easiest time of the year to get up early since the days are so much shorter!"
},
"villages": {
"title": "Enchanting villages",
"cover": "albums\/sorg-pastel-fog-sunrise.jpg",
"description": "I adore the charm of an old medieval village, the cobbled streets, wonky buildings and romantic views. Coupled with a remote location and the right weather and light, it's a recipe for a great photograph to inspire wonder and adventure."
},
"castles": {
"title": "Magnificent Castles",
"cover": "albums\/liebenfels-castle-sunset.jpg",
"description": "Castles and mountains, what's not to love? I relish in exploring the landscape looking for unique angles and perspectives to capture the majesty of these imposing structures. I often have plans for shots that may not come to fruition for years, until the correct conditions present themselves."
},
"architecture": {
"cover": "albums\/kazakhstan-graveyard.jpg",
"title": "World Architecture",
"description": "Architecture is a subject that strikes and inspires me, its very essence is a reflection of culture and history and imagination. It can be daring, political, functional, useless, bold and beautiful. Through architecture we can learn and begin to understand a place and its people."
},
"autumn": {
"cover": "albums\/kalkalpen-sunset.jpg",
"title": "Autumnal tones",
"description": "Autumn is the season of transitions, especially in the mountains. The monotony of summer explodes into a thousand shades of colour. The rains and fog bring interesting elements to the landscape and as the sun rises and sets, it too paints the sky with a myriad of colours."
},
"churches": {
"cover": "albums\/stein-sunrise.jpg",
"title": "Churches & Landscapes",
"description": "Churches are a common theme in my photography. The stubbornness and determination of the people who sought to construct them, oftentimes in the most remote and inhospitable environments is fascinating and inspiring. They complement the landscape and embody a deep connection to it."
},
"abstract": {
"cover": "albums\/dobratsch-abstract.jpg",
"title": "Abstract Landscapes",
"description": "Abstract landscapes are a way for me to see the landscape through a different perspective and encourage creativity. In that sense abstract means to me isolating elements such as colour, light, lines and textures and focusing on details that may otherwise go unnoticed. Minimalism and negative space often take the forefront."
},
"pink": {
"disabled": true
}
},
"countries": {
"kyrgyzstan": {
"cover": "albums\/skazka-canyon-issyk-kul-sunset.jpg",
"title": "Kyrgyzstan",
"description": "A country I longed to visit for many years, Kyrgyzstan is a place of raw wonder. With diverse and barely discovered landscapes, it's a place of extremes and it requires rigor and determination to explore, but the rewards are bountiful. I hope to return again soon."
},
"turkey": {
"cover": "albums\/turkey.jpg",
"title": "Turkey",
"description": "Known for its sprawling sandy beaches, Turkey packs a punch. It's all mountains, from north to south, east to west. Ancient historical sites, bustling cities, alpine lakes, dizzying canyons, volcanic moonscapes and of course, sprawling sandy beaches and glimmering turquoise waters."
},
"georgia": {
"cover": "albums\/georgia.jpg",
"title": "Georgia",
"description": "Situated in the middle of the Caucasus mountains, Georgia is a fascinating and striking country steeped in history and endowed with landscapes to rival any other. Just about everything is interesting: Its past, politics, landscapes, food, wine, architecture, roads and more. I lived in Georgia for over 6 months and saw as much of the country as humanly possible."
},
"austria": {
"cover": "albums\/austria.jpg",
"title": "Austria",
"description": "The country I call home. Towering mountains, idyllic alpine lakes and charming traditional villages. Exquisite landscapes in all seasons, it's a photographer's dream. My list of subjects to photograph never seems to dwindle, it only grows as I further explore."
},
"spain": {
"cover": "albums\/spain.jpg",
"title": "Spain",
"description": "A country of stark contrasts, snow-capped peaks to rival the Alps, arid deserts, incredible ancient Islamic and Roman architecture, dormant volcanoes, death-defying hikes and some of the most stunning medieval villages on the planet."
},
"uzbekistan": {
"cover": "albums\/uzbekistan.jpg",
"title": "Uzbekistan",
"description": "A place I knew nothing of until I began planning an epic overlanding trip to Kyrgyzstan. I instantly knew it was going to be a highlight. The ancient Silk Road cities of Samarkand, Bukhara and Khiva are a photographer's dream. Then there's Tashkent with exemplary Soviet architecture including the once forbidden to photograph metro. Don't forget the landscapes: steppes, deserts and 4000M+ mountains."
},
"italy": {
"cover": "albums\/italy.jpg",
"title": "Italy",
"description": "I can't resist medieval mountain villages with cobbled streets, which Italy has in abundance. I've been to Italy many times and I'm always amazed at the diversity of the landscapes and the architecture. Never mind how many photographers have scoured the lands there is always a new and original perspective to be found."
},
"slovenia": {
"cover": "albums\/slovenia.jpg",
"title": "Slovenia",
"description": "Triglav National Park is a paradise, razor-sharp peaks and milky turquoise rivers snaking through the numerous valleys. But that's just for starters; Slovenia boasts a charming mediterranean coastline, rolling hills, vineyards and impossible castles. Which leaves my favourite: incredibly positioned mountain top churches, surrounded by fog in the early mornings."
},
"kazakhstan": {
"cover": "albums\/kazakhstan.jpg",
"title": "Kazakhstan",
"description": "A country that was never really on my radar, but having driven through it, that’s all changed. It’s got huge mountains: the Tian Shan and Altai. It’s got the Caspian and Aral sea, it’s got steppes, deserts, canyons, bizarre rock formations, and not to mention the underground rock mosques."
},
"romania": {
"cover": "albums\/romania.jpg",
"title": "Romania",
"description": "Full of medieval European charm, Romania's landscapes transition from soaring peaks to gentle pre-alpine hills nestled with pretty villages and castles, to the flat plains and the Danube delta. There's something in every corner."
},
"morocco": {
"cover": "albums\/morocco.jpg",
"title": "Morocco",
"description": "Home to the magnificent Sahara desert and all the customs and traditions beholden to it. There's more: the lush green Riff mountains, the stunning blue medieval city of Chefchaouen, The first university in the world, the impressive coastline and a whole host of other undiscovered locations."
}
},
"images": [
{
"src": "tree-lined-road-fog-carinthia.jpg",
"name": "tree-lined-road-fog-carinthia",
"title": "Tree lined road smothered in fog, Carinthia, Austria",
"description": "",
"ratio": "2 \/ 3",
"orientation": "portrait",
"disabled": false,
"albums": [
"fog",
"austria"
],
"exif": {
"Aperture": "f\/11.0",
"Exposure": "1\/13",
"ISO": 100,
"Focal Length": "174 mm",
"Date Taken": "Dec 28, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "23,215,9,13,0,8,137,132,137,103,136,151,119,118,136,119,248,122,153,159,151"
},
{
"src": "pastel-sunrise-fog-church-karawanken.jpg",
"name": "pastel-sunrise-fog-church-karawanken",
"title": "Tainach church, Karawanken, Austria",
"description": "Church of Tainach near V\u00f6lkermarkt at sunrise with thick fog covering the river Drau, Carinthia, Austria.",
"ratio": "375 \/ 211",
"orientation": "landscape",
"disabled": false,
"albums": [
"fog",
"churches",
"weather",
"pink",
"austria"
],
"exif": {
"Aperture": "f\/8.0",
"Exposure": "1\/80",
"ISO": 100,
"Focal Length": "237 mm",
"Date Taken": "Feb 20, 2021",
"Model": "SONY, ILCE-7RM3"
},
"hash": "167,23,2,20,130,54,103,119,111,121,119,141,135,146,118,143,107,246,168"
},
{
"src": "hot-air-balloon-sunrise.jpg",
"name": "hot-air-balloon-sunrise",
"title": "Hot air balloon, Cappadocia, Turkey",
"description": "A single hot air balloon bathed in golden morning light.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"weather",
"abstract",
"turkey"
],
"exif": {
"Aperture": "f\/8.0",
"Exposure": "1\/50",
"ISO": 200,
"Focal Length": "275 mm",
"Date Taken": "Jul 31, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "120,57,10,61,138,134,104,136,143,120,120,117,134,136,119,135,120,112,153,7,167"
},
{
"src": "lamaria-church.jpg",
"name": "lamaria-church",
"title": "Lamaria church of Ushguli, Georgia",
"description": "Lamaria church of Ushguli flanked by the snow covered Shkhara mountain situated in the mighty Caucasus, Georgia.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"churches",
"architecture",
"georgia"
],
"exif": {
"Aperture": "f\/7.1",
"Exposure": "65\/10",
"ISO": 200,
"Focal Length": "52.7 mm",
"Date Taken": "Jun 23, 2019",
"Model": "FUJIFILM, X-T20"
},
"hash": "158,231,21,21,128,102,119,120,143,135,119,151,136,104,135,119,123,112,235,208,217"
},
{
"src": "above-johnsbach-sun-fog.jpg",
"name": "above-johnsbach-sun-fog",
"title": "Mountain ridge trail, Johnsbach",
"description": "Winding trail through foggy forests during autumn on a mountain ridge above Johnsbach, Ges\u00e4use National Park, Styria, Austria.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"fog",
"austria"
],
"exif": {
"Aperture": "f\/7.1",
"Exposure": "1\/125",
"ISO": 160,
"Focal Length": "16 mm",
"Date Taken": "Oct 14, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "19,25,18,29,130,10,150,120,124,132,136,122,151,119,135,120,108,96,201,3,150"
},
{
"src": "koruldi-lakes-light-storm.jpg",
"name": "koruldi-lakes-light-storm",
"title": "Storm at Koruldi Lakes, Svaneti, Georgia",
"description": "Rain and sun in the menacing peaks of the Caucasus from Koruldi Lakes, Svaneti, Georgia.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"weather",
"georgia"
],
"exif": {
"Aperture": "f\/7.1",
"Exposure": "1\/100",
"ISO": 200,
"Focal Length": "42.5 mm",
"Date Taken": "Jun 17, 2019",
"Model": "FUJIFILM, X-T20"
},
"hash": "91,8,22,13,132,87,119,120,143,135,135,136,136,120,136,120,118,111,121,247,119"
},
{
"src": "first-snow-vienna.jpg",
"name": "first-snow-vienna",
"title": "The first snow, Leopoldsberg, Vienna, Austria",
"description": "",
"ratio": "2 \/ 3",
"orientation": "portrait",
"disabled": false,
"albums": [
"winter",
"churches",
"austria"
],
"exif": {
"Aperture": "f\/6.3",
"Exposure": "1\/80",
"ISO": 160,
"Focal Length": "83 mm",
"Date Taken": "Nov 19, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "165,248,9,37,2,103,103,125,136,248,120,167,119,120,136,137,122,129,128,149,8"
},
{
"src": "fog-waterfall-ennstaler-hutte.jpg",
"name": "fog-waterfall-ennstaler-hutte",
"title": "A waterfall of fog, Ennstalerh\u00fctte, Austria",
"description": "",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"fog",
"austria"
],
"exif": {
"Aperture": "f\/8.0",
"Exposure": "1\/160",
"ISO": 160,
"Focal Length": "285 mm",
"Date Taken": "Oct 16, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "36,8,22,13,130,119,119,120,143,120,119,107,135,40,136,120,170,139,175,186,248"
},
{
"src": "aegean-coast-turkey.jpg",
"name": "aegean-coast-turkey",
"title": "Turkish Aegean coast",
"description": "A tiny secluded beach with turquoise waters illuminated by the early morning sun, Aegean ocean, Fethiye, Turkey.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"turkey"
],
"exif": {
"Aperture": "f\/7.1",
"Exposure": "1\/200",
"ISO": 200,
"Focal Length": "148 mm",
"Date Taken": "Jul 27, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "148,231,5,21,130,127,120,119,104,137,120,119,119,151,136,136,138,128,223,41,247"
},
{
"src": "sheep-lienzer-dolomites.jpg",
"name": "sheep-lienzer-dolomites",
"title": "Peekaboo Sheep",
"description": "A sheep peeking above the grass in candid shot with pointy mountain peaks in the background, Lienz dolomites, Austria.",
"ratio": "2 \/ 3",
"orientation": "portrait",
"disabled": false,
"albums": [
"austria"
],
"exif": {
"Aperture": "f\/4.0",
"Exposure": "1\/90",
"ISO": 200,
"Focal Length": "57.8 mm",
"Date Taken": "Aug 3, 2020",
"Model": "FUJIFILM, X-T20"
},
"hash": "219,249,17,45,2,119,120,127,136,216,136,135,136,137,120,136,120,112,87,247,231"
},
{
"src": "red-valley-arch-sunset.jpg",
"name": "red-valley-arch-sunset",
"title": "Sunset over Cappadocia from Rose Valley, Turkey",
"description": "Burning orange sunset over Rose and Red valley along a hiking trail, Cappadocia, Turkey.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"turkey"
],
"exif": {
"Aperture": "f\/10.0",
"Exposure": "1\/80",
"ISO": 160,
"Focal Length": "16 mm",
"Date Taken": "Aug 4, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "16,89,10,13,130,5,122,121,93,149,135,132,137,9,169,163,111,3,242,93,150"
},
{
"src": "lake-tuz-mirror-sunset.jpg",
"name": "lake-tuz-mirror-sunset",
"title": "Tuz G\u00f6l\u00fc (Lake Tuz), Turkey",
"description": "A Ginormous salt lake reflecting like a mirror in Turkey at sunset.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"pink",
"turkey"
],
"exif": {
"Aperture": "f\/5.0",
"Exposure": "1\/250",
"ISO": 160,
"Focal Length": "16 mm",
"Date Taken": "Aug 2, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "169,88,14,21,132,122,119,120,143,119,135,119,136,151,135,120,78,157,160,182,7"
},
{
"src": "uchisar-sunrise.jpg",
"name": "uchisar-sunrise",
"title": "U\u00e7hisar in early morning light, Cappadocia, Turkey",
"description": "A perfect fairytale like moment, caught on the way home, unexpectedly from the side of the road.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"villages",
"architecture",
"turkey"
],
"exif": {
"Aperture": "f\/8.0",
"Exposure": "1\/160",
"ISO": 160,
"Focal Length": "70 mm",
"Date Taken": "Aug 5, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "227,40,26,21,132,135,119,119,127,119,135,136,120,136,136,119,125,106,176,153,8"
},
{
"src": "patara-sunset.jpg",
"name": "patara-sunset",
"title": "Burning sunset over the mountains of Patara beach, Turkey",
"description": "",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"weather",
"turkey"
],
"exif": {
"Aperture": "f\/7.1",
"Exposure": "1\/125",
"ISO": 200,
"Focal Length": "300 mm",
"Date Taken": "Jul 13, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "216,104,14,77,144,103,120,119,127,135,119,137,119,120,136,135,119,127,122,247,135"
},
{
"src": "red-valley-sunset.jpg",
"name": "red-valley-sunset",
"title": "Sunset in U\u00e7hisar, Cappadocia, Turkey",
"description": "Golden light over natural rock weathered fairy chimneys and living quarters.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"exif": {
"Aperture": "f\/5.6",
"Exposure": "1\/125",
"ISO": 200,
"Focal Length": "50 mm",
"Date Taken": "Jul 31, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "28,73,26,21,132,104,136,119,127,119,136,123,136,151,135,135,72,123,128,101,7",
"albums": ["turkey"]
},
{
"src": "neusiedlersee-sunset.jpg",
"name": "neusiedlersee-sunset",
"title": "Neusiedlersee, Burgenland, Austria",
"description": "Magical soothing pastel sunset at lake Neusiedlersee.",
"ratio": "2 \/ 3",
"orientation": "portrait",
"disabled": false,
"albums": [
"abstract", "austria"
],
"exif": {
"Aperture": "f\/5.6",
"Exposure": "1\/100",
"ISO": 200,
"Focal Length": "90 mm",
"Date Taken": "Mar 27, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "232,23,10,21,4,134,135,127,119,167,120,168,136,121,135,120,118,143,113,247,8"
},
{
"src": "colle-di-val-delsa.jpg",
"name": "colle-di-val-delsa",
"title": "Colle di Val d'Elsa",
"description": "Romantic twisting side street in Colle di Val d'Elsa, Tuscany, Italy during blue hour.",
"ratio": "2 \/ 3",
"orientation": "portrait",
"disabled": false,
"albums": [
"villages", "italy"
],
"exif": {
"Aperture": "f\/10.0",
"Exposure": "4\/1",
"ISO": 200,
"Focal Length": "150 mm",
"Date Taken": "Apr 13, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "204,56,2,29,4,22,127,163,170,135,101,39,121,92,150,150,102,160,100,6,74"
},
{
"src": "rainy-forest.jpg",
"name": "rainy-forest",
"title": "Spring rain in the forests of Carinthia, Austria",
"description": "",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"weather", "austria"
],
"exif": {
"Aperture": "f\/5.6",
"Exposure": "1\/400",
"ISO": 200,
"Focal Length": "136 mm",
"Date Taken": "May 1, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "26,248,17,13,128,120,120,136,143,135,120,137,120,151,136,120,73,96,116,245,104"
},
{
"src": "san-gimignano-sunset.jpg",
"name": "san-gimignano-sunset",
"title": "San Simignano, Tuscany, Italy",
"description": "The famous medieval town of San Gimignano drenched in golden light.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"villages", "italy"
],
"exif": {
"Aperture": "f\/8.0",
"Exposure": "1\/125",
"ISO": 160,
"Focal Length": "206 mm",
"Date Taken": "Apr 11, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "160,57,22,21,130,117,135,119,127,119,136,138,135,151,120,136,119,165,96,118,12"
},
{
"src": "stein-window.jpg",
"name": "stein-window",
"title": "Stein, Krems, Austria",
"description": "Medieval old town of Stein, Krems through an apartment window.",
"ratio": "2 \/ 3",
"orientation": "portrait",
"disabled": false,
"albums": [
"villages", "austria"
],
"exif": {
"Aperture": "f\/13.0",
"Exposure": "20\/1",
"ISO": 200,
"Focal Length": "74 mm",
"Date Taken": "Mar 12, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "105,40,14,45,6,247,183,134,120,215,87,151,119,138,134,168,169,144,152,8,105"
},
{
"src": "dachstein-above-fog.jpg",
"name": "dachstein-above-fog",
"title": "Dachstein above the fog, Austria",
"description": "Dachstein mountain range standing tall through the thick summer fog just before sunrise, Schladming, Styria, Austria.",
"ratio": "375 \/ 211",
"orientation": "landscape",
"disabled": false,
"albums": [
"fog", "austria"
],
"exif": {
"Aperture": "f\/7.1",
"Exposure": "13\/10",
"ISO": 100,
"Focal Length": "103 mm",
"Date Taken": "Sep 19, 2021",
"Model": "SONY, ILCE-7RM3"
},
"hash": "155,214,5,20,132,155,136,153,152,120,136,111,119,104,86,128,99,5,56"
},
{
"src": "layered-pastel-mountains-turkey.jpg",
"name": "layered-pastel-mountains-turkey",
"title": "Layered pastel mountain sunrise in Turkey",
"description": "",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"pink", "turkey"
],
"exif": {
"Aperture": "f\/11.0",
"Exposure": "1\/6",
"ISO": 200,
"Focal Length": "200 mm",
"Date Taken": "Oct 5, 2018",
"Model": "FUJIFILM, X-T20"
},
"hash": "227,214,13,61,142,120,120,120,127,120,119,120,120,135,120,119,120,127,136,247,119"
},
{
"src": "tatschnigteich-fog-trees-snow.jpg",
"name": "tatschnigteich-fog-trees-snow",
"title": "A trail through the lonely trees, Carinthia, Austria",
"description": "A trail trough two bare lonely trees with thick fog and snow covered landscape in an eerie scene near Waggendorf.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": ["fog", "winter", "austria"],
"exif": {
"Aperture": "f\/9.0",
"Exposure": "1\/160",
"ISO": 100,
"Focal Length": "70 mm",
"Date Taken": "Jan 22, 2021",
"Model": "SONY, ILCE-7RM3"
},
"hash": "238,214,5,13,128,251,133,104,102,135,120,127,132,103,136,120,191,83,255,41,245"
},
{
"src": "mount-erciyes-sunset.jpg",
"name": "mount-erciyes-sunset",
"title": "Mount Erciyes, Cappadocia, Turkey",
"description": "Mount Erciyes covered in snow and golden light towering over the fairy chimneys of Cappadocia at sunset, Turkey.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"exif": {
"Aperture": "f\/7.1",
"Exposure": "1\/13",
"ISO": 200,
"Focal Length": "104.9 mm",
"Date Taken": "Jan 6, 2018",
"Model": "FUJIFILM, X-T20"
},
"hash": "96,56,18,29,132,120,136,119,143,119,135,137,135,119,136,118,136,143,139,247,136",
"albums": ["turkey"]
},
{
"src": "znojmo.jpg",
"name": "znojmo",
"title": "Znojmo, Czechia",
"description": "Deep blue and purple sunset over the beautiful medieval town of Znojmo, Czechia.",
"ratio": "2 \/ 3",
"orientation": "portrait",
"disabled": false,
"albums": [
"villages", "czechia"
],
"exif": {
"Aperture": "f\/8.0",
"Exposure": "6\/10",
"ISO": 100,
"Focal Length": "79 mm",
"Date Taken": "Nov 6, 2021",
"Model": "SONY, ILCE-7RM3"
},
"hash": "149,23,14,53,8,135,120,143,120,152,119,120,136,134,119,151,120,128,148,7,55"
},
{
"src": "zell-pfarre-winter-pastel-sunset.jpg",
"name": "zell-pfarre-winter-pastel-sunset",
"title": "Winter in the Karawanken mountains, Austria",
"description": "Magical winter sunset framed with snowy trees on a hiking trail near Zell-pfarre, Carinthia, Austria.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"winter", "austria"
],
"exif": {
"Aperture": "f\/10.0",
"Exposure": "1\/8",
"ISO": 100,
"Focal Length": "16 mm",
"Date Taken": "Dec 27, 2020",
"Model": "SONY, ILCE-7RM3"
},
"hash": "233,7,10,5,128,100,136,136,165,135,136,143,117,87,134,152,147,175,50,243,184"
},
{
"src": "foggy-bled.jpg",
"name": "foggy-bled",
"title": "Lake Bled, Slovenia",
"description": "Moody winter morning at the lake.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"fog",
"winter",
"churches",
"slovenia"
],
"exif": {
"Aperture": "f\/8.0",
"Exposure": "1\/13",
"ISO": 100,
"Focal Length": "70 mm",
"Date Taken": "Feb 20, 2022",
"Model": "SONY, ILCE-7RM3"
},
"hash": "100,231,17,13,128,74,105,121,127,136,135,119,119,136,136,118,176,165,62,153,248"
},
{
"src": "schneeberg-sunset.jpg",
"name": "schneeberg-sunset",
"title": "Schneeberg and the Austrian Alps",
"description": "An extremely windy sunset from Schneeberg over the Austrian Alps.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"weather", "austria"
],
"exif": {
"Aperture": "f\/7.1",
"Exposure": "1\/250",
"ISO": 100,
"Focal Length": "132 mm",
"Date Taken": "Oct 30, 2021",
"Model": "SONY, ILCE-7RM3"
},
"hash": "95,41,22,21,130,120,120,119,143,135,136,120,135,135,120,120,138,111,211,199,5"
},
{
"src": "lazerzsee.jpg",
"name": "lazerzsee",
"title": "Lazerzsee lake, Austria",
"description": "Brilliant turquoise Lazerzsee lake framed with pink summer flowers, high in the Lienzer Dolomites (Gailtal Alps) alpine mountains, East Tyrol, Austria.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"exif": {
"Aperture": "f\/1.0",
"Exposure": "1\/100",
"ISO": 200,
"Focal Length": "21 mm",
"Date Taken": "Aug 3, 2020",
"Model": "FUJIFILM, X-T20"
},
"hash": "93,248,17,21,132,120,120,136,143,119,135,137,135,135,121,120,143,39,248,188,209",
"albums": ["austria"]
},
{
"src": "sunrise-schneeberg.jpg",
"name": "sunrise-schneeberg",
"title": "A magical sunrise from Lower Austria's highest peak, Schneeberg",
"description": "",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"exif": {
"Aperture": "f\/7.1",
"Exposure": "1\/2",
"ISO": 100,
"Focal Length": "16 mm",
"Date Taken": "Oct 31, 2021",
"Model": "SONY, ILCE-7RM3"
},
"hash": "221,72,18,21,132,134,136,120,111,136,119,124,119,119,136,133,152,128,186,10,171",
"albums": ["austria"]
},
{
"src": "zell-pfarre-winter-cabin-fog.jpg",
"name": "zell-pfarre-winter-cabin-fog",
"title": "Wooden cabin, Zell-pfarre, Carinthia, Austria",
"description": "In untouched snow and thick fog creating the illusion of a CGI scene.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": ["fog", "winter", "austria"],
"exif": {
"Aperture": "f\/2.8",
"Exposure": "1\/500",
"ISO": 100,
"Focal Length": "16 mm",
"Date Taken": "Jan 3, 2021",
"Model": "SONY, ILCE-7RM3"
},
"hash": "38,247,9,13,130,212,92,150,135,119,119,175,67,120,119,117,28,160,160,16,41"
},
{
"src": "mondsee-sunrise-3.jpg",
"name": "mondsee-sunrise-3",
"title": "Mondsee, Salzkammergut, Austria",
"description": "Autumnal sunrise over the mountains and peaks of Salzkammergut with a sea of fog sweeping through the valley.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": ["autumn", "weather", "austria"],
"exif": {
"Aperture": "f\/7.1",
"Exposure": "1\/125",
"ISO": 100,
"Focal Length": "79 mm",
"Date Taken": "Oct 24, 2021",
"Model": "SONY, ILCE-7RM3"
},
"hash": "157,24,18,13,130,117,119,119,175,134,120,136,136,151,117,121,159,122,252,107,133"
},
{
"src": "sorg-pastel-fog-sunrise.jpg",
"name": "sorg-pastel-fog-sunrise",
"title": "S\u00f6rg, Carinthia, Austria",
"description": "Beautiful alpine village of S\u00f6rg at sunrise, surrounded by thick fog catching the early warm light, Carinthia, Austria.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": ["fog", "villages", "austria"],
"exif": {
"Aperture": "f\/9.0",
"Exposure": "1\/20",
"ISO": 200,
"Focal Length": "81.9 mm",
"Date Taken": "Jan 1, 2021",
"Model": "FUJIFILM, X-T20"
},
"hash": "45,57,10,21,130,81,135,136,159,119,136,172,136,39,135,85,96,204,9,54,173"
},
{
"src": "hochrindl-winter-sunrise.jpg",
"name": "hochrindl-winter-sunrise",
"title": "Winter sunrise at Hochrindl, Carinthia, Austria",
"description": "Sunrise over the Karawanken mountains from Hochrindl with beautiful snow patterns carved from the wind.",
"ratio": "2 \/ 3",
"orientation": "portrait",
"disabled": false,
"albums": [
"winter", "austria"
],
"exif": {
"Aperture": "f\/4.5",
"Exposure": "1\/80",
"ISO": 100,
"Focal Length": "16 mm",
"Date Taken": "Feb 18, 2021",
"Model": "SONY, ILCE-7RM3"
},
"hash": "234,56,10,29,6,122,119,157,119,183,136,248,136,141,103,38,122,136,144,71,8"
},
{
"src": "volkermarkter-stausee.jpg",
"name": "volkermarkter-stausee",
"title": "Volkermarkt dam, Carinthia, Austria",
"description": "Volkermarkt dam at sunrise, perfectly still waters reflecting the snow capped Karawanken mountains.",
"ratio": "375 \/ 211",
"orientation": "landscape",
"disabled": false,
"exif": {
"Aperture": "f\/13.0",
"Exposure": "1\/1",
"ISO": 50,
"Focal Length": "29 mm",
"Date Taken": "Feb 15, 2021",
"Model": "SONY, ILCE-7RM3"
},
"hash": "226,230,13,12,130,96,120,119,127,135,119,136,120,139,144,73,0,216,7",
"albums": ["austria"]
},
{
"src": "dobratch-fog-cabin.jpg",
"name": "dobratch-fog-cabin",
"title": "Thick fog in Dobratsch Nature Park, Carinthia, Austria",
"description": "Creepy cabin in thick fog during a whiteout at blue hour in Dobratsch Nature Park near Villach.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"fog",
"winter", "austria"
],
"exif": {
"Aperture": "f\/4.0",
"Exposure": "1\/50",
"ISO": 100,
"Focal Length": "34 mm",
"Date Taken": "Dec 21, 2020",
"Model": "SONY, ILCE-7RM3"
},
"hash": "230,149,5,13,128,169,103,103,133,119,120,125,129,104,151,128,8,131,128,49,8"
},
{
"src": "llandudno-sunset.jpg",
"name": "llandudno-sunset",
"title": "LLandudno sunset, UK",
"description": "Warm sunset with glowing rocks and landscape over Llandudno from the Little Orme after a stormy day in Wales.",
"ratio": "2 \/ 3",
"orientation": "portrait",
"disabled": false,
"exif": {
"Aperture": "f\/10.0",
"Exposure": "6\/10",
"ISO": 100,
"Focal Length": "16 mm",
"Date Taken": "May 11, 2021",
"Model": "SONY, ILCE-7RM3"
},
"hash": "85,24,18,29,4,117,120,127,119,151,120,104,121,132,120,151,117,96,64,53,6",
"albums": ["uk"]
},
{
"src": "lake-salda-sunrise-landscape.jpg",
"name": "lake-salda-sunrise-landscape",
"title": "Lake Salda, Turkey",
"description": "Sunrise at lake Salda - known as the Turkish Maldives. Turquoise water with black and white sands.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"exif": {
"Aperture": "f\/16.0",
"Exposure": "20\/1",
"ISO": 200,
"Focal Length": "18 mm",
"Date Taken": "Oct 17, 2018",
"Model": "FUJIFILM, X-T20"
},
"hash": "178,231,13,21,132,103,120,119,159,135,151,119,136,135,135,120,101,159,56,246,154",
"albums": ["turkey"]
},
{
"src": "dobratsch-snow.jpg",
"name": "dobratsch-snow",
"title": "Windswept snowy landscape, Dobratsch, Austria",
"description": "Golden afternoon light over the magical winter landscape of Dobratsch Nature Park, Villach, Carinthia, Austria.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"winter", "austria"
],
"exif": {
"Aperture": "f\/10.0",
"Exposure": "1\/30",
"ISO": 100,
"Focal Length": "16 mm",
"Date Taken": "Dec 26, 2020",
"Model": "SONY, ILCE-7RM3"
},
"hash": "98,231,9,21,130,105,134,120,104,138,119,157,135,24,121,128,73,83,144,4,5"
},
{
"src": "weissensee-summer-early-morning.jpg",
"name": "weissensee-summer-early-morning",
"title": "Summer at Lake Weissensee, Carinthia, Austria",
"description": "Calm summer turquoise waters early in the morning at lake Weissensee.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"exif": {
"Aperture": "f\/1.0",
"Exposure": "1\/20",
"ISO": 200,
"Focal Length": "21 mm",
"Date Taken": "Aug 7, 2020",
"Model": "FUJIFILM, X-T20"
},
"hash": "160,215,13,21,130,66,104,120,127,135,119,150,103,152,119,152,79,149,240,114,59",
"albums": ["austria"]
},
{
"src": "magdalensberg-troadkasten-snow-sunrise.jpg",
"name": "magdalensberg-troadkasten-snow-sunrise",
"title": "Magdalensberg winter, Carinthia, Austria",
"description": "Magical winter sunrise over Magdalensberg with perfect untouched snow and thick fog covering Lower Carinthia with Karawanken mountains in the background, Austria.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"winter", "austria"
],
"exif": {
"Aperture": "f\/14.0",
"Exposure": "1\/13",
"ISO": 100,
"Focal Length": "17 mm",
"Date Taken": "Dec 29, 2020",
"Model": "SONY, ILCE-7RM3"
},
"hash": "104,247,9,21,130,166,123,118,111,134,120,155,100,88,152,101,87,123,96,164,7"
},
{
"src": "lake-stappitzer-sunrise.jpg",
"name": "lake-stappitzer-sunrise",
"title": "Lake Stappitzer, Carinthia, Austria",
"description": "Lake Stappitzer in Seebach valley at sunrise, summer explosion of colours.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"exif": {
"Aperture": "f\/1.0",
"Exposure": "8\/10",
"ISO": 200,
"Focal Length": "21 mm",
"Date Taken": "Aug 11, 2020",
"Model": "FUJIFILM, X-T20"
},
"hash": "79,24,10,21,132,7,152,136,110,147,136,126,133,198,103,135,136,160,137,241,183",
"albums": ["austria"]
},
{
"src": "skazka-canyon.jpg",
"name": "skazka-canyon",
"title": "Skazka canyon, Kygryzstan",
"description": "Skazka canyon in the blue hour. Otherwise known as fairy tale canyon.",
"ratio": "3 \/ 2",
"orientation": "landscape",
"disabled": false,
"albums": [
"kyrgyzstan"
],
"exif": {
"Aperture": "f\/7.1",