-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3DE4CD9C-259E-4C14-9B03-8B10454BA66E.xml
1191 lines (1112 loc) · 86.6 KB
/
3DE4CD9C-259E-4C14-9B03-8B10454BA66E.xml
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
<?xml version="1.0" encoding="utf-8"?>
<arch:project xmlns:arch="http://ochre.lib.uchicago.edu/schema/Project/Project.xsd" xmlns:oc="http://opencontext.org/schema/project_schema_v1.xsd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:gml="http://www.opengis.net/gml" UUID="3DE4CD9C-259E-4C14-9B03-8B10454BA66E" ownedBy="3DE4CD9C-259E-4C14-9B03-8B10454BA66E">
<arch:name>
<arch:string>Kenan Tepe</arch:string>
</arch:name>
<oc:manage_info>
<oc:queryVal>Kenan+Tepe</oc:queryVal>
<oc:rootPath>/Turkey</oc:rootPath>
<oc:spaceCount>0</oc:spaceCount>
<oc:mediaCount>0</oc:mediaCount>
<oc:diaryCount>0</oc:diaryCount>
<oc:projGeoPoint>37.830994480263 40.813967519737</oc:projGeoPoint>
</oc:manage_info>
<arch:links>
<arch:docID type="spatialUnit" info="project root">5D6B6454-017A-43C1-9F15-6DFE36C3558F</arch:docID>
<arch:docID type="person" info="Project Participant">9034B710-8EC0-426F-C5D8-61E5255DF22F</arch:docID>
<arch:docID type="person" info="Project Participant">1A2F7786-0BC7-11DF-933B-E95756D89593</arch:docID>
<arch:docID type="person" info="Project Participant">758FF73A-0BF5-42EA-75BD-B10106DC81F3</arch:docID>
<arch:docID type="person" info="Project Participant">4499C94B-8EB5-4E30-07CC-DD3A98561FB6</arch:docID>
<arch:docID type="person" info="Project Participant">3BFF1966-447D-4CE1-2589-D5004F81A413</arch:docID>
<arch:docID type="person" info="Project Participant">B14E7E07-078B-432B-CAA0-607A1FF9532C</arch:docID>
<arch:docID type="person" info="Project Participant">F5499DD7-D9C6-4906-E9C2-7B3F5F0600E1</arch:docID>
<arch:docID type="person" info="Project Participant">982BC76C-2D84-469F-CAE8-9E521103BEBF</arch:docID>
<arch:docID type="person" info="Project Participant">B8A7ABCA-53A8-4598-4CFA-2D19DBF3F21C</arch:docID>
<arch:docID type="person" info="Project Participant">3D65A1BE-D304-4AB1-FFB7-E246FAD0104D</arch:docID>
<arch:docID type="person" info="Project Participant">2A24472E-30CC-4C0C-A97B-9E0FCE7C12AA</arch:docID>
<arch:docID type="person" info="Project Participant">1CB63FDA-748F-43DD-1A8B-DE1555118DC1</arch:docID>
<arch:docID type="person" info="Project Participant">44AFB259-3D9D-48A3-1FE1-B4DD3C564E43</arch:docID>
<arch:docID type="person" info="Project Participant">69DC9784-84E3-49BC-C677-AD30A5D32D5A</arch:docID>
<arch:docID type="person" info="Project Participant">40A7FE36-5249-4820-C5A6-BE461D052C1B</arch:docID>
<arch:docID type="person" info="Project Participant">48708E75-BD2B-43D2-348D-E4D9E5A68400</arch:docID>
<arch:docID type="person" info="Project Participant">5B36F3B7-901C-4E2C-DA1A-4E287E0FBC6B</arch:docID>
<arch:docID type="person" info="Project Participant">E6895D9E-A424-4023-1EEF-12F6DDCB9E25</arch:docID>
<arch:docID type="person" info="Project Participant">ACACBCB5-D69E-4B32-50C5-FDDDE9481F16</arch:docID>
<arch:docID type="person" info="Project Participant">F926AEE3-D6C5-4867-8FC2-47472C4F5576</arch:docID>
<arch:docID type="person" info="Project Participant">50FEC697-ACE9-411B-5BBE-1DD28968FA8B</arch:docID>
<arch:docID type="person" info="Project Participant">60D5008A-A12F-461B-9C71-18128F74365F</arch:docID>
<arch:docID type="person" info="Project Participant">BA3EF575-1978-4542-270E-A6FCE056B08A</arch:docID>
<arch:docID type="person" info="Project Participant">914BD789-9BB7-497B-D62A-1B3DA9BCC353</arch:docID>
<arch:docID type="person" info="Project Participant">969DDC48-8A03-4827-8FF6-C04E9C30C55B</arch:docID>
<arch:docID type="person" info="Project Participant">00518574-866A-4FFB-1B68-29DAD426FA03</arch:docID>
<arch:docID type="person" info="Project Participant">892D0A43-C03D-4026-7438-AE14E20F3358</arch:docID>
<arch:docID type="person" info="Project Participant">D51C0B02-E955-4367-F32D-3A5B31232C54</arch:docID>
<arch:docID type="person" info="Project Participant">5EF027A5-6A70-43C4-E647-398E969F3F54</arch:docID>
<arch:docID type="person" info="Project Participant">9C80BF6B-7BDE-4295-E7D9-695845A44846</arch:docID>
<arch:docID type="person" info="Project Participant">8FC09711-CAD6-41EB-7B6E-B21B8133912A</arch:docID>
<arch:docID type="person" info="Project Participant">3BDBEC0E-8D0F-484F-DBD9-985F3D0915F6</arch:docID>
<arch:docID type="person" info="Project Participant">6CCB342E-E849-4909-C990-83EEC4AF3E69</arch:docID>
<arch:docID type="person" info="Project Participant">9011B065-36D7-464B-BFDB-D8467B9F26B3</arch:docID>
<arch:docID type="person" info="Project Participant">55A791AF-2656-4A0F-3806-EDF875C19418</arch:docID>
<arch:docID type="person" info="Project Participant">0FB25CA9-3EEA-4DE5-D6E6-ABA671E38FC3</arch:docID>
<arch:docID type="person" info="Project Participant">30775907-F98A-474C-D3BD-8559F0BD8385</arch:docID>
<arch:docID type="person" info="Project Participant">F8ACECD0-3EB8-4404-23FE-DA307065B38F</arch:docID>
<arch:docID type="person" info="Project Participant">E114A491-A716-4B47-0082-017A1CE7C04D</arch:docID>
<arch:docID type="person" info="Project Participant">F3DC7399-F377-4720-5290-D11224FCF401</arch:docID>
<arch:docID type="person" info="Project Participant">76FDEBE0-48C2-4410-7E52-53A6472DE096</arch:docID>
<arch:docID type="person" info="Project Participant">A9A8AAB4-BEF0-4BAE-5A98-1B1AB9FF5A61</arch:docID>
<arch:docID type="person" info="Project Participant">873DC754-1B25-440A-C89C-8E78CC4D9FD0</arch:docID>
<arch:docID type="person" info="Project Participant">FC579E65-1316-4AFA-AAB7-CCF1B09EB3A0</arch:docID>
<arch:docID type="person" info="Project Participant">E3FCC39F-0303-4BFE-90C9-63C7CFC38805</arch:docID>
<arch:docID type="person" info="Project Participant">A8E84AE9-D163-4922-7C31-2A3FE499DC30</arch:docID>
<arch:docID type="person" info="Project Participant">AECA1347-0F4B-4AF7-40E4-70A663ED1FF7</arch:docID>
<arch:docID type="person" info="Project Participant">53B3E0B6-1528-45AB-B39D-A7858C040BFF</arch:docID>
<arch:docID type="person" info="Project Participant">C2C809FB-E548-4CCB-E658-07444E04CA98</arch:docID>
<arch:docID type="person" info="Project Participant">88386EC2-4ED1-4D79-8487-D0C0E0E2A6EC</arch:docID>
<arch:docID type="person" info="Project Participant">4D19FB73-8A58-4A13-5B95-1ECCFA313E45</arch:docID>
<arch:docID type="person" info="Project Participant">509DF0ED-6D90-40C8-99F5-140E568167A3</arch:docID>
<arch:docID type="person" info="Project Participant">1A016E4D-75C5-4AA5-127B-DD3338D946BD</arch:docID>
<arch:docID type="person" info="Project Participant">7CA12E71-DC1E-48B0-9F3A-A6ED26B23CB3</arch:docID>
<arch:docID type="person" info="Project Participant">4266DF70-2CDD-4985-E280-EA55CDBCB38F</arch:docID>
<arch:docID type="person" info="Project Participant">428D6551-406E-45E9-D98A-B775C0C81DF8</arch:docID>
<arch:docID type="person" info="Project Participant">24397670-1776-4769-47BA-B192CF043B88</arch:docID>
<arch:docID type="person" info="Project Participant">0D69BBAA-1EAD-4405-1AC3-F49F528136D5</arch:docID>
<arch:docID type="person" info="Project Participant">A1D8C2AF-BBF1-4BDE-A01F-06B9069AA53D</arch:docID>
<arch:docID type="person" info="Project Participant">18218BEF-3C7A-4BAB-4D9E-58C2670489FB</arch:docID>
<arch:docID type="person" info="Project Participant">D105DD58-B094-4E0F-9D65-12FDDC5A6DDD</arch:docID>
<arch:docID type="person" info="Project Participant">F9FF938F-263E-4E40-01B1-ED7C460EFB88</arch:docID>
<arch:docID type="person" info="Project Participant">A248C239-4CF0-48B8-A683-ECCC0AE2D664</arch:docID>
<arch:docID type="person" info="Project Participant">DFBA262C-FB4B-4D51-1F41-3C20475288DC</arch:docID>
<arch:docID type="resource" info="link">EE35CC2C-499B-4C55-7D5D-B3A8E84AA612</arch:docID>
<oc:space_links>
<oc:link href="http://opencontext.org/subjects/5D6B6454-017A-43C1-9F15-6DFE36C3558F">
<oc:name>Kenan Tepe</oc:name>
<oc:id>5D6B6454-017A-43C1-9F15-6DFE36C3558F</oc:id>
<oc:relation>project root</oc:relation>
<oc:item_class>
<oc:name>Site</oc:name>
<oc:iconURI>site_30x30.jpg</oc:iconURI>
</oc:item_class>
<oc:context>
<oc:tree id="default">
<oc:parent href="http://opencontext.org/subjects/1_Global_Spatial">
<oc:name>Turkey</oc:name>
<oc:id>1_Global_Spatial</oc:id>
<oc:level>1</oc:level>
<oc:item_class>
<oc:name>Region</oc:name>
<oc:iconURI>http://opencontext.org/database/ui_images/med_oc_icons/region_30x30.jpg</oc:iconURI>
</oc:item_class>
</oc:parent>
</oc:tree>
</oc:context>
</oc:link>
</oc:space_links>
<oc:media_links>
<oc:link href="http://opencontext.org/media/EE35CC2C-499B-4C55-7D5D-B3A8E84AA612">
<oc:name>C_4_4094_27_1_P_4.JPG</oc:name>
<oc:id>EE35CC2C-499B-4C55-7D5D-B3A8E84AA612</oc:id>
<oc:relation>link</oc:relation>
<oc:type>image</oc:type>
<oc:thumbnailURI>http://artiraq.org/static/opencontext/kenantepe/thumbs/Findsphotos2/AreaC/C4/C_4_4094_27_1_P_4.JPG</oc:thumbnailURI>
</oc:link>
</oc:media_links>
<oc:person_links>
<oc:link href="http://opencontext.org/persons/9034B710-8EC0-426F-C5D8-61E5255DF22F">
<oc:name/>
<oc:id>9034B710-8EC0-426F-C5D8-61E5255DF22F</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/1A2F7786-0BC7-11DF-933B-E95756D89593">
<oc:name>Sarah W. Kansa</oc:name>
<oc:id>1A2F7786-0BC7-11DF-933B-E95756D89593</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/758FF73A-0BF5-42EA-75BD-B10106DC81F3">
<oc:name>Jeanne Nijhowne</oc:name>
<oc:id>758FF73A-0BF5-42EA-75BD-B10106DC81F3</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/4499C94B-8EB5-4E30-07CC-DD3A98561FB6">
<oc:name>Bradley J. Parker</oc:name>
<oc:id>4499C94B-8EB5-4E30-07CC-DD3A98561FB6</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/3BFF1966-447D-4CE1-2589-D5004F81A413">
<oc:name>Cathryn Meegan</oc:name>
<oc:id>3BFF1966-447D-4CE1-2589-D5004F81A413</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/B14E7E07-078B-432B-CAA0-607A1FF9532C">
<oc:name>Lynn Swartz Dodd</oc:name>
<oc:id>B14E7E07-078B-432B-CAA0-607A1FF9532C</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/F5499DD7-D9C6-4906-E9C2-7B3F5F0600E1">
<oc:name>Chiara Cavallo</oc:name>
<oc:id>F5499DD7-D9C6-4906-E9C2-7B3F5F0600E1</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/982BC76C-2D84-469F-CAE8-9E521103BEBF">
<oc:name>JP</oc:name>
<oc:id>982BC76C-2D84-469F-CAE8-9E521103BEBF</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/B8A7ABCA-53A8-4598-4CFA-2D19DBF3F21C">
<oc:name>JW</oc:name>
<oc:id>B8A7ABCA-53A8-4598-4CFA-2D19DBF3F21C</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/3D65A1BE-D304-4AB1-FFB7-E246FAD0104D">
<oc:name>AC</oc:name>
<oc:id>3D65A1BE-D304-4AB1-FFB7-E246FAD0104D</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/2A24472E-30CC-4C0C-A97B-9E0FCE7C12AA">
<oc:name>JS</oc:name>
<oc:id>2A24472E-30CC-4C0C-A97B-9E0FCE7C12AA</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/1CB63FDA-748F-43DD-1A8B-DE1555118DC1">
<oc:name>WP</oc:name>
<oc:id>1CB63FDA-748F-43DD-1A8B-DE1555118DC1</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/44AFB259-3D9D-48A3-1FE1-B4DD3C564E43">
<oc:name>J0</oc:name>
<oc:id>44AFB259-3D9D-48A3-1FE1-B4DD3C564E43</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/69DC9784-84E3-49BC-C677-AD30A5D32D5A">
<oc:name>WT</oc:name>
<oc:id>69DC9784-84E3-49BC-C677-AD30A5D32D5A</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/40A7FE36-5249-4820-C5A6-BE461D052C1B">
<oc:name>DP</oc:name>
<oc:id>40A7FE36-5249-4820-C5A6-BE461D052C1B</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/48708E75-BD2B-43D2-348D-E4D9E5A68400">
<oc:name>Barış Uzel</oc:name>
<oc:id>48708E75-BD2B-43D2-348D-E4D9E5A68400</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/5B36F3B7-901C-4E2C-DA1A-4E287E0FBC6B">
<oc:name>Eleanor Moseman</oc:name>
<oc:id>5B36F3B7-901C-4E2C-DA1A-4E287E0FBC6B</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/E6895D9E-A424-4023-1EEF-12F6DDCB9E25">
<oc:name>David Lunt</oc:name>
<oc:id>E6895D9E-A424-4023-1EEF-12F6DDCB9E25</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/ACACBCB5-D69E-4B32-50C5-FDDDE9481F16">
<oc:name>Amy Hartner</oc:name>
<oc:id>ACACBCB5-D69E-4B32-50C5-FDDDE9481F16</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/F926AEE3-D6C5-4867-8FC2-47472C4F5576">
<oc:name>Randy Sasaki</oc:name>
<oc:id>F926AEE3-D6C5-4867-8FC2-47472C4F5576</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/50FEC697-ACE9-411B-5BBE-1DD28968FA8B">
<oc:name>Richard R. Paine</oc:name>
<oc:id>50FEC697-ACE9-411B-5BBE-1DD28968FA8B</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/60D5008A-A12F-461B-9C71-18128F74365F">
<oc:name>Debbie Dillie</oc:name>
<oc:id>60D5008A-A12F-461B-9C71-18128F74365F</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/BA3EF575-1978-4542-270E-A6FCE056B08A">
<oc:name>Ilya Berelov</oc:name>
<oc:id>BA3EF575-1978-4542-270E-A6FCE056B08A</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/914BD789-9BB7-497B-D62A-1B3DA9BCC353">
<oc:name>Michaelle Stikich</oc:name>
<oc:id>914BD789-9BB7-497B-D62A-1B3DA9BCC353</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/969DDC48-8A03-4827-8FF6-C04E9C30C55B">
<oc:name>Dawnell Sommerville-Moon</oc:name>
<oc:id>969DDC48-8A03-4827-8FF6-C04E9C30C55B</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/00518574-866A-4FFB-1B68-29DAD426FA03">
<oc:name>Andrew Ugan</oc:name>
<oc:id>00518574-866A-4FFB-1B68-29DAD426FA03</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/892D0A43-C03D-4026-7438-AE14E20F3358">
<oc:name>Kara Cottle</oc:name>
<oc:id>892D0A43-C03D-4026-7438-AE14E20F3358</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/D51C0B02-E955-4367-F32D-3A5B31232C54">
<oc:name>Robert Sinnott</oc:name>
<oc:id>D51C0B02-E955-4367-F32D-3A5B31232C54</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/5EF027A5-6A70-43C4-E647-398E969F3F54">
<oc:name>Jakob Pawlowicz</oc:name>
<oc:id>5EF027A5-6A70-43C4-E647-398E969F3F54</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/9C80BF6B-7BDE-4295-E7D9-695845A44846">
<oc:name>Andrew Creekmore</oc:name>
<oc:id>9C80BF6B-7BDE-4295-E7D9-695845A44846</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/8FC09711-CAD6-41EB-7B6E-B21B8133912A">
<oc:name>Elvan Cobb</oc:name>
<oc:id>8FC09711-CAD6-41EB-7B6E-B21B8133912A</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/3BDBEC0E-8D0F-484F-DBD9-985F3D0915F6">
<oc:name>Peter Cobb</oc:name>
<oc:id>3BDBEC0E-8D0F-484F-DBD9-985F3D0915F6</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/6CCB342E-E849-4909-C990-83EEC4AF3E69">
<oc:name>Marie Hopwood</oc:name>
<oc:id>6CCB342E-E849-4909-C990-83EEC4AF3E69</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/9011B065-36D7-464B-BFDB-D8467B9F26B3">
<oc:name>Jonathan Schnereger</oc:name>
<oc:id>9011B065-36D7-464B-BFDB-D8467B9F26B3</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/55A791AF-2656-4A0F-3806-EDF875C19418">
<oc:name>Brian Bingham</oc:name>
<oc:id>55A791AF-2656-4A0F-3806-EDF875C19418</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/0FB25CA9-3EEA-4DE5-D6E6-ABA671E38FC3">
<oc:name>Catherine P. Foster</oc:name>
<oc:id>0FB25CA9-3EEA-4DE5-D6E6-ABA671E38FC3</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/30775907-F98A-474C-D3BD-8559F0BD8385">
<oc:name>Chuck Easton</oc:name>
<oc:id>30775907-F98A-474C-D3BD-8559F0BD8385</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/F8ACECD0-3EB8-4404-23FE-DA307065B38F">
<oc:name>Katie Smith</oc:name>
<oc:id>F8ACECD0-3EB8-4404-23FE-DA307065B38F</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/E114A491-A716-4B47-0082-017A1CE7C04D">
<oc:name>Elif </oc:name>
<oc:id>E114A491-A716-4B47-0082-017A1CE7C04D</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/F3DC7399-F377-4720-5290-D11224FCF401">
<oc:name>Sibel Torpil</oc:name>
<oc:id>F3DC7399-F377-4720-5290-D11224FCF401</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/76FDEBE0-48C2-4410-7E52-53A6472DE096">
<oc:name>Phil Jones</oc:name>
<oc:id>76FDEBE0-48C2-4410-7E52-53A6472DE096</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/A9A8AAB4-BEF0-4BAE-5A98-1B1AB9FF5A61">
<oc:name>Greer Rabicca</oc:name>
<oc:id>A9A8AAB4-BEF0-4BAE-5A98-1B1AB9FF5A61</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/873DC754-1B25-440A-C89C-8E78CC4D9FD0">
<oc:name>Tuba Gençler</oc:name>
<oc:id>873DC754-1B25-440A-C89C-8E78CC4D9FD0</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/FC579E65-1316-4AFA-AAB7-CCF1B09EB3A0">
<oc:name>Bekir Gürdil</oc:name>
<oc:id>FC579E65-1316-4AFA-AAB7-CCF1B09EB3A0</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/E3FCC39F-0303-4BFE-90C9-63C7CFC38805">
<oc:name>Jon Vidar</oc:name>
<oc:id>E3FCC39F-0303-4BFE-90C9-63C7CFC38805</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/A8E84AE9-D163-4922-7C31-2A3FE499DC30">
<oc:name>Nick Luby</oc:name>
<oc:id>A8E84AE9-D163-4922-7C31-2A3FE499DC30</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/AECA1347-0F4B-4AF7-40E4-70A663ED1FF7">
<oc:name>Drew McGaraghan</oc:name>
<oc:id>AECA1347-0F4B-4AF7-40E4-70A663ED1FF7</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/53B3E0B6-1528-45AB-B39D-A7858C040BFF">
<oc:name>Jason Kennedy</oc:name>
<oc:id>53B3E0B6-1528-45AB-B39D-A7858C040BFF</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/C2C809FB-E548-4CCB-E658-07444E04CA98">
<oc:name>Emily Ogle</oc:name>
<oc:id>C2C809FB-E548-4CCB-E658-07444E04CA98</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/88386EC2-4ED1-4D79-8487-D0C0E0E2A6EC">
<oc:name>Melissa Eppihimer</oc:name>
<oc:id>88386EC2-4ED1-4D79-8487-D0C0E0E2A6EC</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/4D19FB73-8A58-4A13-5B95-1ECCFA313E45">
<oc:name>Utarp Team</oc:name>
<oc:id>4D19FB73-8A58-4A13-5B95-1ECCFA313E45</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/509DF0ED-6D90-40C8-99F5-140E568167A3">
<oc:name>Elizabeth Clark</oc:name>
<oc:id>509DF0ED-6D90-40C8-99F5-140E568167A3</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/1A016E4D-75C5-4AA5-127B-DD3338D946BD">
<oc:name>Chris Moon</oc:name>
<oc:id>1A016E4D-75C5-4AA5-127B-DD3338D946BD</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/7CA12E71-DC1E-48B0-9F3A-A6ED26B23CB3">
<oc:name>Mila Hover</oc:name>
<oc:id>7CA12E71-DC1E-48B0-9F3A-A6ED26B23CB3</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/4266DF70-2CDD-4985-E280-EA55CDBCB38F">
<oc:name>Filiz I.</oc:name>
<oc:id>4266DF70-2CDD-4985-E280-EA55CDBCB38F</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/428D6551-406E-45E9-D98A-B775C0C81DF8">
<oc:name>Diana Backus</oc:name>
<oc:id>428D6551-406E-45E9-D98A-B775C0C81DF8</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/24397670-1776-4769-47BA-B192CF043B88">
<oc:name>Jennifer Henecke</oc:name>
<oc:id>24397670-1776-4769-47BA-B192CF043B88</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/0D69BBAA-1EAD-4405-1AC3-F49F528136D5">
<oc:name>Kristen Butler</oc:name>
<oc:id>0D69BBAA-1EAD-4405-1AC3-F49F528136D5</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/A1D8C2AF-BBF1-4BDE-A01F-06B9069AA53D">
<oc:name>Eser Karaca</oc:name>
<oc:id>A1D8C2AF-BBF1-4BDE-A01F-06B9069AA53D</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/18218BEF-3C7A-4BAB-4D9E-58C2670489FB">
<oc:name>Marco Baldi</oc:name>
<oc:id>18218BEF-3C7A-4BAB-4D9E-58C2670489FB</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/D105DD58-B094-4E0F-9D65-12FDDC5A6DDD">
<oc:name>Nergiz Nazlar</oc:name>
<oc:id>D105DD58-B094-4E0F-9D65-12FDDC5A6DDD</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/F9FF938F-263E-4E40-01B1-ED7C460EFB88">
<oc:name>Greer Rabiega</oc:name>
<oc:id>F9FF938F-263E-4E40-01B1-ED7C460EFB88</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/A248C239-4CF0-48B8-A683-ECCC0AE2D664">
<oc:name>My Ra</oc:name>
<oc:id>A248C239-4CF0-48B8-A683-ECCC0AE2D664</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
<oc:link href="http://opencontext.org/persons/DFBA262C-FB4B-4D51-1F41-3C20475288DC">
<oc:name>Rémi Berthon</oc:name>
<oc:id>DFBA262C-FB4B-4D51-1F41-3C20475288DC</oc:id>
<oc:relation>Project Participant</oc:relation>
</oc:link>
</oc:person_links>
</arch:links>
<arch:notes>
<arch:note type="short_des">
<arch:string>The Upper Tigris Archaeological Research Project’s Excavations at Kenan Tepe in Southeastern Turkey</arch:string>
</arch:note>
<arch:note type="long_des">
<arch:string><div class="bodyText">
<h3> The Upper Tigris Archaeological Research Project Information System (UIS)</h3>
<p>
The following pages contain a complete record of the data accumulated during the Upper Tigris Archaeological Research Project’s excavations at the archaeological site of Kenan Tepe in southeastern Turkey. This includes all context information, photographs, day plans, journals, drawings and analyses generated over the course of ten years of field work.</p>
<h3> The Archaeological Site of Kenan Tepe</h3>
<p>
Kenan Tepe is a multi-period archaeological site located on the north bank of the Tigris River 18 kilometers west of the Tigris-Batman confluence and 12 kilometers east of the modern town of Bismil in Diyarbakır Province, southeastern Turkey. Archaeological research conducted between 2000 and 2011 indicates that Kenan Tepe was occupied during five broad time periods. The earliest remains unearthed at Kenan Tepe belong to the Ubaid period. These remains are concentrated on the eastern slopes of Kenan Tepe’s main mound (Area D). Carbon samples taken from outside three Ubaid structures in trenches D5, D8 and E2 yielded 2-sigma calibrated dates ranging around 4650 BCE, while seriation analysis suggests that Ubaid occupation terminates in the Terminal Ubaid period at approximately 4300 BCE (Parker and Kennedy 2010). Remains dating to the Late Chalcolithic period have been discovered in abundance in the easternmost area of Kenan Tepe’s lower town (Area F) and in several soundings near the high mound (Parker et al. 2003; 2006). Carbon-14 analyses from Late Chalcolithic contexts have yielded dates in the late LC 3 or early LC 4 period (between ca. 3600 and 3500 BCE) and the LC 5 period (ca. 3100 BCE [Creekmore 2007; Parker et al. 2006]). Four more carbon dates from fortification/retaining walls on the high mound show that occupation continued through the Late Chalcolithic to Early Bronze Age transition (ca. 3000 BCE [Parker et al. 2006; Parker and Dodd 2005]). An analysis of the ceramics from various areas at Kenan Tepe combined with two carbon dates confirms that occupation at the site probably continued at least through the first half of the Early Bronze Age. Middle Bronze Age remains have been recovered on the eastern, western and northern slopes of the high mound (Areas A, B, C). Carbon-14 analysis places these remains around 1800 BCE (Parker et al. 2003; Parker and Dodd 2003). Kenan Tepe was again occupied in the Early Iron Age as evidenced by the presence of Early Iron Age Corrugated Wares dating between ca. 1050 and 900 B.C. (Parker et al. 2004. Also see Parker 2003). </p>
<h3> Geomorphological Description of the Site</h3>
<p>
Measuring approximately 4.5 hectares in total size, Kenan Tepe is composed of a 32-meter high main mound and a lower town stretching off to the northeast of the main mound. The site is situated on a Pleistocene terrace composed of interspersed siltstones and sedimentary conglomerates close to the geographic center of the Upper Tigris River Valley. Virgin soil, which was reached in several trenches in the eastern portion of Kenan Tepe’s lower town, is 23.7m above the current level of the Tigris River. The top of Kenan Tepe’s main mound is 56.3m above the Tigris and rises 32.6m above the ground surface at the far eastern end of Kenan Tepe’s lower town. Kenan Tepe’s main datum, which is located at the top of the main mound (in Area A), is 37 49 50.11634 N by 40 48 47.59917 E and is 603.724 m in elevation relative to WGS84.</p>
<p>Kenan Tepe presently overlooks a broad bend in the Tigris River. This area, known today as the Osman Merçalı, contains a number of gravel bars, channel islands and meander scars suggesting that the reach of the river was likely much broader in antiquity. Kenan Tepe lies on the cutbank side of a current sharp meander loop in the Tigris River: at Kenan Tepe the Tigris River turns abruptly from ca. 335° north/northwest to ca. 53° east in a stretch of only 0.6 kilometers. The energy created by this abrupt river course change has incised a deep channel close to the north bank of the river undercutting part of the eastern boundaries of the site. This being the case, it is impossible to determine Kenan Tepe’s total area in antiquity. However, visible mounding extends for ca. 225m from southeast to northwest and ca. 350m from southwest to northeast (Parker et al. 2006).</p>
<h3> History of the Excavation</h3>
<p>
Excavations at Kenan Tepe took place under the aegis of the Upper Tigris Archaeological Research Project (UTARP). The project’s director (Bradley Parker) founded UTARP in the winter of 1998 as a multi-year survey and excavation project in an area of the Tigris River Valley that will be flooded by the construction of two dams on the river north of the Iraqi border. This area was targeted based on previous reconnaissance surveys that had identified the rich but undocumented cultural heritage of the Upper Tigris River region (Algaze 1989; Kolars and Mitchell 1992). UTARP began with intensive surveys at three sites: Boztepe, Talavaş Tepe and Kenan Tepe. Exploratory excavations were carried out at the site of Boztepe (Parker and Creekmore 2002; Parker Creekmore and Easton 2001a, 2001b). Then in 2000, the focus of research shifted to the larger multi-period mound of Kenan Tepe (Parker et al. 2002a, 2002b).</p>
<p>UTARP team members carried out archaeological field research at Kenan Tepe from 2000 to 2008. Over the course of these nine seasons, which included six seasons of excavation (2000, 2001, 2002, 2004, 2005 and 2007) and three study seasons (2003, 2006 and 2008), the team extensively explored various aspects of Kenan Tepe’s occupational history by excavating 68 trenches of varying sizes and depths (including 1 by 1, 2 by 2 and 3 by 3 meter soundings, 5 by 5, 3 by 10, 5 by 10 and 10 by 10 meter trenches). Further study of the material remains recovered from the site continued for a number of years after the ten-year anniversary of the project as the director, staff and specialists prepared the final publications of the excavations. </p>
<h3> The Kenan Tepe Information System</h3>
<p>
At the founding of UTARP, the director prioritized the comprehensive digital recording of the project as a model of information sharing in archaeology. Since the very first season of excavation at Kenan Tepe in 2000, UTARP team members have meticulously digitized all of their excavation data, usually on the same day they were collected. All of the photographs of loci and objects were captured with digital cameras. Each evening in the field dighouse, team members entered their paper forms into a database, typed up their hand-written journal entries, and scanned their hand-drawn daily trench plans. Specialists also collected their detailed data digitally and merged these with the central excavation database. The data were interconnected using a tree of related tables in order to organize the individual pieces of information about each stage of excavation and analysis (Parker et al. 2003). The results are presented here as a complete digital record of UTARP’s excavations at Kenan Tepe.</p>
<h3>Archaeological Research Program</h3>
<p>
The research agenda at Kenan Tepe was divided into two phases. Because so little was known about the site and the region when this research began, the goal of the first phase of research at Kenan Tepe (2000-2003) was to define aspects of the archaeological record recoverable at Kenan Tepe that might be applicable to the region as a whole and to characterize aspects of the archaeological record that could aid us in later problem-oriented research. To reach this goal the first four field seasons were meant to define the ceramic chronology of the site and the region, to precisely determine the nature and locational focus of settlement at Kenan Tepe during each period it was occupied, and to quickly publish our data in preliminary reports from each field season. </p>
<p>During the second phase of the project (2004-2008), UTARP team members focused on broad theoretical issues that could be addressed through further excavation at the site. Bradley Parker spearheaded research on the nature of society in the upper Tigris River region during the Ubaid period, addressing such questions as how the advancements in subsistence production achieved during the preceding periods was applied during the Ubaid period and how those advances affected community organization and cohesion (Parker 2010; 2011; Parker and Kennedy 2010). Catherine Foster led research into Kenan Tepe’s Late Chalcolithic remains addressing the issue of if, or how, the Uruk expansion affected local Late Chalcolithic communities on the northern fringes of the Mesopotamian periphery (Foster 2009; 2011). And finally, Lynn Dodd directed research on interregional interaction during the Middle Bronze Age focusing particularly on ceramic production and metallurgy (Parker and Dodd 2003). </p>
<h3>Gazetteer of UTARP Publications</h3>
<p> The director and staff of UTARP felt a responsibility to make the results of our research available to the wider archaeological community in a timely manner. We approached this goal from two directions. First, we committed to publishing preliminary reports from each of our field seasons (preferably in English and Turkish), and achieved this through the collaborative effort by various UTARP team members. Second, we endeavored to make analyses of the emerging data available as quickly as possible. Synthetic research that either integrates UTARP data into larger studies or focuses on specific categories of data was more difficult to produce, nevertheless a number of synthetic articles and book chapters have appeared in a variety of venues. Many of the reports and other studies are available on the UTARP website at http://www.utarp.org/. </p>
<p>A number of detailed studies of this data are still under way. Due to the diachronic and preliminary nature of UTARP’s past publications, there will obviously be some overlap in the information published in different articles, and our conclusions have evolved as we collected and analyzed additional data each season. The data and analysis that appear in our final reports should be seen as the last and most complete word on the topic. </p>
<p>The following is a list of publications resulting from UTARP’s excavations at Kenan Tepe. The list is broken down into Reports, Dissertations and Synthetic Studies and is presented chronologically from newest to oldest. Publications that appeared in the same year are listed alphabetically. </p>
<div resource="http://opencontext.org/subjects/5D6B6454-017A-43C1-9F15-6DFE36C3558F" >
<h3><span style='text-decoration:underline;'>Reports:</span></h3>
<div id="pub-2012-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2012-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:Article" resource="#pub-2012-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker B. J. </p>
<div>
<div class="pub-date">2012 forthcoming</div>
<div class="ref-title-pub">Yukarı Dicle Arkeolojik Araştırma Projesi (YDAAP/UTARP): Kenan Tepe’de On Yıllık Araştırmalara Kısaca Bir Bakış (The Upper Tigris Archaeological Research Project [UTARP]: A Brief Overview of a Decade of Research at Kenan Tepe). In <span class="collection-title">Ilısu ve Karkamış Baraj Gölleri Altında Kalacak Arkoelojiik ve Kültür Varlıklarını Kurtarma Projesi 2000-2008 Yılı Çalişmaları (Salvage Project of the Archaeological Heritage of the Ilısu and Carchemish Dam Reservoirs 2000-2008)</span>. Ankara: Middle East Technical University.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
</div>
</div>
</div>
<div id="pub-2011-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2011-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:Article" resource="#pub-2011-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B.J. and L. S. Dodd, with Contributions from A. Creekmore, R. Paine, E. Moseman and M. Marley </p>
<div>
<div class="pub-date">2011</div>
<div class="ref-title-pub">Yukarı Dicle Arkeolojik Araştırma Projesi (UTARP): 2002 Yılı Kenan Tepe Kazilarina Genal Bakış (The Upper Tigris Archaeological Reseach Project [UTARP]: An Overview of the 2002 Excavations at Kenan Tepe). In <span class="collection-title">Ilısu ve Karkamış Baraj Gölleri Altında Kalacak Arkoelojiik ve Kültür Varlıklarını Kurtarma Projesi 2002 Yılı Çalişmaları (Salvage Project of the Archaeological Heritage of the Ilısu and Carchemish Dam Reservoirs Activities in 2002)</span>, edited by N. Tuna and O. Doonan, pp. 703-756. Ankara: Middle East Technical University.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="dcterms:hasVersion" href="http://content.lib.utah.edu/cdm/ref/collection/uspace/id/5873">Open Access</a>]
</div>
</div>
</div>
<div id="pub-2009-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2009-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:Article" resource="#pub-2009-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J., C. P. Foster, K. Nicoll, J. R. Kennedy, P. Graham, A. Smith, D. E. Hopwood, M. Hopwood, K. Butler, E. Healey, M. B. Uzel, and R. Jensen</p>
<div>
<div class="pub-date">2009</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP): A Preliminary Report from the 2007 and 2008 Field Seasons at Kenan Tepe. <span class="collection-title">Anatolica</span> 35:85-152.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="bibo:uri" href="http://poj.peeters-leuven.be/content.php?url=article&amp;id=2038073">Article</a>]
[<a rel="dcterms:identifier" href="http://dx.doi.org/10.2143/ANA.35.0.2038073">DOI</a>]
</div>
</div>
</div>
<div id="pub-2008-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2008-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:Article" resource="#pub-2008-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J., C. P. Foster, J. Henecke, M. Hopwood, D. Hopwood, A. Creekmore, A. Demirergi, and M. Eppihimer </p>
<div>
<div class="pub-date">2008</div>
<div class="ref-title-pub">A Preliminary Report from the 2005 and 2006 Field Seasons at Kenan Tepe. <span class="collection-title">Anatolica</span> 34:103-176.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="bibo:uri" href="http://poj.peeters-leuven.be/content.php?url=article&amp;id=2031566">Article</a>]
[<a rel="dcterms:identifier" href="http://dx.doi.org/10.2143/ANA.34.0.2031566">DOI</a>]
</div>
</div>
</div>
<div id="pub-2007-2" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2007-2" ></a>
<div typeof="dcterms:BibliographicResource bibo:Article" resource="#pub-2007-2">
<div property="dcterms:bibliographicCitation">
<p class="authors">Creekmore, A. </p>
<div>
<div class="pub-date">2007</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP): A Summary and Synthesis of the Late Chalcolithic and Early Bronze Age Remains from the First Three Seasons at Kenan Tepe. <span class="collection-title">Anatolica</span> 33:75-128.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="bibo:uri" href="http://poj.peeters-leuven.be/content.php?url=article&amp;id=2021755">Article</a>]
[<a rel="dcterms:identifier" href="http://dx.doi.org/10.2143/ANA.33.0.2021755">DOI</a>]
</div>
</div>
</div>
<div id="pub-2007-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2007-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-2007-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J.</p>
<div>
<div class="pub-date">2007</div>
<div class="ref-title-pub">Yukarı Dicle Arkeolojik Araştirma Projesi (UTARP): 2005 Yili Kenan Tepe Arazi Çalışması Raporu. In <span class="collection-title">28. Kazi Sonuçları Toplantısı</span>, edited by in B. Koral and H. Dönmez, pp. 323-340. Ankara: Kultur ve Turizm Bakanlığı Dosimm Başimevi.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
</div>
</div>
</div>
<div id="pub-2006-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2006-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:Article" resource="#pub-2006-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J., L. Dodd, A. Creekmore, E. Healey, and C. Painter</p>
<div>
<div class="pub-date">2006</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP): A Preliminary Report from the 2003 and 2004 Field Seasons. <span class="collection-title">Anatolica </span>32:71-151.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="bibo:uri" href="http://poj.peeters-leuven.be/content.php?url=article&amp;id=2012554">Article</a>]
[<a rel="dcterms:identifier" href="http://dx.doi.org/10.2143/ANA.32.0.2012554">DOI</a>]
</div>
</div>
</div>
<div id="pub-2005-2" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2005-2" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-2005-2">
<div property="dcterms:bibliographicCitation">
<p class="authors">Dodd, L. S., B. J. Parker, A. Creekmore, and E. Healey </p>
<div>
<div class="pub-date">2005</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP): Excavations at Kenan Tepe in 2003. In <span class="collection-title">26. Kazı Sonuçları Toplantısı</span>, Pp. 357-370. Ankara: Kültür Bakanlığı Anıtlar ve Müzeler Genel Müdürlüğü.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
</div>
</div>
</div>
<div id="pub-2005-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2005-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:Article" resource="#pub-2005-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J., and L. S. Dodd </p>
<div>
<div class="pub-date">2005</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP): A Preliminary Report from the 2002 Field Season. <span class="collection-title">Anatolica</span> 31:69-110.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="bibo:uri" href="http://poj.peeters-leuven.be/content.php?url=article&amp;id=2011752">Article</a>]
[<a rel="dcterms:identifier" href="http://dx.doi.org/10.2143/ANA.31.0.2011752">DOI</a>]
</div>
</div>
</div>
<div id="pub-2004-2" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2004-2" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-2004-2">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J., and L. S. Dodd</p>
<div>
<div class="pub-date">2004</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP): A Preliminary Report from the 2002 Excavations at Kenan Tepe. In <span class="collection-title">25. Kazı Sonuçları Toplantısı</span>, pp. 471-482. Ankara: Kültür Bakanlığı Anıtlar ve Müzeler Genal Müdürlüğü.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
</div>
</div>
</div>
<div id="pub-2004-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2004-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-2004-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J., A. Creekmore, L. S. Dodd, E. Moseman, C. Meegan, and P. Cobb</p>
<div>
<div class="pub-date">2004</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP): A Preliminary Synthesis of the Cultural History of Kenan Tepe. In <span class="collection-title">Salvage Project of the Archaeological Heritage of the Ilısu and Carchemish Dam Reservoirs Activities in 2001</span>, edited by N. Tuna, J. Öztürk, and J. Velibeyoğlu, pp. 547-602. Ankara: Middle East Technical University.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="dcterms:hasVersion" href="http://content.lib.utah.edu/cdm/ref/collection/uspace/id/5661">Open Access</a>]
</div>
</div>
</div>
<div id="pub-2003-2" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2003-2" ></a>
<div typeof="dcterms:BibliographicResource bibo:Article" resource="#pub-2003-2">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J., A. Creekmore, L. S. Dodd, R. Paine, C. Meegan, E. Moseman, M. Abraham, and P. Cobb </p>
<div>
<div class="pub-date">2003</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP): A Preliminary Report from the 2001 Field Season. <span class="collection-title">Anatolica </span>29:103-174.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="bibo:uri" href="http://poj.peeters-leuven.be/content.php?url=article&amp;id=2015514">Article</a>]
[<a rel="dcterms:identifier" href="http://dx.doi.org/10.2143/ANA.29.0.2015514">DOI</a>]
</div>
</div>
</div>
<div id="pub-2003-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2003-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:Article" resource="#pub-2003-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J., A. Creekmore, L. S. Dodd, R. Paine, and M. Abraham</p>
<div>
<div class="pub-date">2003</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP): An Overview of Archaeological Research Conducted at Kenan Tepe during the 2001 Field Season. In <span class="collection-title">24. Kazı Sonuçları Toplantısı</span>, pp. 1-20. Ankara: T.C. Ankara, T.C. Kültür Bakanlığı Anıtlar ve Müzeler Genel Müdürlügü.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
</div>
</div>
</div>
<div id="pub-2002-3" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2002-3" ></a>
<div typeof="dcterms:BibliographicResource bibo:Article" resource="#pub-2002-3">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J., and A. Creekmore </p>
<div>
<div class="pub-date">2002</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP): A Final Report from the 1999 Field Season. <span class="collection-title">Anatolian Studies </span>52:19-74.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="dcterms:hasVersion" href="http://content.lib.utah.edu/cdm/ref/collection/uspace/id/5963">Open Access</a>]
[<a rel="rdfs:isDefinedBy" href="http://www.jstor.org/stable/3643077">JSTOR</a>]
[<a rel="dcterms:isPartOf" href="http://www.jstor.org/stable/i287459">Issue</a>]
</div>
</div>
</div>
<div id="pub-2002-2" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2002-2" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-2002-2">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J., A. Creekmore, E. Moseman, and R. Sasaki </p>
<div>
<div class="pub-date">2002</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP): Preliminary Report from the Year 2000 Excavations at Kenan Tepe. In <span class="collection-title">Salvage Project of the Archaeological Heritage of the Ilısu and Carchemish Dam Reservoirs. Activities in 2000</span>, edited by N. Tuna, J. Öztürk, and J. Velibeyoğlu, pp. 613-643. Ankara: Middle East Technical University.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="dcterms:hasVersion" href="http://content.lib.utah.edu/cdm/ref/collection/uspace/id/5698">Open Access</a>]
</div>
</div>
</div>
<div id="pub-2002-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2002-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:Article" resource="#pub-2002-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J., A. Creekmore, L. S. Dodd, E. Moseman, M. Abraham, and J. Schnereger </p>
<div>
<div class="pub-date">2002</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP): Year 2000 Excavations at Kenan Tepe. In <span class="collection-title">23. Kazı Sonuçları Toplantısı. </span>, pp. 435-444. Ankara: Kültür Bakanlığı Millî Kütüphane Başımevi.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
</div>
</div>
</div>
<div id="pub-2001-2" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2001-2" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-2001-2">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J., A. Creekmore, and C. Easton </p>
<div>
<div class="pub-date">2001a</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP) Excavations and Survey at Boztepe and Intensive Survey at Talavaş Tepe, 1999: A Preliminary Report. In <span class="collection-title">Salvage Project of the Archaeological Heritage of the Ilısu and Carchemish Dam Reservoirs Activities in 1999</span>, edited by N. Tuna, J. Öztürk, and J. Velibeyoğlu, pp. 565-591. Ankara: Middle East Technical University.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="dcterms:hasVersion" href="http://content.lib.utah.edu/cdm/ref/collection/uspace/id/5659">Open Access</a>]
</div>
</div>
</div>
<div id="pub-2001-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-2001-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:Article" resource="#pub-2001-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J., A. Creekmore, and C. Easton </p>
<div>
<div class="pub-date">2001b</div>
<div class="ref-title-pub">The Upper Tigris Archaeological Research Project (UTARP): 1999 Excavations at Boztepe and Surveys at Talavaş Tepe. In <span class="collection-title">18.Araştirma Sonuçları Toplantısı</span>, pp. 23-36. Ankara: T.C. Kültür Bakanlığı Anıtlar ve Müzeler Genal Müdürlüğü.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
</div>
</div>
</div>
<h3><span style='text-decoration:underline;'>Dissertations:</span></h3>
<div id="pub-d-2011-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-d-2011-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:Thesis" resource="#pub-d-2011-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Graham, Philip J. </p>
<div>
<div class="pub-date">2011</div>
<div class="ref-title-pub"><span class="collection-title">Ubaid Agriculture at Kenan Tepe, Southeastern Turkey.</span> Ph.D. dissertation, University of Connecticut. Ann Arbor: ProQuest/UMI.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="rdfs:isDefinedBy" href="http://digitalcommons.uconn.edu/dissertations/AAI3492058/">Abstract</a>]
</div>
</div>
</div>
<div id="pub-d-2009-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-d-2009-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:Thesis" resource="#pub-d-2009-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Foster, C. P. </p>
<div>
<div class="pub-date">2009</div>
<div class="ref-title-pub"><span class="collection-title">Household Archaeology and the Uruk Phenomenon: A Case Study from Kenan Tepe, Turkey.</span> Unpublished doctoral dissertation, University of California, Berkeley.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="dcterms:hasVersion" href="http://www.academia.edu/257270/Household_Archaeology_and_the_Uruk_Phenomenon_A_Case_Study_from_Kenan_Tepe_Turkey">Open Access</a>]
[<a rel="rdfs:isDefinedBy" href="http://gradworks.umi.com/33/83/3383066.html">Abstract</a>]
</div>
</div>
</div>
<h3><span style='text-decoration:underline;'>Synthetic Studies:</span></h3>
<div id="pub-s-2012-4" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-s-2012-4" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-s-2012-4">
<div property="dcterms:bibliographicCitation">
<p class="authors">Dodd, L.S. </p>
<div>
<div class="pub-date">2012</div>
<div class="ref-title-pub">Filling a Niche: Settlement Expansion and Innovation in the Upper Tigris River Valley during the Middle Bronze Age. In <span class="collection-title">Looking North: The Socio-economic Dynamics of the Northern Mesopotamian and Anatolian Regions during the Late Third and Early Second Millennium BC</span>, edited by N. Laneri, P. Pfälzner S. Valentini. Pp. 213-228. Wiesbaden: Harrassowitz Verlag.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
</div>
</div>
</div>
<div id="pub-s-2012-3" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-s-2012-3" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-s-2012-3">
<div property="dcterms:bibliographicCitation">
<p class="authors">Foster, C.P. </p>
<div>
<div class="pub-date">2012 forthcoming</div>
<div class="ref-title-pub">The Uruk Phenomenon: A View from the Household. In <span class="collection-title">New Perspectives in Household Archaeology</span>, edited by B.J. Parker and C.P. Foster. Winona Lake: Eisenbrauns.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
</div>
</div>
</div>
<div id="pub-s-2012-2" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-s-2012-2" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-s-2012-2">
<div property="dcterms:bibliographicCitation">
<p class="authors">Graham, P. and Alexia Smith</p>
<div>
<div class="pub-date">2012 forthcoming</div>
<div class="ref-title-pub">Integrating Household Archaeology and Archaeobotany: A Case Study from Ubaid Kenan Tepe, Southeastern Anatolia. In <span class="collection-title">New Perspectives in Household Archaeology</span>, edited by B.J. Parker and C.P. Foster. Winona Lake: Eisenbrauns.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
</div>
</div>
</div>
<div id="pub-s-2012-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-s-2012-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-s-2012-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J. </p>
<div>
<div class="pub-date">2012 forthcoming</div>
<div class="ref-title-pub">Domestic Production and Subsistence in an Ubaid Household in Upper Mesopotamia. In <span class="collection-title">New Perspectives in Household Archaeology</span>, edited by B.J. Parker and C.P. Foster. Winona Lake: Eisenbrauns.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
</div>
</div>
</div>
<div id="pub-s-2011-1" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-s-2011-1" ></a>
<div typeof="dcterms:BibliographicResource bibo:Article" resource="#pub-s-2011-1">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J. </p>
<div>
<div class="pub-date">2011</div>
<div class="ref-title-pub">Bread Ovens, Social Networks and Gendered Space: An Ethnoarchaeological Study of <span class="collection-title">Tandır</span> Ovens in Southeastern Anatolia. <span class="collection-title">American Antiquity </span>76(4):603-627.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="bibo:uri" href="http://saa.metapress.com/content/u7737111318325p8/">Article</a>]
[<a rel="dcterms:identifier" href="http://dx.doi.org/10.7183/0002-7316.76.4.603">DOI</a>]
</div>
</div>
</div>
<div id="pub-s-2010-5" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-s-2010-5" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-s-2010-5">
<div property="dcterms:bibliographicCitation">
<p class="authors">Berthon, R. </p>
<div>
<div class="pub-date">2010</div>
<div class="ref-title-pub">Animal Exploitation in the Upper Tigris River Valley during the Middle Bronze Age: A First Comparison of Hirbemerdon Tepe and Kenan Tepe / Yukarı Dicle Vadisi'nde Orta Tunç Çağı'nda Hayvan Kullanımı: Hirbemerdon Tepe ve Kenan Tepe'nin Karşılaştırması. In <span class="collection-title">Studies in Southeastern Anatolia Graduate Symposium / Güney Doğu Anadolu Araştırmaları Sempozyumu</span>, edited by D. B. Erciyas. Istanbul, Ege Yayınları.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="dcterms:isPartOf" href="http://www.worldcat.org/oclc/651093185">WorldCat</a>]
</div>
</div>
</div>
<div id="pub-s-2010-4" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-s-2010-4" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-s-2010-4">
<div property="dcterms:bibliographicCitation">
<p class="authors">Healey, E. </p>
<div>
<div class="pub-date">2010</div>
<div class="ref-title-pub">Ubaid Lithics Revised: Their Significance for the Interpretation of Ubaid Society. In <span class="collection-title">Beyond the Ubaid: Transformation and Integration in the Late Prehistoric Societies of the Middle East, Studies in Ancient Oriental Civilization 63</span>, edited by R. A. Carter and G. Philip, pp. 181-200. Chicago: The Oriental Institute.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="dcterms:isPartOf" href="http://www.worldcat.org/oclc/646401242">WorldCat</a>]
</div>
</div>
</div>
<div id="pub-s-2010-3" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-s-2010-3" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-s-2010-3">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J. </p>
<div>
<div class="pub-date">2010</div>
<div class="ref-title-pub">Networks of Interregional Interaction during Mesopotamia's Ubaid Period: A Study Sponsored by the Curtiss T. and Mary G. Brennan Foundation. In <span class="collection-title">Beyond the Ubaid: Transformation and Integration in the Late Prehistoric Societies of the Middle East, Studies in Ancient Oriental Civilization 63</span>, edited by R. A. Carter and G. Philip, pp. 339-360. Chicago: The Oriental Institute.</div>
<div class="ref-end"></div>
</div>
</div>
<div class="ref-links">
[<a rel="dcterms:isPartOf" href="http://www.worldcat.org/oclc/646401242">WorldCat</a>]
</div>
</div>
</div>
<div id="pub-s-2010-2" rel="dcterms:isReferencedBy" class="biblio-item">
<a style="display:none;" href="#pub-s-2010-2" ></a>
<div typeof="dcterms:BibliographicResource bibo:BookSection" resource="#pub-s-2010-2">
<div property="dcterms:bibliographicCitation">
<p class="authors">Parker, B. J. </p>
<div>
<div class="pub-date">2010</div>
<div class="ref-title-pub">Setting the Stage for a More Productive Ethnoarchaeology. In <span class="collection-title">Proceedings of the 6th International Congress of the Archaeology of the Ancient Near East, Rome, May 5th-10th, 2008</span>, edited by P. Matthiae, pp. 507-519. Roma: 'La Sapeinza'.</div>
<div class="ref-end"></div>
</div>