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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
|
<!DOCTYPE html>
<html class="black" dir="ltr" lang="en-US">
<head>
<title>Death Valley - Luxagraf, Photos</title>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="Neither a valley (it’s technically a basin), nor particularly deadly (only one person died to give it its name), but very beautiful and well worth a trip.">
<meta name="author" content="Scott Gilbertson">
<!--[if IE]>
<script src="/js/html5css3ie.min.js"></script>
<![endif]-->
<link rel="alternate"
type="application/rss+xml"
title="Luxagraf RSS feed"
href="https://luxagraf.net/rss/">
<link rel="stylesheet"
href="/media/screenv8.css"
media="screen">
<!--[if IE]>
<link rel="stylesheet"
href="/media/css/ie.css"
media="screen">
<![endif]-->
<link rel="manifest" href="manifest.json">
<meta property="fb:pages" content="900822029969349" />
<script src="/media/js/leaflet-master/leaflet-mod.js"></script>
<style>
#map-canvas img{ border: none;}
</style>
</head>
<body class="image_gallery">
<div class="wrapper">
<div class="header-wrapper">
<header role="banner">
<h1><a id="logo" href="/" title="home">Luxagraf</a></h1>
<h2>Walk Slowly</h2>
</header>
<nav role="navigation" class="bl">
<ul>
<li id="laverdad"><a href="/jrnl/" title="What we've been up to lately">Journal</a></li>
<li id="nota"><a href="/field-notes/" title="Quick notes and images from the road">Notes</a></li>
<li id="fotos"><a href="/photos/" title="Photos from travels around the world">Photos</a></li>
<li id="maps"><a href="/map" title="Maps">Map</a></li>
<li id="about"><a href="/about" title="About Luxagraf">About</a></li>
<li id="etc" class="last"><a href="/projects/" title="the less visible portions of the iceberg">Etc</a></li>
</ul>
</nav>
</div>
<ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> → </li>
<li><a href="/photos/" title="See all Photos" itemprop="url"><span>Photos</span></a> →</li>
<li>Death Valley</li>
</ul>
<p class="directions">Use left/right arrow keys to navigate through photos</p>
<main id="slides" class="image-gallery--wrapper">
<h1 class="hide">Photos from Death Valley</h1>
<article id="image-1">
<h6><a href="#image-1" class="permalink" title="link to this image">∞ one ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527780125.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527780125x2.jpg 2x" alt="Flowers" />
<figcaption class="figcaption">
<div class="caption" id="id-2660">
<h3 class="figcaption--title">Flowers</h3>
<time class="figcaption--date" datetime="2010-04-07T17:53:05">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.59527" data-longitude="-116.941223" data-imgid="id-2660">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.003 sec (1/400) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527780125/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2660">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-2">
<h6><a href="#image-2" class="permalink" title="link to this image">∞ two ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527781327.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527781327x2.jpg 2x" alt="Death Valley" />
<figcaption class="figcaption">
<div class="caption" id="id-2659">
<h3 class="figcaption--title">Death Valley</h3>
<time class="figcaption--date" datetime="2010-04-07T17:53:34">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.59527" data-longitude="-116.941223" data-imgid="id-2659">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.003 sec (1/320) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527781327/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2659">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-3">
<h6><a href="#image-3" class="permalink" title="link to this image">∞ three ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527782689.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527782689x2.jpg 2x" alt="Bat Country" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2658">
<h3 class="figcaption--title">Bat Country</h3>
<time class="figcaption--date" datetime="2010-04-07T18:15:58">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.854969" data-longitude="-116.885261" data-imgid="id-2658">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.005 sec (1/200) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527782689/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2658">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-4">
<h6><a href="#image-4" class="permalink" title="link to this image">∞ four ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527783887.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527783887x2.jpg 2x" alt="Desert Hills" />
<figcaption class="figcaption">
<div class="caption" id="id-2657">
<h3 class="figcaption--title">Desert Hills</h3>
<time class="figcaption--date" datetime="2010-04-07T19:10:31">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.851466" data-longitude="-116.912212" data-imgid="id-2657">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.01 sec (1/100) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527783887/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2657">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-5">
<h6><a href="#image-5" class="permalink" title="link to this image">∞ five ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527785007.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527785007x2.jpg 2x" alt="Titus Canyon Road" />
<figcaption class="figcaption">
<div class="caption" id="id-2656">
<h3 class="figcaption--title">Titus Canyon Road</h3>
<time class="figcaption--date" datetime="2010-04-07T19:16:09">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.851466" data-longitude="-116.912212" data-imgid="id-2656">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.01 sec (1/100) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527785007/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2656">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-6">
<h6><a href="#image-6" class="permalink" title="link to this image">∞ six ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527786193.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527786193x2.jpg 2x" alt="The Road to Titus Canyon" />
<figcaption class="figcaption">
<div class="caption" id="id-2655">
<h3 class="figcaption--title">The Road to Titus Canyon</h3>
<time class="figcaption--date" datetime="2010-04-07T19:32:37">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.84762" data-longitude="-116.956672" data-imgid="id-2655">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.003 sec (1/320) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527786193/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2655">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-7">
<h6><a href="#image-7" class="permalink" title="link to this image">∞ seven ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528419748.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528419748x2.jpg 2x" alt="Looking Back" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2654">
<h3 class="figcaption--title">Looking Back</h3>
<time class="figcaption--date" datetime="2010-04-07T19:32:44">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.84762" data-longitude="-116.956672" data-imgid="id-2654">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.003 sec (1/320) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528419748/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2654">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-8">
<h6><a href="#image-8" class="permalink" title="link to this image">∞ eight ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528420882.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528420882x2.jpg 2x" alt="Earthquake Country" />
<figcaption class="figcaption">
<div class="caption" id="id-2653">
<h3 class="figcaption--title">Earthquake Country</h3>
<time class="figcaption--date" datetime="2010-04-07T19:33:02">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.827286" data-longitude="-116.987743" data-imgid="id-2653">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.005 sec (1/200) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528420882/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2653">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-9">
<h6><a href="#image-9" class="permalink" title="link to this image">∞ nine ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528421946.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528421946x2.jpg 2x" alt="The road to Titus Canyon" />
<figcaption class="figcaption">
<div class="caption" id="id-2652">
<h3 class="figcaption--title">The road to Titus Canyon</h3>
<time class="figcaption--date" datetime="2010-04-07T19:35:33">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.833195" data-longitude="-117.034435" data-imgid="id-2652">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.008 sec (1/125) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528421946/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2652">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-10">
<h6><a href="#image-10" class="permalink" title="link to this image">∞ ten ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527790635.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527790635x2.jpg 2x" alt="Above Titus Canyon" />
<figcaption class="figcaption">
<div class="caption" id="id-2651">
<h3 class="figcaption--title">Above Titus Canyon</h3>
<time class="figcaption--date" datetime="2010-04-07T19:35:43">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.853458" data-longitude="-117.062072" data-imgid="id-2651">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.013 sec (1/80) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527790635/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2651">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-11">
<h6><a href="#image-11" class="permalink" title="link to this image">∞ eleven ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528423888.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528423888x2.jpg 2x" alt="Fault Block" />
<figcaption class="figcaption">
<div class="caption" id="id-2650">
<h3 class="figcaption--title">Fault Block</h3>
<time class="figcaption--date" datetime="2010-04-07T20:03:47">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.828454" data-longitude="-117.120094" data-imgid="id-2650">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.01 sec (1/100) sec at f/22.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528423888/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2650">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-12">
<h6><a href="#image-12" class="permalink" title="link to this image">∞ twelve ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528424886.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528424886x2.jpg 2x" alt="Titus Canyon Narrows" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2649">
<h3 class="figcaption--title">Titus Canyon Narrows</h3>
<time class="figcaption--date" datetime="2010-04-07T20:28:27">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.828454" data-longitude="-117.120094" data-imgid="id-2649">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.077 sec (1/13) sec at f/22.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528424886/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2649">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-13">
<h6><a href="#image-13" class="permalink" title="link to this image">∞ thirteen ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528425882.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528425882x2.jpg 2x" alt="Stovepipe Well" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2648">
<h3 class="figcaption--title">Stovepipe Well</h3>
<time class="figcaption--date" datetime="2010-04-07T21:19:00">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.673237" data-longitude="-117.128505" data-imgid="id-2648">Map</a>
<p class="figcaption--desc">The well would get lost when the dunes shifted so someone stuck a stovepipe in it to make it easier to find.</p>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.005 sec (1/200) sec at f/14.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528425882/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2648">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-14">
<h6><a href="#image-14" class="permalink" title="link to this image">∞ fourteen ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528427084.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528427084x2.jpg 2x" alt="Sand Dunes" />
<figcaption class="figcaption">
<div class="caption" id="id-2647">
<h3 class="figcaption--title">Sand Dunes</h3>
<time class="figcaption--date" datetime="2010-04-07T21:19:26">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.673237" data-longitude="-117.128505" data-imgid="id-2647">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.002 sec (1/640) sec at f/14.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528427084/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2647">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-15">
<h6><a href="#image-15" class="permalink" title="link to this image">∞ fifteen ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527795899.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527795899x2.jpg 2x" alt="Dunes" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2646">
<h3 class="figcaption--title">Dunes</h3>
<time class="figcaption--date" datetime="2010-04-07T21:21:44">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.673237" data-longitude="-117.128505" data-imgid="id-2646">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.002 sec (1/500) sec at f/14.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527795899/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2646">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-16">
<h6><a href="#image-16" class="permalink" title="link to this image">∞ sixteen ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527797117.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527797117x2.jpg 2x" alt="Sand" />
<figcaption class="figcaption">
<div class="caption" id="id-2645">
<h3 class="figcaption--title">Sand</h3>
<time class="figcaption--date" datetime="2010-04-07T21:22:12">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.673237" data-longitude="-117.128505" data-imgid="id-2645">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>1/2500 sec sec at f/5.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527797117/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2645">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-17">
<h6><a href="#image-17" class="permalink" title="link to this image">∞ seventeen ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528430956.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528430956x2.jpg 2x" alt="Near Stovepipe Well" />
<figcaption class="figcaption">
<div class="caption" id="id-2644">
<h3 class="figcaption--title">Near Stovepipe Well</h3>
<time class="figcaption--date" datetime="2010-04-07T21:23:00">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.673237" data-longitude="-117.128505" data-imgid="id-2644">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>1/3200 sec sec at f/5.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528430956/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2644">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-18">
<h6><a href="#image-18" class="permalink" title="link to this image">∞ eighteen ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528432330.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528432330x2.jpg 2x" alt="Dunes" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2643">
<h3 class="figcaption--title">Dunes</h3>
<time class="figcaption--date" datetime="2010-04-07T21:23:44">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.673237" data-longitude="-117.128505" data-imgid="id-2643">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.001 sec (1/1600) sec at f/5.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528432330/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2643">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-19">
<h6><a href="#image-19" class="permalink" title="link to this image">∞ nineteen ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527801609.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527801609x2.jpg 2x" alt="Edge of the Dunes" />
<figcaption class="figcaption">
<div class="caption" id="id-2642">
<h3 class="figcaption--title">Edge of the Dunes</h3>
<time class="figcaption--date" datetime="2010-04-07T21:24:11">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.673237" data-longitude="-117.128505" data-imgid="id-2642">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>1/4000 sec sec at f/5.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527801609/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2642">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-20">
<h6><a href="#image-20" class="permalink" title="link to this image">∞ twenty-nine ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527802911.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527802911x2.jpg 2x" alt="Sand Spine" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2641">
<h3 class="figcaption--title">Sand Spine</h3>
<time class="figcaption--date" datetime="2010-04-07T21:30:10">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.673237" data-longitude="-117.128505" data-imgid="id-2641">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>1/2500 sec sec at f/5.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527802911/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2641">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-21">
<h6><a href="#image-21" class="permalink" title="link to this image">∞ twenty-one ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527804109.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527804109x2.jpg 2x" alt="Dunes" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2640">
<h3 class="figcaption--title">Dunes</h3>
<time class="figcaption--date" datetime="2010-04-07T21:31:26">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.673237" data-longitude="-117.128505" data-imgid="id-2640">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.001 sec (1/2000) sec at f/5.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527804109/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2640">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-22">
<h6><a href="#image-22" class="permalink" title="link to this image">∞ twenty-two ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528437608.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528437608x2.jpg 2x" alt="Wildflowers" />
<figcaption class="figcaption">
<div class="caption" id="id-2639">
<h3 class="figcaption--title">Wildflowers</h3>
<time class="figcaption--date" datetime="2010-04-07T22:16:16">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.639911" data-longitude="-117.032375" data-imgid="id-2639">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.005 sec (1/200) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528437608/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2639">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-23">
<h6><a href="#image-23" class="permalink" title="link to this image">∞ twenty-three ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527806141.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527806141x2.jpg 2x" alt="Road to Artist's Pallet" />
<figcaption class="figcaption">
<div class="caption" id="id-2638">
<h3 class="figcaption--title">Road to Artist's Pallet</h3>
<time class="figcaption--date" datetime="2010-04-07T22:18:28">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.331237" data-longitude="-116.828269" data-imgid="id-2638">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.006 sec (1/160) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527806141/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2638">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-24">
<h6><a href="#image-24" class="permalink" title="link to this image">∞ twenty-four ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528439450.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528439450x2.jpg 2x" alt="Desert Evening" />
<figcaption class="figcaption">
<div class="caption" id="id-2637">
<h3 class="figcaption--title">Desert Evening</h3>
<time class="figcaption--date" datetime="2010-04-07T22:37:54">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.34624" data-longitude="-116.793851" data-imgid="id-2637">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.002 sec (1/500) sec at f/4.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528439450/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2637">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-25">
<h6><a href="#image-25" class="permalink" title="link to this image">∞ twenty-five ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528440530.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528440530x2.jpg 2x" alt="Artist's Pallet" />
<figcaption class="figcaption">
<div class="caption" id="id-2636">
<h3 class="figcaption--title">Artist's Pallet</h3>
<time class="figcaption--date" datetime="2010-04-07T22:42:28">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.36442" data-longitude="-116.805181" data-imgid="id-2636">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.008 sec (1/125) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528440530/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2636">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-26">
<h6><a href="#image-26" class="permalink" title="link to this image">∞ twenty-six ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527809183.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527809183x2.jpg 2x" alt="Artist's Pallet Drive" />
<figcaption class="figcaption">
<div class="caption" id="id-2635">
<h3 class="figcaption--title">Artist's Pallet Drive</h3>
<time class="figcaption--date" datetime="2010-04-07T22:44:32">Apr 7, 2010</time>
<a class="map-link" href="#" data-latitude="36.374234" data-longitude="-116.821403" data-imgid="id-2635">Map</a>
<p class="figcaption--desc">For the record, artist's pallet isn't all that exciting, there are far better things to do in Death Valley.</p>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.033 sec (1/30) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527809183/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2635">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-27">
<h6><a href="#image-27" class="permalink" title="link to this image">∞ twenty-seven ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528442272.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528442272x2.jpg 2x" alt="Pre-Dawn, Zabriskie Point" />
<figcaption class="figcaption">
<div class="caption" id="id-2634">
<h3 class="figcaption--title">Pre-Dawn, Zabriskie Point</h3>
<time class="figcaption--date" datetime="2010-04-08T09:58:00">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.420177" data-longitude="-116.814708" data-imgid="id-2634">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p> sec at f/5.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528442272/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2634">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-28">
<h6><a href="#image-28" class="permalink" title="link to this image">∞ twenty-eight ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527811477.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527811477x2.jpg 2x" alt="Zabriskie Point Pano" />
<figcaption class="figcaption">
<div class="caption" id="id-2633">
<h3 class="figcaption--title">Zabriskie Point Pano</h3>
<time class="figcaption--date" datetime="2010-04-08T10:07:53">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.420177" data-longitude="-116.814708" data-imgid="id-2633">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.1 sec (1/10) sec at f/1.7, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527811477/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2633">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-29">
<h6><a href="#image-29" class="permalink" title="link to this image">∞ twenty-nine ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527812609.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527812609x2.jpg 2x" alt="Zabriskie Point" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2632">
<h3 class="figcaption--title">Zabriskie Point</h3>
<time class="figcaption--date" datetime="2010-04-08T10:08:36">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.420177" data-longitude="-116.814708" data-imgid="id-2632">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.067 sec (1/15) sec at f/1.7, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527812609/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2632">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-30">
<h6><a href="#image-30" class="permalink" title="link to this image">∞ thirty-nine ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527813521.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527813521x2.jpg 2x" alt="Panamint Sunrise" />
<figcaption class="figcaption">
<div class="caption" id="id-2631">
<h3 class="figcaption--title">Panamint Sunrise</h3>
<time class="figcaption--date" datetime="2010-04-08T10:28:37">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.420177" data-longitude="-116.814708" data-imgid="id-2631">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.1 sec (1/10) sec at f/9.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527813521/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2631">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-31">
<h6><a href="#image-31" class="permalink" title="link to this image">∞ thirty-one ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528446600.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528446600x2.jpg 2x" alt="Mountains, Light" />
<figcaption class="figcaption">
<div class="caption" id="id-2630">
<h3 class="figcaption--title">Mountains, Light</h3>
<time class="figcaption--date" datetime="2010-04-08T10:35:39">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.420177" data-longitude="-116.814708" data-imgid="id-2630">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.02 sec (1/50) sec at f/8.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528446600/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2630">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-32">
<h6><a href="#image-32" class="permalink" title="link to this image">∞ thirty-two ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527815275.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527815275x2.jpg 2x" alt="Sunrise" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2629">
<h3 class="figcaption--title">Sunrise</h3>
<time class="figcaption--date" datetime="2010-04-08T10:38:34">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.420177" data-longitude="-116.814708" data-imgid="id-2629">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.02 sec (1/50) sec at f/8.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527815275/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2629">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-33">
<h6><a href="#image-33" class="permalink" title="link to this image">∞ thirty-three ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527816227.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527816227x2.jpg 2x" alt="Zabriskie Point Sunrise" />
<figcaption class="figcaption">
<div class="caption" id="id-2628">
<h3 class="figcaption--title">Zabriskie Point Sunrise</h3>
<time class="figcaption--date" datetime="2010-04-08T10:43:43">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.420177" data-longitude="-116.814708" data-imgid="id-2628">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.01 sec (1/100) sec at f/8.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527816227/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2628">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-34">
<h6><a href="#image-34" class="permalink" title="link to this image">∞ thirty-four ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528449338.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528449338x2.jpg 2x" alt="Mini Strata" />
<figcaption class="figcaption">
<div class="caption" id="id-2627">
<h3 class="figcaption--title">Mini Strata</h3>
<time class="figcaption--date" datetime="2010-04-08T10:54:15">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.420177" data-longitude="-116.814708" data-imgid="id-2627">Map</a>
<p class="figcaption--desc">Sort of a pointless photo, but the insanely small depth of field that's possible with the GF1 pancake lens sort of blows my mind.</p>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.001 sec (1/1000) sec at f/1.7, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528449338/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2627">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-35">
<h6><a href="#image-35" class="permalink" title="link to this image">∞ thirty-five ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527818243.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527818243x2.jpg 2x" alt="Light Across the Valley" />
<figcaption class="figcaption">
<div class="caption" id="id-2626">
<h3 class="figcaption--title">Light Across the Valley</h3>
<time class="figcaption--date" datetime="2010-04-08T10:55:06">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.420177" data-longitude="-116.814708" data-imgid="id-2626">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>1/2500 sec sec at f/1.7, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527818243/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2626">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-36">
<h6><a href="#image-36" class="permalink" title="link to this image">∞ thirty-six ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528451492.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528451492x2.jpg 2x" alt="Zabriskie Point Sunlight" />
<figcaption class="figcaption">
<div class="caption" id="id-2625">
<h3 class="figcaption--title">Zabriskie Point Sunlight</h3>
<time class="figcaption--date" datetime="2010-04-08T11:00:41">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.420177" data-longitude="-116.814708" data-imgid="id-2625">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.005 sec (1/200) sec at f/9.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528451492/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2625">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-37">
<h6><a href="#image-37" class="permalink" title="link to this image">∞ thirty-seven ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527820579.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527820579x2.jpg 2x" alt="Daybreak" />
<figcaption class="figcaption">
<div class="caption" id="id-2624">
<h3 class="figcaption--title">Daybreak</h3>
<time class="figcaption--date" datetime="2010-04-08T11:05:32">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.420177" data-longitude="-116.814708" data-imgid="id-2624">Map</a>
<p class="figcaption--desc">The light moving across Zabriskie Point as the sun comes up is amazing</p>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.003 sec (1/320) sec at f/11.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527820579/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2624">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-38">
<h6><a href="#image-38" class="permalink" title="link to this image">∞ thirty-eight ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528454018.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528454018x2.jpg 2x" alt="Flickr Fans" />
<figcaption class="figcaption">
<div class="caption" id="id-2623">
<h3 class="figcaption--title">Flickr Fans</h3>
<time class="figcaption--date" datetime="2010-04-08T11:06:54">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.420177" data-longitude="-116.814708" data-imgid="id-2623">Map</a>
<p class="figcaption--desc">Definitely go to Zabriskie Point to watch the sunrise, just be aware that you will not be alone.</p>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.005 sec (1/200) sec at f/11.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528454018/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2623">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-39">
<h6><a href="#image-39" class="permalink" title="link to this image">∞ thirty-nine ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528455492.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528455492x2.jpg 2x" alt="Daytime" />
<figcaption class="figcaption">
<div class="caption" id="id-2622">
<h3 class="figcaption--title">Daytime</h3>
<time class="figcaption--date" datetime="2010-04-08T11:07:19">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.420177" data-longitude="-116.814708" data-imgid="id-2622">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.005 sec (1/200) sec at f/11.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528455492/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2622">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-40">
<h6><a href="#image-40" class="permalink" title="link to this image">∞ forty-nine ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528457486.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528457486x2.jpg 2x" alt="The Valley Floor" />
<figcaption class="figcaption">
<div class="caption" id="id-2621">
<h3 class="figcaption--title">The Valley Floor</h3>
<time class="figcaption--date" datetime="2010-04-08T11:35:30">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.396276" data-longitude="-116.847324" data-imgid="id-2621">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.003 sec (1/320) sec at f/11.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528457486/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2621">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-41">
<h6><a href="#image-41" class="permalink" title="link to this image">∞ forty-one ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527826899.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527826899x2.jpg 2x" alt="Vanishing Point" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2620">
<h3 class="figcaption--title">Vanishing Point</h3>
<time class="figcaption--date" datetime="2010-04-08T11:37:51">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.396276" data-longitude="-116.847324" data-imgid="id-2620">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.017 sec (1/60) sec at f/11.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527826899/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2620">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-42">
<h6><a href="#image-42" class="permalink" title="link to this image">∞ forty-two ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528460982.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528460982x2.jpg 2x" alt="Dunes" />
<figcaption class="figcaption">
<div class="caption" id="id-2619">
<h3 class="figcaption--title">Dunes</h3>
<time class="figcaption--date" datetime="2010-04-08T13:27:32">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.618145" data-longitude="-117.110652" data-imgid="id-2619">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.002 sec (1/640) sec at f/11.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528460982/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2619">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-43">
<h6><a href="#image-43" class="permalink" title="link to this image">∞ forty-three ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527831839.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527831839x2.jpg 2x" alt="Aguereberry Point Pano" />
<figcaption class="figcaption">
<div class="caption" id="id-2618">
<h3 class="figcaption--title">Aguereberry Point Pano</h3>
<time class="figcaption--date" datetime="2010-04-08T14:41:02">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.360688" data-longitude="-117.047653" data-imgid="id-2618">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.002 sec (1/500) sec at f/13.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527831839/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2618">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-44">
<h6><a href="#image-44" class="permalink" title="link to this image">∞ forty-four ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528465892.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528465892x2.jpg 2x" alt="The Valley Below" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2617">
<h3 class="figcaption--title">The Valley Below</h3>
<time class="figcaption--date" datetime="2010-04-08T14:47:24">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.360688" data-longitude="-117.047653" data-imgid="id-2617">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.003 sec (1/400) sec at f/13.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528465892/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2617">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-45">
<h6><a href="#image-45" class="permalink" title="link to this image">∞ forty-five ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528467394.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528467394x2.jpg 2x" alt="Snow on the Panamint Range" />
<figcaption class="figcaption">
<div class="caption" id="id-2616">
<h3 class="figcaption--title">Snow on the Panamint Range</h3>
<time class="figcaption--date" datetime="2010-04-08T14:47:35">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.360688" data-longitude="-117.047653" data-imgid="id-2616">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
<p>0.004 sec (1/250) sec at f/13.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528467394/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2616">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-46">
<h6><a href="#image-46" class="permalink" title="link to this image">∞ forty-six ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528468652.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528468652x2.jpg 2x" alt="The Valley from Aguereberry Point II" />
<figcaption class="figcaption">
<div class="caption" id="id-2615">
<h3 class="figcaption--title">The Valley from Aguereberry Point II</h3>
<time class="figcaption--date" datetime="2010-04-08T14:48:45">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.360688" data-longitude="-117.047653" data-imgid="id-2615">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.002 sec (1/500) sec at f/13.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528468652/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2615">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-47">
<h6><a href="#image-47" class="permalink" title="link to this image">∞ forty-seven ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528470388.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528470388x2.jpg 2x" alt="The Valley from Aguereberry Point" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2614">
<h3 class="figcaption--title">The Valley from Aguereberry Point</h3>
<time class="figcaption--date" datetime="2010-04-08T14:49:08">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.360688" data-longitude="-117.047653" data-imgid="id-2614">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.003 sec (1/400) sec at f/13.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528470388/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2614">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-48">
<h6><a href="#image-48" class="permalink" title="link to this image">∞ forty-eight ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528472696.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528472696x2.jpg 2x" alt="Panamint Ridge" />
<figcaption class="figcaption">
<div class="caption" id="id-2613">
<h3 class="figcaption--title">Panamint Ridge</h3>
<time class="figcaption--date" datetime="2010-04-08T14:49:19">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.360688" data-longitude="-117.047653" data-imgid="id-2613">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.002 sec (1/500) sec at f/13.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528472696/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2613">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-49">
<h6><a href="#image-49" class="permalink" title="link to this image">∞ forty-nine ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527842421.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527842421x2.jpg 2x" alt="Aguereberry Point" />
<figcaption class="figcaption">
<div class="caption" id="id-2612">
<h3 class="figcaption--title">Aguereberry Point</h3>
<time class="figcaption--date" datetime="2010-04-08T14:57:57">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.360688" data-longitude="-117.047653" data-imgid="id-2612">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.004 sec (1/250) sec at f/13.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527842421/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2612">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-50">
<h6><a href="#image-50" class="permalink" title="link to this image">∞ fifty-nine ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528476716.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528476716x2.jpg 2x" alt="Devil's Golf Course" />
<figcaption class="figcaption">
<div class="caption" id="id-2611">
<h3 class="figcaption--title">Devil's Golf Course</h3>
<time class="figcaption--date" datetime="2010-04-08T16:51:45">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.286626" data-longitude="-116.826295" data-imgid="id-2611">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.002 sec (1/640) sec at f/13.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528476716/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2611">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-51">
<h6><a href="#image-51" class="permalink" title="link to this image">∞ fifty-one ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527845845.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527845845x2.jpg 2x" alt="Panamint Range from Devil's Golf Course" />
<figcaption class="figcaption">
<div class="caption" id="id-2610">
<h3 class="figcaption--title">Panamint Range from Devil's Golf Course</h3>
<time class="figcaption--date" datetime="2010-04-08T16:54:21">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.286626" data-longitude="-116.826295" data-imgid="id-2610">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.002 sec (1/500) sec at f/13.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527845845/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2610">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-52">
<h6><a href="#image-52" class="permalink" title="link to this image">∞ fifty-two ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528479860.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528479860x2.jpg 2x" alt="Mud/Salt" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2609">
<h3 class="figcaption--title">Mud/Salt</h3>
<time class="figcaption--date" datetime="2010-04-08T16:54:43">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.286626" data-longitude="-116.826295" data-imgid="id-2609">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.002 sec (1/500) sec at f/13.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528479860/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2609">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-53">
<h6><a href="#image-53" class="permalink" title="link to this image">∞ fifty-three ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527848745.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527848745x2.jpg 2x" alt="Hulu Hooping at the Lowest Point" />
<figcaption class="figcaption">
<div class="caption" id="id-2608">
<h3 class="figcaption--title">Hulu Hooping at the Lowest Point</h3>
<time class="figcaption--date" datetime="2010-04-08T17:17:24">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.235342" data-longitude="-116.800374" data-imgid="id-2608">Map</a>
<p class="figcaption--desc">No idea why, but there you go.</p>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.002 sec (1/640) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527848745/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2608">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-54">
<h6><a href="#image-54" class="permalink" title="link to this image">∞ fifty-four ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527850015.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527850015x2.jpg 2x" alt="Salt" />
<figcaption class="figcaption">
<div class="caption" id="id-2607">
<h3 class="figcaption--title">Salt</h3>
<time class="figcaption--date" datetime="2010-04-08T17:21:51">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.235342" data-longitude="-116.800374" data-imgid="id-2607">Map</a>
<p class="figcaption--desc">Yes, I tasted a bit of it.</p>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.001 sec (1/1600) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527850015/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2607">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-55">
<h6><a href="#image-55" class="permalink" title="link to this image">∞ fifty-five ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4528483642.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4528483642x2.jpg 2x" alt="Valley Salt" />
<figcaption class="figcaption">
<div class="caption" id="id-2606">
<h3 class="figcaption--title">Valley Salt</h3>
<time class="figcaption--date" datetime="2010-04-08T17:22:11">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.235342" data-longitude="-116.800374" data-imgid="id-2606">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.001 sec (1/1000) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4528483642/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2606">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-56">
<h6><a href="#image-56" class="permalink" title="link to this image">∞ fifty-six ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527852425.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527852425x2.jpg 2x" alt="Salt Flats" class="v" />
<figcaption class="figcaption">
<div class="caption" id="id-2605">
<h3 class="figcaption--title">Salt Flats</h3>
<time class="figcaption--date" datetime="2010-04-08T17:23:38">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.235342" data-longitude="-116.800374" data-imgid="id-2605">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.001 sec (1/1600) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527852425/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2605">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
<article id="image-57">
<h6><a href="#image-57" class="permalink" title="link to this image">∞ fifty-seven ∞</a></h6>
<figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4527853627.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4527853627x2.jpg 2x" alt="The Lowest Point in the U.S." />
<figcaption class="figcaption">
<div class="caption" id="id-2604">
<h3 class="figcaption--title">The Lowest Point in the U.S.</h3>
<time class="figcaption--date" datetime="2010-04-08T17:37:02">Apr 8, 2010</time>
<a class="map-link" href="#" data-latitude="36.230496" data-longitude="-116.767244" data-imgid="id-2604">Map</a>
</div>
<div class="photo-options">
<p>Panasonic GF1 with <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
<p>0.005 sec (1/200) sec at f/16.0, ISO 100 </p>
<!--<p><a href="http://www.flickr.com/photos/luxagraf/4527853627/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
<!--<a href="#" class="exif-link" title="2604">Camera</a>-->
</div>
</figcaption>
</figure>
</article>
</section>
<footer role="contentinfo">
<nav class="bl">
<ul>
<li><a href="/blogroll" title="Sites that inspire us">Blogroll</a></li>
<li><a href="/jrnl/feed.xml" title="RSS feed">Subscribe</a></li>
<li><a href="/contact/" title="contact luxagraf">Contact</a></li>
<li><a href="https://twitter.com/luxagraf" rel="me" title="follow luxagraf on Twitter">Twitter</a></li>
<li><a href="https://www.flickr.com/photos/luxagraf" rel="me" title="luxagraf on Flickr">Flickr</a></li>
<li><a href="https://www.facebook.com/luxagraf" rel="me" title="luxagraf on Facebook">Facebook</a></li>
<li><a href="https://www.instagram.com/luxagraf/" rel="me" title="luxagraf on Instacrap">Instacrap</a></li>
</ul>
</nav>
<p id="license">
© 2003-2016
<span class="h-card"><a class="p-name u-url" href="https://luxagraf.net/">Scott Gilbertson</a><data class="p-nickname" value="luxagraf"></data><data class="p-locality" value="Athens"></data><data class="p-region" value="Georgia"></data><data class="p-country-name" value="United States"></data></span>, except photos, which are licensed under the Creative Commons (<a href="http://creativecommons.org/licenses/by-sa/3.0/" title="read the Attribution-Share Alike 3.0 deed">details</a>).
</p>
<p><a href="https://evolution-host.com/ssd-vps-hosting.php">SSD VPS Hosting by Evolution Host</a>.</p>
</footer>
</div>
<script type="text/javascript" src="/media/js/jquery.js"></script>
<script type="text/javascript" src="/media/js/jquery.scrollTo-1.4.2-min.js"></script>
<script type="text/javascript" src="/media/js/photos.min.js" ></script>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(["disableCookies"]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//stats.luxagraf.net/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', 1]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//stats.luxagraf.net/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
</body>
</html>
|