-
Notifications
You must be signed in to change notification settings - Fork 161
/
payload.json
1387 lines (1386 loc) · 42.1 KB
/
payload.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
{
"query": {
"text": "In the rugged Colorado Desert of California, there lies buried a treasure ship sailed there hundreds of years ago by either Viking or Spanish explorers. Some say this is legend; others insist it is fact. A few have even claimed to have seen the ship, its wooden remains poking through the sand like the skeleton of a prehistoric beast. Among those who say they’ve come close to the ship is small-town librarian Myrtle Botts. In 1933, she was hiking with her husband in the Anza-Borrego Desert, not far from the border with Mexico. It was early March, so the desert would have been in bloom, its washed-out yellows and grays beaten back by the riotous invasion of wildflowers. Those wildflowers were what brought the Bottses to the desert, and they ended up near a tiny settlement called Agua Caliente. Surrounding place names reflected the strangeness and severity of the land: Moonlight Canyon, Hellhole Canyon, Indian Gorge. To enter the desert is to succumb to the unknowable. One morning, a prospector appeared in the couple’s camp with news far more astonishing than a new species of desert flora: He’d found a ship lodged in the rocky face of Canebrake Canyon. The vessel was made of wood, and there was a serpentine figure carved into its prow. There were also impressions on its flanks where shields had been attached—all the hallmarks of a Viking craft. Recounting the episode later, Botts said she and her husband saw the ship but couldn’t reach it, so they vowed to return the following day, better prepared for a rugged hike. That wasn’t to be, because, several hours later, there was a 6.4 magnitude earthquake in the waters off Huntington Beach, in Southern California. Botts claimed it dislodged rocks that buried her Viking ship, which she never saw again.There are reasons to doubt her story, yet it is only one of many about sightings of the desert ship. By the time Myrtle and her husband had set out to explore, amid the blooming poppies and evening primrose, the story of the lost desert ship was already about 60 years old. By the time I heard it, while working on a story about desert conservation, it had been nearly a century and a half since explorer Albert S. Evans had published the first account. Traveling to San Bernardino, Evans came into a valley that was “the grim and silent ghost of a dead sea,” presumably Lake Cahuilla. “The moon threw a track of shimmering light,” he wrote, directly upon “the wreck of a gallant ship, which may have gone down there centuries ago.” The route Evans took came nowhere near Canebrake Canyon, and the ship Evans claimed to see was Spanish, not Norse. Others have also seen this vessel, but much farther south, in Baja California, Mexico. Like all great legends, the desert ship is immune to its contradictions: It is fake news for the romantic soul, offering passage into some ancient American dreamtime when blood and gold were the main currencies of civic life. The legend does seem, prima facie, bonkers: a craft loaded with untold riches, sailed by early-European explorers into a vast lake that once stretched over much of inland Southern California, then run aground, abandoned by its crew and covered over by centuries of sand and rock and creosote bush as that lake dried out…and now it lies a few feet below the surface, in sight of the chicken-wire fence at the back of the Desert Dunes motel, $58 a night and HBO in most rooms. Totally insane, right? Let us slink back to our cubicles and never speak of the desert ship again. Let us only believe that which is shared with us on Facebook. Let us banish forever all traces of wonder from our lives. Yet there are believers who insist that, using recent advances in archaeology, the ship can be found. They point, for example, to a wooden sloop from the 1770s unearthed during excavations at the World Trade Center site in lower Manhattan, or the more than 40 ships, dating back perhaps 800 years, discovered in the Black Sea earlier this year.",
"features": {
"sentiment": {},
"keywords": {},
"categories": {},
"emotion": {},
"entities": {},
"concepts": {},
"semantic_roles": {}
}
},
"results": {
"usage": {
"text_units": 1,
"text_characters": 3972,
"features": 7
},
"sentiment": {
"document": {
"score": -0.544138,
"label": "negative"
}
},
"semantic_roles": [
{
"subject": {
"text": "a treasure ship sailed there hundreds of years ago by either Viking or Spanish explorers"
},
"sentence": "In the rugged Colorado Desert of California, there lies buried a treasure ship sailed there hundreds of years ago by either Viking or Spanish explorers.",
"object": {
"text": "buried"
},
"action": {
"verb": {
"text": "lie",
"tense": "present"
},
"text": "lies",
"normalized": "lie"
}
},
{
"subject": {
"text": "a treasure ship"
},
"sentence": "In the rugged Colorado Desert of California, there lies buried a treasure ship sailed there hundreds of years ago by either Viking or Spanish explorers.",
"action": {
"verb": {
"text": "sail",
"tense": "past"
},
"text": "sailed",
"normalized": "sail"
}
},
{
"subject": {
"text": "Some"
},
"sentence": " Some say this is legend; others insist it is fact.",
"object": {
"text": "this is legend"
},
"action": {
"verb": {
"text": "say",
"tense": "present"
},
"text": "say",
"normalized": "say"
}
},
{
"subject": {
"text": "others"
},
"sentence": " Some say this is legend; others insist it is fact.",
"object": {
"text": "it is fact"
},
"action": {
"verb": {
"text": "insist",
"tense": "present"
},
"text": "insist",
"normalized": "insist"
}
},
{
"subject": {
"text": "A few"
},
"sentence": " A few have even claimed to have seen the ship, its wooden remains poking through the sand like the skeleton of a prehistoric beast.",
"object": {
"text": "to have seen the ship, its wooden remains poking through the sand like the skeleton of a prehistoric beast"
},
"action": {
"verb": {
"text": "claim",
"tense": "past"
},
"text": "claimed",
"normalized": "claim"
}
},
{
"subject": {
"text": "A few"
},
"sentence": " A few have even claimed to have seen the ship, its wooden remains poking through the sand like the skeleton of a prehistoric beast.",
"object": {
"text": "the ship"
},
"action": {
"verb": {
"text": "see",
"tense": "past"
},
"text": "have even claimed to have seen",
"normalized": "have even claim to have see"
}
},
{
"subject": {
"text": "those"
},
"sentence": " Among those who say they’ve come close to the ship is small-town librarian Myrtle Botts.",
"object": {
"text": "they’ve come close to the ship"
},
"action": {
"verb": {
"text": "say",
"tense": "present"
},
"text": "say",
"normalized": "say"
}
},
{
"subject": {
"text": "they’ve come close to the ship"
},
"sentence": " Among those who say they’ve come close to the ship is small-town librarian Myrtle Botts.",
"object": {
"text": "small-town librarian Myrtle Botts"
},
"action": {
"verb": {
"text": "be",
"tense": "present"
},
"text": "is",
"normalized": "be"
}
},
{
"subject": {
"text": "she"
},
"sentence": " In 1933, she was hiking with her husband in the Anza-Borrego Desert, not far from the border with Mexico.",
"object": {
"text": "hiking with her husband in the Anza-Borrego Desert, not far from the border with Mexico"
},
"action": {
"verb": {
"text": "be",
"tense": "past"
},
"text": "was",
"normalized": "be"
}
},
{
"subject": {
"text": "she"
},
"sentence": " In 1933, she was hiking with her husband in the Anza-Borrego Desert, not far from the border with Mexico.",
"action": {
"verb": {
"text": "hike",
"tense": "past"
},
"text": "was hiking",
"normalized": "be hike"
}
},
{
"subject": {
"text": "It"
},
"sentence": " It was early March, so the desert would have been in bloom, its washed-out yellows and grays beaten back by the riotous invasion of wildflowers.",
"action": {
"verb": {
"text": "be",
"tense": "past"
},
"text": "was",
"normalized": "be"
}
},
{
"subject": {
"text": "the desert"
},
"sentence": " It was early March, so the desert would have been in bloom, its washed-out yellows and grays beaten back by the riotous invasion of wildflowers.",
"action": {
"verb": {
"text": "be",
"tense": "future"
},
"text": "would have been",
"normalized": "would have be"
}
},
{
"subject": {
"text": "its washed-out yellows and grays"
},
"sentence": " It was early March, so the desert would have been in bloom, its washed-out yellows and grays beaten back by the riotous invasion of wildflowers.",
"object": {
"text": "by the riotous invasion of wildflowers"
},
"action": {
"verb": {
"text": "beat",
"tense": "past"
},
"text": "beaten",
"normalized": "beat"
}
},
{
"subject": {
"text": "Those wildflowers"
},
"sentence": " Those wildflowers were what brought the Bottses to the desert, and they ended up near a tiny settlement called Agua Caliente.",
"object": {
"text": "the Bottses"
},
"action": {
"verb": {
"text": "bring",
"tense": "past"
},
"text": "brought",
"normalized": "bring"
}
},
{
"subject": {
"text": "they"
},
"sentence": " Those wildflowers were what brought the Bottses to the desert, and they ended up near a tiny settlement called Agua Caliente.",
"action": {
"verb": {
"text": "end",
"tense": "past"
},
"text": "ended",
"normalized": "end"
}
},
{
"subject": {
"text": "a tiny settlement"
},
"sentence": " Those wildflowers were what brought the Bottses to the desert, and they ended up near a tiny settlement called Agua Caliente.",
"object": {
"text": "Agua Caliente"
},
"action": {
"verb": {
"text": "call",
"tense": "past"
},
"text": "called",
"normalized": "call"
}
},
{
"subject": {
"text": "the strangeness and severity of the land: Moonlight Canyon, Hellhole Canyon, Indian Gorge"
},
"sentence": " Surrounding place names reflected the strangeness and severity of the land: Moonlight Canyon, Hellhole Canyon, Indian Gorge.",
"object": {
"text": "Surrounding place names"
},
"action": {
"verb": {
"text": "reflect",
"tense": "past"
},
"text": "reflected",
"normalized": "reflect"
}
},
{
"subject": {
"text": "a prospector"
},
"sentence": " One morning, a prospector appeared in the couple’s camp with news far more astonishing than a new species of desert flora: He’d found a ship lodged in the rocky face of Canebrake Canyon.",
"action": {
"verb": {
"text": "appear",
"tense": "past"
},
"text": "appeared",
"normalized": "appear"
}
},
{
"subject": {
"text": "He"
},
"sentence": " One morning, a prospector appeared in the couple’s camp with news far more astonishing than a new species of desert flora: He’d found a ship lodged in the rocky face of Canebrake Canyon.",
"object": {
"text": "found a ship lodged in the rocky face of Canebrake Canyon"
},
"action": {
"verb": {
"text": "’d",
"tense": "past"
},
"text": "’d",
"normalized": "’d"
}
},
{
"subject": {
"text": "He"
},
"sentence": " One morning, a prospector appeared in the couple’s camp with news far more astonishing than a new species of desert flora: He’d found a ship lodged in the rocky face of Canebrake Canyon.",
"object": {
"text": "a ship lodged in the rocky face of Canebrake Canyon"
},
"action": {
"verb": {
"text": "find",
"tense": "past"
},
"text": "d found",
"normalized": "d find"
}
},
{
"subject": {
"text": "The vessel"
},
"sentence": " The vessel was made of wood, and there was a serpentine figure carved into its prow.",
"object": {
"text": "made of wood"
},
"action": {
"verb": {
"text": "be",
"tense": "past"
},
"text": "was",
"normalized": "be"
}
},
{
"subject": {
"text": "The vessel"
},
"sentence": " The vessel was made of wood, and there was a serpentine figure carved into its prow.",
"object": {
"text": "of wood"
},
"action": {
"verb": {
"text": "make",
"tense": "past"
},
"text": "was made",
"normalized": "be make"
}
},
{
"subject": {
"text": "shields"
},
"sentence": " There were also impressions on its flanks where shields had been attached—all the hallmarks of a Viking craft.",
"object": {
"text": "been attached—all the hallmarks of a Viking craft"
},
"action": {
"verb": {
"text": "have",
"tense": "past"
},
"text": "had",
"normalized": "have"
}
},
{
"subject": {
"text": "shields"
},
"sentence": " There were also impressions on its flanks where shields had been attached—all the hallmarks of a Viking craft.",
"object": {
"text": "attached—all the hallmarks of a Viking craft"
},
"action": {
"verb": {
"text": "be",
"tense": "past"
},
"text": "had been",
"normalized": "have be"
}
},
{
"subject": {
"text": "Botts"
},
"sentence": " Recounting the episode later, Botts said she and her husband saw the ship but couldn’t reach it, so they vowed to return the following day, better prepared for a rugged hike.",
"object": {
"text": "she and her husband saw the ship but couldn’t reach it"
},
"action": {
"verb": {
"text": "say",
"tense": "past"
},
"text": "said",
"normalized": "say"
}
},
{
"subject": {
"text": "they"
},
"sentence": " Recounting the episode later, Botts said she and her husband saw the ship but couldn’t reach it, so they vowed to return the following day, better prepared for a rugged hike.",
"object": {
"text": "to return the following day"
},
"action": {
"verb": {
"text": "vow",
"tense": "past"
},
"text": "vowed",
"normalized": "vow"
}
},
{
"subject": {
"text": "they"
},
"sentence": " Recounting the episode later, Botts said she and her husband saw the ship but couldn’t reach it, so they vowed to return the following day, better prepared for a rugged hike.",
"action": {
"verb": {
"text": "return",
"tense": "future"
},
"text": "vowed to return",
"normalized": "vow to return"
}
},
{
"subject": {
"text": "That"
},
"sentence": " That wasn’t to be, because, several hours later, there was a 6.4 magnitude earthquake in the waters off Huntington Beach, in Southern California.",
"object": {
"text": "n’t"
},
"action": {
"verb": {
"text": "be",
"tense": "past"
},
"text": "was",
"normalized": "be"
}
},
{
"subject": {
"text": "Botts"
},
"sentence": " Botts claimed it dislodged rocks that buried her Viking ship, which she never saw again.There are reasons to doubt her story, yet it is only one of many about sightings of the desert ship.",
"object": {
"text": "it dislodged rocks that buried her Viking ship, which she never saw again.There are reasons to doubt her story, yet it is only one of many about sightings of the desert ship"
},
"action": {
"verb": {
"text": "claim",
"tense": "past"
},
"text": "claimed",
"normalized": "claim"
}
},
{
"subject": {
"text": "rocks"
},
"sentence": " Botts claimed it dislodged rocks that buried her Viking ship, which she never saw again.There are reasons to doubt her story, yet it is only one of many about sightings of the desert ship.",
"object": {
"text": "her Viking ship, which she never saw again.There"
},
"action": {
"verb": {
"text": "bury",
"tense": "past"
},
"text": "buried",
"normalized": "bury"
}
},
{
"subject": {
"text": "she"
},
"sentence": " Botts claimed it dislodged rocks that buried her Viking ship, which she never saw again.There are reasons to doubt her story, yet it is only one of many about sightings of the desert ship.",
"object": {
"text": "again.There are reasons to doubt her story"
},
"action": {
"verb": {
"text": "see",
"tense": "past"
},
"text": "saw",
"normalized": "see"
}
},
{
"subject": {
"text": "Myrtle and her husband"
},
"sentence": " By the time Myrtle and her husband had set out to explore, amid the blooming poppies and evening primrose, the story of the lost desert ship was already about 60 years old.",
"object": {
"text": "set out to explore"
},
"action": {
"verb": {
"text": "have",
"tense": "past"
},
"text": "had",
"normalized": "have"
}
},
{
"subject": {
"text": "the story of the lost desert ship"
},
"sentence": " By the time Myrtle and her husband had set out to explore, amid the blooming poppies and evening primrose, the story of the lost desert ship was already about 60 years old.",
"action": {
"verb": {
"text": "be",
"tense": "past"
},
"text": "was",
"normalized": "be"
}
},
{
"subject": {
"text": "I"
},
"sentence": " By the time I heard it, while working on a story about desert conservation, it had been nearly a century and a half since explorer Albert S. Evans had published the first account.",
"object": {
"text": "it"
},
"action": {
"verb": {
"text": "hear",
"tense": "past"
},
"text": "heard",
"normalized": "hear"
}
},
{
"subject": {
"text": "it"
},
"sentence": " By the time I heard it, while working on a story about desert conservation, it had been nearly a century and a half since explorer Albert S. Evans had published the first account.",
"action": {
"verb": {
"text": "have",
"tense": "past"
},
"text": "had been",
"normalized": "have be"
}
},
{
"subject": {
"text": "it"
},
"sentence": " By the time I heard it, while working on a story about desert conservation, it had been nearly a century and a half since explorer Albert S. Evans had published the first account.",
"object": {
"text": "nearly a century and a half"
},
"action": {
"verb": {
"text": "be",
"tense": "past"
},
"text": "had been",
"normalized": "have be"
}
},
{
"subject": {
"text": "a half since explorer Albert S. Evans"
},
"sentence": " By the time I heard it, while working on a story about desert conservation, it had been nearly a century and a half since explorer Albert S. Evans had published the first account.",
"object": {
"text": "published the first account"
},
"action": {
"verb": {
"text": "have",
"tense": "past"
},
"text": "had",
"normalized": "have"
}
},
{
"subject": {
"text": "a half since explorer Albert S. Evans"
},
"sentence": " By the time I heard it, while working on a story about desert conservation, it had been nearly a century and a half since explorer Albert S. Evans had published the first account.",
"object": {
"text": "the first account"
},
"action": {
"verb": {
"text": "publish",
"tense": "past"
},
"text": "had published",
"normalized": "have publish"
}
},
{
"subject": {
"text": "Evans"
},
"sentence": " Traveling to San Bernardino, Evans came into a valley that was “the grim and silent ghost of a dead sea,” presumably Lake Cahuilla.",
"object": {
"text": "into a valley that was “the grim and silent ghost of a dead sea,” presumably Lake Cahuilla"
},
"action": {
"verb": {
"text": "come",
"tense": "past"
},
"text": "came",
"normalized": "come"
}
},
{
"subject": {
"text": "a valley that"
},
"sentence": " Traveling to San Bernardino, Evans came into a valley that was “the grim and silent ghost of a dead sea,” presumably Lake Cahuilla.",
"object": {
"text": "the grim and silent ghost of a dead sea"
},
"action": {
"verb": {
"text": "be",
"tense": "past"
},
"text": "was",
"normalized": "be"
}
},
{
"subject": {
"text": "The moon"
},
"sentence": " “The moon threw a track of shimmering light,” he wrote, directly upon “the wreck of a gallant ship, which may have gone down there centuries ago.” The route Evans took came nowhere near Canebrake Canyon, and the ship Evans claimed to see was Spanish, not Norse.",
"object": {
"text": "a track"
},
"action": {
"verb": {
"text": "throw",
"tense": "past"
},
"text": "threw",
"normalized": "throw"
}
},
{
"subject": {
"text": "he"
},
"sentence": " “The moon threw a track of shimmering light,” he wrote, directly upon “the wreck of a gallant ship, which may have gone down there centuries ago.” The route Evans took came nowhere near Canebrake Canyon, and the ship Evans claimed to see was Spanish, not Norse.",
"object": {
"text": "The moon threw a track of shimmering light"
},
"action": {
"verb": {
"text": "write",
"tense": "past"
},
"text": "wrote",
"normalized": "write"
}
},
{
"subject": {
"text": "a gallant ship"
},
"sentence": " “The moon threw a track of shimmering light,” he wrote, directly upon “the wreck of a gallant ship, which may have gone down there centuries ago.” The route Evans took came nowhere near Canebrake Canyon, and the ship Evans claimed to see was Spanish, not Norse.",
"object": {
"text": "gone down there centuries"
},
"action": {
"verb": {
"text": "have",
"tense": "future"
},
"text": "have",
"normalized": "have"
}
},
{
"subject": {
"text": "Evans"
},
"sentence": " “The moon threw a track of shimmering light,” he wrote, directly upon “the wreck of a gallant ship, which may have gone down there centuries ago.” The route Evans took came nowhere near Canebrake Canyon, and the ship Evans claimed to see was Spanish, not Norse.",
"object": {
"text": "nowhere"
},
"action": {
"verb": {
"text": "come",
"tense": "past"
},
"text": "came",
"normalized": "come"
}
},
{
"subject": {
"text": "the ship Evans"
},
"sentence": " “The moon threw a track of shimmering light,” he wrote, directly upon “the wreck of a gallant ship, which may have gone down there centuries ago.” The route Evans took came nowhere near Canebrake Canyon, and the ship Evans claimed to see was Spanish, not Norse.",
"object": {
"text": "to see was Spanish, not Norse"
},
"action": {
"verb": {
"text": "claim",
"tense": "past"
},
"text": "claimed",
"normalized": "claim"
}
},
{
"subject": {
"text": "the ship Evans"
},
"sentence": " “The moon threw a track of shimmering light,” he wrote, directly upon “the wreck of a gallant ship, which may have gone down there centuries ago.” The route Evans took came nowhere near Canebrake Canyon, and the ship Evans claimed to see was Spanish, not Norse.",
"object": {
"text": "was Spanish, not Norse"
},
"action": {
"verb": {
"text": "see",
"tense": "future"
},
"text": "claimed to see",
"normalized": "claim to see"
}
},
{
"subject": {
"text": "Others"
},
"sentence": " Others have also seen this vessel, but much farther south, in Baja California, Mexico.",
"object": {
"text": "this vessel"
},
"action": {
"verb": {
"text": "see",
"tense": "past"
},
"text": "have also seen",
"normalized": "have also see"
}
},
{
"subject": {
"text": "the desert ship"
},
"sentence": " Like all great legends, the desert ship is immune to its contradictions: It is fake news for the romantic soul, offering passage into some ancient American dreamtime when blood and gold were the main currencies of civic life.",
"object": {
"text": "immune to its contradictions"
},
"action": {
"verb": {
"text": "be",
"tense": "present"
},
"text": "is",
"normalized": "be"
}
},
{
"subject": {
"text": "blood and gold"
},
"sentence": " Like all great legends, the desert ship is immune to its contradictions: It is fake news for the romantic soul, offering passage into some ancient American dreamtime when blood and gold were the main currencies of civic life.",
"object": {
"text": "the main currencies of civic life"
},
"action": {
"verb": {
"text": "be",
"tense": "past"
},
"text": "were",
"normalized": "be"
}
},
{
"subject": {
"text": "The legend"
},
"sentence": " The legend does seem, prima facie, bonkers: a craft loaded with untold riches, sailed by early-European explorers into a vast lake that once stretched over much of inland Southern California, then run aground, abandoned by its crew and covered over by centuries of sand and rock and creosote bush as that lake dried out…and now it lies a few feet below the surface, in sight of the chicken-wire fence at the back of the Desert Dunes motel, $58 a night and HBO in most rooms.",
"object": {
"text": "once stretched over much of inland Southern California, then run aground, abandoned by its crew and covered over by centuries of sand and rock and creosote bush as that lake dried out…and now it lies a few feet below the surface, in sight of the chicken-wire fence at the back of the Desert Dunes motel, $58 a night and HBO in most rooms"
},
"action": {
"verb": {
"text": "do",
"tense": "present"
},
"text": "does seem",
"normalized": "do seem"
}
}
],
"language": "en",
"keywords": [
{
"text": "treasure ship",
"relevance": 0.678253,
"count": 1
},
{
"text": "rugged Colorado Desert of California",
"relevance": 0.633605,
"count": 1
},
{
"text": "small-town librarian Myrtle Botts",
"relevance": 0.602635,
"count": 1
},
{
"text": "Anza-Borrego Desert",
"relevance": 0.574586,
"count": 1
},
{
"text": "great legends",
"relevance": 0.563368,
"count": 1
},
{
"text": "explorer Albert S. Evans",
"relevance": 0.559745,
"count": 1
},
{
"text": "time Myrtle",
"relevance": 0.557398,
"count": 1
},
{
"text": "early March",
"relevance": 0.554323,
"count": 1
},
{
"text": "San Bernardino",
"relevance": 0.546636,
"count": 1
},
{
"text": "World Trade Center site",
"relevance": 0.545634,
"count": 1
},
{
"text": "Spanish explorers",
"relevance": 0.539944,
"count": 1
},
{
"text": "Southern California",
"relevance": 0.538122,
"count": 1
},
{
"text": "fake news",
"relevance": 0.535933,
"count": 1
},
{
"text": "Lake Cahuilla",
"relevance": 0.531683,
"count": 1
},
{
"text": "magnitude earthquake",
"relevance": 0.529386,
"count": 1
},
{
"text": "hallmarks of a Viking craft",
"relevance": 0.529378,
"count": 1
},
{
"text": "riotous invasion of wildflowers",
"relevance": 0.526639,
"count": 1
},
{
"text": "European explorers",
"relevance": 0.526194,
"count": 1
},
{
"text": "wooden remains",
"relevance": 0.5261,
"count": 1
},
{
"text": "lower Manhattan",
"relevance": 0.525911,
"count": 1
},
{
"text": "Moonlight Canyon",
"relevance": 0.524771,
"count": 1
},
{
"text": "recent advances",
"relevance": 0.523816,
"count": 1
},
{
"text": "sight of the chicken-wire fence",
"relevance": 0.523522,
"count": 1
},
{
"text": "legend",
"relevance": 0.522402,
"count": 2
},
{
"text": "Huntington Beach",
"relevance": 0.520237,
"count": 1
},
{
"text": "farther south",
"relevance": 0.519995,
"count": 1
},
{
"text": "Baja California",
"relevance": 0.51933,
"count": 1
},
{
"text": "new species of desert flora",
"relevance": 0.518399,
"count": 1
},
{
"text": "route Evans",
"relevance": 0.518141,
"count": 1
},
{
"text": "place names",
"relevance": 0.517965,