-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphotos.json
1821 lines (1821 loc) · 51.2 KB
/
photos.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
{
"eric-on-his-honeymoon-maui-hawaii": "2TUDan0y",
"base-of-the-genesee-arch-bridge-letchworth-state-park": "lnvAq0F9",
"lnvAq0F9": {
"id": "lnvAq0F9",
"alias": "base-of-the-genesee-arch-bridge-letchworth-state-park",
"baseUrl": "https://pho.limulus.net/lnvAq0F9",
"original": "IMG_6491.png",
"width": 3024,
"height": 4032,
"title": "Base of the Genesee Arch Bridge, Letchworth State Park",
"description": "A telephoto shot of the eastern base of the Genesee Arch Bridge (also known as the Portage Viaduct). The red steel arch extends beyond the frame. The base is embedded into an area likely excavated out of the gorge’s wall. Various stairs and catwalks line the sides of the base.",
"date": "2024-10-17T13:30:17-04:00",
"tags": [
"license:cc-by",
"limulus.net",
"limulus.net/photos"
],
"make": "Apple",
"camera": "iPhone 16 Pro",
"lens": "iPhone 16 Pro back triple camera 15.66mm f/2.8",
"focalLength": "15.659999847383 mm",
"exposureTime": "1/99",
"fNumber": "f/2.8",
"iso": 64,
"flash": "Flash did not fire, compulsory flash mode",
"exposureMode": "Auto exposure",
"whiteBalance": "Auto white balance",
"location": {
"latitude": 42.57803333333334,
"longitude": -78.05007222222221,
"altitude": 380.78695073235684
},
"renditions": [
{
"name": "xl",
"format": "avif",
"url": "https://pho.limulus.net/lnvAq0F9/xl.1PSq3Ewd.avif",
"file": "xl.1PSq3Ewd.avif",
"width": 3024,
"height": 4032,
"size": 1272219
},
{
"name": "xl",
"format": "jpeg",
"url": "https://pho.limulus.net/lnvAq0F9/xl.cuZyDXz5.jpeg",
"file": "xl.cuZyDXz5.jpeg",
"width": 3024,
"height": 4032,
"size": 2841209
},
{
"name": "lg",
"format": "avif",
"url": "https://pho.limulus.net/lnvAq0F9/lg.IxoJIjJL.avif",
"file": "lg.IxoJIjJL.avif",
"width": 3000,
"height": 4000,
"size": 1210839
},
{
"name": "lg",
"format": "jpeg",
"url": "https://pho.limulus.net/lnvAq0F9/lg.Wqu2RASy.jpeg",
"file": "lg.Wqu2RASy.jpeg",
"width": 3000,
"height": 4000,
"size": 2795307
},
{
"name": "md",
"format": "avif",
"url": "https://pho.limulus.net/lnvAq0F9/md.1P0d1_Mv.avif",
"file": "md.1P0d1_Mv.avif",
"width": 1500,
"height": 2000,
"size": 517946
},
{
"name": "md",
"format": "jpeg",
"url": "https://pho.limulus.net/lnvAq0F9/md.MDvFdUnz.jpeg",
"file": "md.MDvFdUnz.jpeg",
"width": 1500,
"height": 2000,
"size": 912279
},
{
"name": "sm",
"format": "avif",
"url": "https://pho.limulus.net/lnvAq0F9/sm.CUOpVTBZ.avif",
"file": "sm.CUOpVTBZ.avif",
"width": 750,
"height": 1000,
"size": 176014
},
{
"name": "sm",
"format": "jpeg",
"url": "https://pho.limulus.net/lnvAq0F9/sm.UzU2Fsp9.jpeg",
"file": "sm.UzU2Fsp9.jpeg",
"width": 750,
"height": 1000,
"size": 263754
}
]
},
"mist-middle-falls-letchworth-state-park": "PlumNgPF",
"PlumNgPF": {
"id": "PlumNgPF",
"alias": "mist-middle-falls-letchworth-state-park",
"baseUrl": "https://pho.limulus.net/PlumNgPF",
"original": "IMG_6518.png",
"width": 4032,
"height": 3024,
"title": "Mist, Middle Falls, Letchworth State Park",
"description": "Sun-lit mist scatters in the foreground. A blurry person in a hat with a backpack uses their phone to take a photograph of a waterfall.",
"date": "2024-10-17T14:15:18-04:00",
"tags": [
"license:cc-by",
"limulus.net",
"limulus.net/photos"
],
"make": "Apple",
"camera": "iPhone 16 Pro",
"lens": "iPhone 16 Pro back triple camera 6.765mm f/1.78",
"focalLength": "6.764999865652793 mm",
"exposureTime": "1/2667",
"fNumber": "f/1.7799999713880652",
"iso": 64,
"flash": "Flash did not fire, compulsory flash mode",
"exposureMode": "Auto exposure",
"whiteBalance": "Auto white balance",
"location": {
"latitude": 42.58379444444445,
"longitude": -78.04259444444445,
"altitude": 309.9357495881384
},
"renditions": [
{
"name": "xl",
"format": "avif",
"url": "https://pho.limulus.net/PlumNgPF/xl.KFTAfbK8.avif",
"file": "xl.KFTAfbK8.avif",
"width": 4032,
"height": 3024,
"size": 228570
},
{
"name": "xl",
"format": "jpeg",
"url": "https://pho.limulus.net/PlumNgPF/xl.TrLi-Vjj.jpeg",
"file": "xl.TrLi-Vjj.jpeg",
"width": 4032,
"height": 3024,
"size": 1119543
},
{
"name": "lg",
"format": "avif",
"url": "https://pho.limulus.net/PlumNgPF/lg.AxTZYQKH.avif",
"file": "lg.AxTZYQKH.avif",
"width": 3000,
"height": 2250,
"size": 162909
},
{
"name": "lg",
"format": "jpeg",
"url": "https://pho.limulus.net/PlumNgPF/lg.BrTe_Czt.jpeg",
"file": "lg.BrTe_Czt.jpeg",
"width": 3000,
"height": 2250,
"size": 696866
},
{
"name": "md",
"format": "avif",
"url": "https://pho.limulus.net/PlumNgPF/md.tvGtgmZu.avif",
"file": "md.tvGtgmZu.avif",
"width": 1500,
"height": 1125,
"size": 76968
},
{
"name": "md",
"format": "jpeg",
"url": "https://pho.limulus.net/PlumNgPF/md.2Xg2WBYZ.jpeg",
"file": "md.2Xg2WBYZ.jpeg",
"width": 1500,
"height": 1125,
"size": 231777
},
{
"name": "sm",
"format": "avif",
"url": "https://pho.limulus.net/PlumNgPF/sm.0sNTXYjN.avif",
"file": "sm.0sNTXYjN.avif",
"width": 750,
"height": 563,
"size": 35419
},
{
"name": "sm",
"format": "jpeg",
"url": "https://pho.limulus.net/PlumNgPF/sm.NCoSnmaB.jpeg",
"file": "sm.NCoSnmaB.jpeg",
"width": 750,
"height": 563,
"size": 78899
}
]
},
"middle-falls-letchworth-state-park": "9S_9E3mC",
"9S_9E3mC": {
"id": "9S_9E3mC",
"alias": "middle-falls-letchworth-state-park",
"baseUrl": "https://pho.limulus.net/9S_9E3mC",
"original": "IMG_6635.png",
"width": 4032,
"height": 3024,
"title": "Middle Falls, Letchworth State Park",
"description": "The Genesee River flows over the Middle Falls in Letchworth State Park. Trees on the bank of the river are turning to fall covers as the low sun illuminates them. In the foreground, several people stand on an overlook photographing the falls. One of them is somewhat precariously standing on a wet rock wall with a tripod.",
"date": "2024-10-17T17:39:12-04:00",
"tags": [
"license:cc-by",
"limulus.net",
"limulus.net/photos"
],
"make": "Apple",
"camera": "iPhone 16 Pro",
"lens": "iPhone 16 Pro back triple camera 6.765mm f/1.78",
"focalLength": "6.764999865652793 mm",
"exposureTime": "1/549",
"fNumber": "f/1.7799999713880652",
"iso": 80,
"flash": "Flash did not fire, compulsory flash mode",
"exposureMode": "Auto exposure",
"whiteBalance": "Auto white balance",
"location": {
"latitude": 42.583911111111114,
"longitude": -78.04248055555556,
"altitude": 291.89978494623654
},
"renditions": [
{
"name": "xl",
"format": "avif",
"url": "https://pho.limulus.net/9S_9E3mC/xl.eTDvvAKL.avif",
"file": "xl.eTDvvAKL.avif",
"width": 4032,
"height": 3024,
"size": 826839
},
{
"name": "xl",
"format": "jpeg",
"url": "https://pho.limulus.net/9S_9E3mC/xl.nWIFvbjX.jpeg",
"file": "xl.nWIFvbjX.jpeg",
"width": 4032,
"height": 3024,
"size": 2185943
},
{
"name": "lg",
"format": "avif",
"url": "https://pho.limulus.net/9S_9E3mC/lg.k1DmqvnF.avif",
"file": "lg.k1DmqvnF.avif",
"width": 3000,
"height": 2250,
"size": 599934
},
{
"name": "lg",
"format": "jpeg",
"url": "https://pho.limulus.net/9S_9E3mC/lg.agZzvjVn.jpeg",
"file": "lg.agZzvjVn.jpeg",
"width": 3000,
"height": 2250,
"size": 1389861
},
{
"name": "md",
"format": "avif",
"url": "https://pho.limulus.net/9S_9E3mC/md.kcfUWaQS.avif",
"file": "md.kcfUWaQS.avif",
"width": 1500,
"height": 1125,
"size": 241101
},
{
"name": "md",
"format": "jpeg",
"url": "https://pho.limulus.net/9S_9E3mC/md.QvAT4NB7.jpeg",
"file": "md.QvAT4NB7.jpeg",
"width": 1500,
"height": 1125,
"size": 428313
},
{
"name": "sm",
"format": "avif",
"url": "https://pho.limulus.net/9S_9E3mC/sm.nNtdttTV.avif",
"file": "sm.nNtdttTV.avif",
"width": 750,
"height": 563,
"size": 70807
},
{
"name": "sm",
"format": "jpeg",
"url": "https://pho.limulus.net/9S_9E3mC/sm.y0baDoGI.jpeg",
"file": "sm.y0baDoGI.jpeg",
"width": 750,
"height": 563,
"size": 115163
}
]
},
"upper-falls-letchworth-state-park": "ogMP7Pbu",
"ogMP7Pbu": {
"id": "ogMP7Pbu",
"alias": "upper-falls-letchworth-state-park",
"baseUrl": "https://pho.limulus.net/ogMP7Pbu",
"original": "Upper Falls, Letchworth State Park.png",
"width": 6000,
"height": 4000,
"title": "Upper Falls, Letchworth State Park",
"description": "A waterfall in a gorge, surrounded by trees beginning to take on fall colors. The midday sun brightly lights the falls and the mist filling the gorge. A long train bridge spans the gorge over the falls.",
"date": "2024-10-17T12:55:37-04:00",
"tags": [
"Pixelmator",
"license:cc-by",
"limulus.net/photos",
"limulus.net"
],
"make": "NIKON CORPORATION",
"camera": "NIKON D5600",
"lens": "AF-S DX Nikkor 35mm f/1.8G",
"focalLength": "35 mm",
"exposureTime": "1/400",
"fNumber": "f/9",
"iso": 200,
"flash": "Flash did not fire, compulsory flash mode",
"exposureMode": "Auto exposure",
"whiteBalance": "Auto white balance",
"location": {
"latitude": 42.58007222222223,
"longitude": -78.04695555555556,
"altitude": 320
},
"renditions": [
{
"name": "xl",
"format": "avif",
"url": "https://pho.limulus.net/ogMP7Pbu/xl.YY1huNJl.avif",
"file": "xl.YY1huNJl.avif",
"width": 6000,
"height": 4000,
"size": 906009
},
{
"name": "xl",
"format": "jpeg",
"url": "https://pho.limulus.net/ogMP7Pbu/xl.BmE_cfYd.jpeg",
"file": "xl.BmE_cfYd.jpeg",
"width": 6000,
"height": 4000,
"size": 2803368
},
{
"name": "lg",
"format": "avif",
"url": "https://pho.limulus.net/ogMP7Pbu/lg.70YUaaCm.avif",
"file": "lg.70YUaaCm.avif",
"width": 3000,
"height": 2000,
"size": 392778
},
{
"name": "lg",
"format": "jpeg",
"url": "https://pho.limulus.net/ogMP7Pbu/lg.L8p7ZjtV.jpeg",
"file": "lg.L8p7ZjtV.jpeg",
"width": 3000,
"height": 2000,
"size": 909586
},
{
"name": "md",
"format": "avif",
"url": "https://pho.limulus.net/ogMP7Pbu/md.XU2dR5Dl.avif",
"file": "md.XU2dR5Dl.avif",
"width": 1500,
"height": 1000,
"size": 128908
},
{
"name": "md",
"format": "jpeg",
"url": "https://pho.limulus.net/ogMP7Pbu/md.0D8v28Qk.jpeg",
"file": "md.0D8v28Qk.jpeg",
"width": 1500,
"height": 1000,
"size": 263942
},
{
"name": "sm",
"format": "avif",
"url": "https://pho.limulus.net/ogMP7Pbu/sm.8Xs87JJ9.avif",
"file": "sm.8Xs87JJ9.avif",
"width": 750,
"height": 500,
"size": 40855
},
{
"name": "sm",
"format": "jpeg",
"url": "https://pho.limulus.net/ogMP7Pbu/sm.L3zr6aWY.jpeg",
"file": "sm.L3zr6aWY.jpeg",
"width": 750,
"height": 500,
"size": 76930
}
]
},
"pixel-clock": "Srq_na9c",
"Srq_na9c": {
"id": "Srq_na9c",
"alias": "pixel-clock",
"baseUrl": "https://pho.limulus.net/Srq_na9c",
"original": "pixel-clock.png",
"width": 1050,
"height": 734,
"title": "<pixel-clock>",
"description": "A screenshot of the <pixel-clock> demo. A square with a colorful background has 12 white pixelated dots in a circle, with 3 other dots inside. If it were a moving image, it would be obvious that the three inside dots correspond to an hour, minute, and second hands of a clock.",
"date": "2024-11-06T22:10:04-07:00",
"tags": [
"screenshot",
"limulus.net",
"license:cc-by"
],
"location": null,
"renditions": [
{
"name": "xl",
"format": "avif",
"url": "https://pho.limulus.net/Srq_na9c/xl.p-wWq-1C.avif",
"file": "xl.p-wWq-1C.avif",
"width": 1050,
"height": 734,
"size": 6389
},
{
"name": "xl",
"format": "jpeg",
"url": "https://pho.limulus.net/Srq_na9c/xl.LTCTLE7R.jpeg",
"file": "xl.LTCTLE7R.jpeg",
"width": 1050,
"height": 734,
"size": 24125
},
{
"name": "lg",
"format": "avif",
"url": "https://pho.limulus.net/Srq_na9c/lg.p-wWq-1C.avif",
"file": "lg.p-wWq-1C.avif",
"width": 1050,
"height": 734,
"size": 6389
},
{
"name": "lg",
"format": "jpeg",
"url": "https://pho.limulus.net/Srq_na9c/lg.LTCTLE7R.jpeg",
"file": "lg.LTCTLE7R.jpeg",
"width": 1050,
"height": 734,
"size": 24125
},
{
"name": "md",
"format": "avif",
"url": "https://pho.limulus.net/Srq_na9c/md.p-wWq-1C.avif",
"file": "md.p-wWq-1C.avif",
"width": 1050,
"height": 734,
"size": 6389
},
{
"name": "md",
"format": "jpeg",
"url": "https://pho.limulus.net/Srq_na9c/md.LTCTLE7R.jpeg",
"file": "md.LTCTLE7R.jpeg",
"width": 1050,
"height": 734,
"size": 24125
},
{
"name": "sm",
"format": "avif",
"url": "https://pho.limulus.net/Srq_na9c/sm.85nPgJ9r.avif",
"file": "sm.85nPgJ9r.avif",
"width": 750,
"height": 524,
"size": 5967
},
{
"name": "sm",
"format": "jpeg",
"url": "https://pho.limulus.net/Srq_na9c/sm.ovHEGEI9.jpeg",
"file": "sm.ovHEGEI9.jpeg",
"width": 750,
"height": 524,
"size": 17220
}
]
},
"projectile-cannon": "D-STK6Qy",
"D-STK6Qy": {
"id": "D-STK6Qy",
"alias": "projectile-cannon",
"baseUrl": "https://pho.limulus.net/D-STK6Qy",
"original": "projectile-cannon.png",
"width": 1462,
"height": 1042,
"title": "<projectile-cannon>",
"description": "A screenshot of the projectile-cannon demo component. A black box contains 4 white squares of various sizes along the bottom edge. At the top of the box is 4 log lines corresponding to the coordinates of each square. Below the box are UI controls: X, Y, and Z sliders; and Fire and Clear buttons.",
"date": "2024-11-08T20:54:12-07:00",
"tags": [
"screenshot",
"limulus.net",
"license:cc-by"
],
"location": null,
"renditions": [
{
"name": "xl",
"format": "avif",
"url": "https://pho.limulus.net/D-STK6Qy/xl.1o8iUTe7.avif",
"file": "xl.1o8iUTe7.avif",
"width": 1462,
"height": 1042,
"size": 16197
},
{
"name": "xl",
"format": "jpeg",
"url": "https://pho.limulus.net/D-STK6Qy/xl.ZPr-Iu9l.jpeg",
"file": "xl.ZPr-Iu9l.jpeg",
"width": 1462,
"height": 1042,
"size": 51827
},
{
"name": "lg",
"format": "avif",
"url": "https://pho.limulus.net/D-STK6Qy/lg.1o8iUTe7.avif",
"file": "lg.1o8iUTe7.avif",
"width": 1462,
"height": 1042,
"size": 16197
},
{
"name": "lg",
"format": "jpeg",
"url": "https://pho.limulus.net/D-STK6Qy/lg.ZPr-Iu9l.jpeg",
"file": "lg.ZPr-Iu9l.jpeg",
"width": 1462,
"height": 1042,
"size": 51827
},
{
"name": "md",
"format": "avif",
"url": "https://pho.limulus.net/D-STK6Qy/md.1o8iUTe7.avif",
"file": "md.1o8iUTe7.avif",
"width": 1462,
"height": 1042,
"size": 16197
},
{
"name": "md",
"format": "jpeg",
"url": "https://pho.limulus.net/D-STK6Qy/md.ZPr-Iu9l.jpeg",
"file": "md.ZPr-Iu9l.jpeg",
"width": 1462,
"height": 1042,
"size": 51827
},
{
"name": "sm",
"format": "avif",
"url": "https://pho.limulus.net/D-STK6Qy/sm.RIa10VZT.avif",
"file": "sm.RIa10VZT.avif",
"width": 750,
"height": 535,
"size": 9807
},
{
"name": "sm",
"format": "jpeg",
"url": "https://pho.limulus.net/D-STK6Qy/sm.u7MJbGj2.jpeg",
"file": "sm.u7MJbGj2.jpeg",
"width": 750,
"height": 535,
"size": 22918
}
]
},
"sphere-shadow-and-sphere-shadow-wasm": "S7e9ZsqX",
"S7e9ZsqX": {
"id": "S7e9ZsqX",
"alias": "sphere-shadow-and-sphere-shadow-wasm",
"baseUrl": "https://pho.limulus.net/S7e9ZsqX",
"original": "sphere-shadow-wasm.png",
"width": 2560,
"height": 1440,
"title": "<sphere-shadow> and <sphere-shadow-wasm>",
"description": "A screenshot of the sphere-shadow and sphere-shadow-wasm demo components. Two colorful boxes are side-by-side, both containing a pixelated oval. Under the sphere-shadow box is the text “Render time: 6.44 ms”. Under the sphere-shadow-wasm box is the text “Render time: 0.90 ms”. Underneath both is a “Resolution” selection menu, currently set at “50x50”.",
"date": "2024-11-08T20:48:06-07:00",
"tags": [
"screenshot",
"limulus.net",
"license:cc-by"
],
"location": null,
"renditions": [
{
"name": "xl",
"format": "avif",
"url": "https://pho.limulus.net/S7e9ZsqX/xl.pGPtrYiX.avif",
"file": "xl.pGPtrYiX.avif",
"width": 2560,
"height": 1440,
"size": 16772
},
{
"name": "xl",
"format": "jpeg",
"url": "https://pho.limulus.net/S7e9ZsqX/xl.6zPbHanR.jpeg",
"file": "xl.6zPbHanR.jpeg",
"width": 2560,
"height": 1440,
"size": 79435
},
{
"name": "lg",
"format": "avif",
"url": "https://pho.limulus.net/S7e9ZsqX/lg.pGPtrYiX.avif",
"file": "lg.pGPtrYiX.avif",
"width": 2560,
"height": 1440,
"size": 16772
},
{
"name": "lg",
"format": "jpeg",
"url": "https://pho.limulus.net/S7e9ZsqX/lg.6zPbHanR.jpeg",
"file": "lg.6zPbHanR.jpeg",
"width": 2560,
"height": 1440,
"size": 79435
},
{
"name": "md",
"format": "avif",
"url": "https://pho.limulus.net/S7e9ZsqX/md.9j2_RSZ3.avif",
"file": "md.9j2_RSZ3.avif",
"width": 1500,
"height": 844,
"size": 12984
},
{
"name": "md",
"format": "jpeg",
"url": "https://pho.limulus.net/S7e9ZsqX/md.j4VXvFgQ.jpeg",
"file": "md.j4VXvFgQ.jpeg",
"width": 1500,
"height": 844,
"size": 52393
},
{
"name": "sm",
"format": "avif",
"url": "https://pho.limulus.net/S7e9ZsqX/sm.ryTXercB.avif",
"file": "sm.ryTXercB.avif",
"width": 750,
"height": 422,
"size": 8953
},
{
"name": "sm",
"format": "jpeg",
"url": "https://pho.limulus.net/S7e9ZsqX/sm.ZnZXvppS.jpeg",
"file": "sm.ZnZXvppS.jpeg",
"width": 750,
"height": 422,
"size": 24698
}
]
},
"sphere-shadow": "wrbbesgD",
"wrbbesgD": {
"id": "wrbbesgD",
"alias": "sphere-shadow",
"baseUrl": "https://pho.limulus.net/wrbbesgD",
"original": "sphere-shadow.png",
"width": 1224,
"height": 806,
"title": "<sphere-shadow>",
"description": "A screenshot of the sphere-shadow demo component. A box with a colorful background contains a pixelated black circle, which is the rendering of a sphere’s shadow. Below it is the text “Render time: 17.26 ms”.",
"date": "2024-11-08T20:40:50-07:00",
"tags": [
"screenshot",
"limulus.net",
"license:cc-by"
],
"location": null,
"renditions": [
{
"name": "xl",
"format": "avif",
"url": "https://pho.limulus.net/wrbbesgD/xl.WhLgVpjm.avif",
"file": "xl.WhLgVpjm.avif",
"width": 1224,
"height": 806,
"size": 8614
},
{
"name": "xl",
"format": "jpeg",
"url": "https://pho.limulus.net/wrbbesgD/xl.pmk4GCDZ.jpeg",
"file": "xl.pmk4GCDZ.jpeg",
"width": 1224,
"height": 806,
"size": 30711
},
{
"name": "lg",
"format": "avif",
"url": "https://pho.limulus.net/wrbbesgD/lg.WhLgVpjm.avif",
"file": "lg.WhLgVpjm.avif",
"width": 1224,
"height": 806,
"size": 8614
},
{
"name": "lg",
"format": "jpeg",
"url": "https://pho.limulus.net/wrbbesgD/lg.pmk4GCDZ.jpeg",
"file": "lg.pmk4GCDZ.jpeg",
"width": 1224,
"height": 806,
"size": 30711
},
{
"name": "md",
"format": "avif",
"url": "https://pho.limulus.net/wrbbesgD/md.WhLgVpjm.avif",
"file": "md.WhLgVpjm.avif",
"width": 1224,
"height": 806,
"size": 8614
},
{
"name": "md",
"format": "jpeg",
"url": "https://pho.limulus.net/wrbbesgD/md.pmk4GCDZ.jpeg",
"file": "md.pmk4GCDZ.jpeg",
"width": 1224,
"height": 806,
"size": 30711
},
{
"name": "sm",
"format": "avif",
"url": "https://pho.limulus.net/wrbbesgD/sm.M5SWqYW6.avif",
"file": "sm.M5SWqYW6.avif",
"width": 750,
"height": 494,
"size": 6919
},
{
"name": "sm",
"format": "jpeg",
"url": "https://pho.limulus.net/wrbbesgD/sm.lNGQAv7i.jpeg",
"file": "sm.lNGQAv7i.jpeg",
"width": 750,
"height": 494,
"size": 17700
}
]
},
"spiny-side-eye": "_Eh10XTl",
"_Eh10XTl": {
"id": "_Eh10XTl",
"alias": "spiny-side-eye",
"baseUrl": "https://pho.limulus.net/_Eh10XTl",
"original": "DSC_0003.png",
"width": 5672,
"height": 3190,
"title": "Spiny Side Eye",
"description": "A low perspective telephoto side profile of a Desert Spiny Lizard as it sits on top of a small rock under a bush. Its eye looks to the far right.",
"date": "2023-05-17T17:38:09-07:00",
"tags": [
"license:cc-by",
"limulus.net",
"limulus.net/photos"
],
"make": "NIKON CORPORATION",
"camera": "NIKON D5600",
"lens": "AF-S VR Zoom-Nikkor 70-300mm f/4.5-5.6G IF-ED",
"focalLength": "300 mm",
"exposureTime": "1/160",
"fNumber": "f/5.6",
"iso": 800,
"flash": "Flash did not fire, compulsory flash mode",
"exposureMode": "Auto exposure",
"whiteBalance": "Auto white balance",
"location": null,
"renditions": [
{
"name": "xl",
"format": "avif",
"url": "https://pho.limulus.net/_Eh10XTl/xl._8CzBYF5.avif",
"file": "xl._8CzBYF5.avif",
"width": 5672,
"height": 3190,
"size": 303332
},
{
"name": "xl",
"format": "jpeg",
"url": "https://pho.limulus.net/_Eh10XTl/xl.PqPQJ1aD.jpeg",
"file": "xl.PqPQJ1aD.jpeg",
"width": 5672,
"height": 3190,
"size": 1723161
},
{
"name": "lg",
"format": "avif",
"url": "https://pho.limulus.net/_Eh10XTl/lg.P1FG6tX6.avif",
"file": "lg.P1FG6tX6.avif",
"width": 3000,
"height": 1687,
"size": 164882
},
{
"name": "lg",
"format": "jpeg",
"url": "https://pho.limulus.net/_Eh10XTl/lg.Bz53RB0y.jpeg",
"file": "lg.Bz53RB0y.jpeg",
"width": 3000,
"height": 1687,
"size": 600487
},
{
"name": "md",
"format": "avif",
"url": "https://pho.limulus.net/_Eh10XTl/md.5sGZnZo0.avif",
"file": "md.5sGZnZo0.avif",
"width": 1500,
"height": 844,
"size": 87323
},
{
"name": "md",
"format": "jpeg",
"url": "https://pho.limulus.net/_Eh10XTl/md.KRJBjHqw.jpeg",
"file": "md.KRJBjHqw.jpeg",
"width": 1500,
"height": 844,
"size": 212532
},
{
"name": "sm",
"format": "avif",
"url": "https://pho.limulus.net/_Eh10XTl/sm.o0lAI929.avif",
"file": "sm.o0lAI929.avif",
"width": 750,
"height": 422,
"size": 43449
},
{
"name": "sm",
"format": "jpeg",
"url": "https://pho.limulus.net/_Eh10XTl/sm.DVtpCU5V.jpeg",
"file": "sm.DVtpCU5V.jpeg",
"width": 750,
"height": 422,
"size": 77798
}
]
},
"photos-page-2024-11-29": "1i3Fb4Wt",
"1i3Fb4Wt": {
"id": "1i3Fb4Wt",
"alias": "photos-page-2024-11-29",
"baseUrl": "https://pho.limulus.net/1i3Fb4Wt",
"original": "photos-page-2024-11-29.png",
"width": 1418,
"height": 1418,
"title": "photos-page-2024-11-29",
"description": "Four cropped-square photos on a black background. They are various photos taken at Letchworth State Park, New York.",
"date": "2024-11-29T08:52:57-07:00",
"tags": [
"screenshot",
"limulus.net",
"license:cc-by"
],
"location": null,
"renditions": [
{
"name": "xl",
"format": "avif",
"url": "https://pho.limulus.net/1i3Fb4Wt/xl._3YBaoWv.avif",
"file": "xl._3YBaoWv.avif",
"width": 1418,
"height": 1418,
"size": 191637
},
{
"name": "xl",
"format": "jpeg",
"url": "https://pho.limulus.net/1i3Fb4Wt/xl.CAsg1jec.jpeg",
"file": "xl.CAsg1jec.jpeg",
"width": 1418,
"height": 1418,
"size": 390539
},
{
"name": "lg",
"format": "avif",
"url": "https://pho.limulus.net/1i3Fb4Wt/lg._3YBaoWv.avif",
"file": "lg._3YBaoWv.avif",
"width": 1418,
"height": 1418,
"size": 191637
},
{
"name": "lg",
"format": "jpeg",
"url": "https://pho.limulus.net/1i3Fb4Wt/lg.CAsg1jec.jpeg",
"file": "lg.CAsg1jec.jpeg",
"width": 1418,
"height": 1418,
"size": 390539
},
{
"name": "md",
"format": "avif",
"url": "https://pho.limulus.net/1i3Fb4Wt/md._3YBaoWv.avif",
"file": "md._3YBaoWv.avif",
"width": 1418,
"height": 1418,
"size": 191637
},
{
"name": "md",
"format": "jpeg",
"url": "https://pho.limulus.net/1i3Fb4Wt/md.CAsg1jec.jpeg",
"file": "md.CAsg1jec.jpeg",
"width": 1418,
"height": 1418,
"size": 390539
},
{
"name": "sm",
"format": "avif",
"url": "https://pho.limulus.net/1i3Fb4Wt/sm.32qPeAS6.avif",
"file": "sm.32qPeAS6.avif",
"width": 750,
"height": 750,
"size": 67694
},
{
"name": "sm",
"format": "jpeg",
"url": "https://pho.limulus.net/1i3Fb4Wt/sm.nxygSr1S.jpeg",
"file": "sm.nxygSr1S.jpeg",
"width": 750,
"height": 750,
"size": 126739
}
]
},
"limulus-dot-net-2024-11-29": "9yvwHsT8",
"9yvwHsT8": {
"id": "9yvwHsT8",
"alias": "limulus-dot-net-2024-11-29",
"baseUrl": "https://pho.limulus.net/9yvwHsT8",
"original": "limulus-dot-net-2024-11-29.png",
"width": 1430,
"height": 1006,
"title": "limulus-dot-net-2024-11-29",
"description": "A screenshot of the limulus.net logo and “limulus.net /” header. The logo is an abstract lines that form a box missing a top with a diagonal line. A circle sits in the center. It is shaded magenta, purple, and blue.",
"date": "2024-11-29T13:41:39-07:00",