-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.xml
1819 lines (1797 loc) · 75 KB
/
module.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"?>
<!--@POSTPROC: ./proc/post.sh-->
<!--SRID: 32648-->
<module>
<rels>
<!--Stratum/Feature-to-Locus relationship(s)-->
<RelationshipElement name="Stratum Feature - Locus" type="hierarchical">
<description>A 1-to-n relationship between the parent and its children, respectively.</description>
<parent>{includes}</parent>
<child>{is_included_in}</child>
</RelationshipElement>
<!--Stratum/Feature-to-Stratum/Feature relationship(s)-->
<!--IMPORTANT: These must not contain dashes!-->
<RelationshipElement name="{arbitrarily_separated_from}" type="bidirectional">
<description>When two or more locus codes have been assigned to what is ultimately determined to be the same locus</description>
</RelationshipElement>
<RelationshipElement name="{bonded_to}" type="bidirectional">
<description>Implements a bonded to for loci</description>
</RelationshipElement>
<RelationshipElement name="{broadly_contemporary_with}" type="bidirectional">
<description>Loci suspected to be contemporary but no direct physical relationship or evidence (i.e. adjacent buildings)</description>
</RelationshipElement>
<RelationshipElement name="{butts}" type="hierarchical">
<description>Implements a Butts-Butted by for loci.</description>
<parent>{butts}</parent>
<child>{butted_by}</child>
</RelationshipElement>
<RelationshipElement name="{covers}" type="hierarchical">
<description>Implements a Butts-Butted by for loci.</description>
<parent>{covers}</parent>
<child>{covered_by}</child>
</RelationshipElement>
<RelationshipElement name="{cuts}" type="hierarchical">
<description>Implements a cuts-cutby for loci.</description>
<parent>{cuts}</parent>
<child>{cut_by}</child>
</RelationshipElement>
<RelationshipElement name="{earlierlater}" type="hierarchical">
<description>Implements a Stratigraphically Immediately Earlier-Later for loci.</description>
<parent>{immediately_earlier_than}</parent>
<child>{immediately_later_than}</child>
</RelationshipElement>
<RelationshipElement name="{fill_of}" type="hierarchical">
<description>Implements a fillof-filledwith for loci.</description>
<parent>{fill_of}</parent>
<child>{filled_with}</child>
</RelationshipElement>
<RelationshipElement name="{precisely_contemporary_with}" type="bidirectional">
<description>Loci unequivocally contemporary</description>
</RelationshipElement>
<RelationshipElement name="ParentChild" type="hierarchical">
<description></description>
<parent>{parent_of}</parent>
<child>{child_of}</child>
</RelationshipElement>
</rels>
<User f="nodata nolabel">
<User_List>
<Users t="dropdown" f="user"/>
<Device_Code t="dropdown" f="persist" vp="Locus/Vars/Device_Code"/>
<Login t="button" l="Control"/>
<Module_Guide t="button" l="User/Help"/>
</User_List>
<Help>
<Help t="webview" f="nolabel"/>
</Help>
</User>
<Control f="nodata">
<Site f="noscroll">
<New_Site_Name f="notnull"/>
<Year_of_Campaign f="notnull" b="decimal"/>
<GPS_Diagnostics t="gpsdiag"/>
<Create_New_Site t="button" l="Site"/>
<Choose_an_Existing_Site t="list" e="Site"/>
</Site>
<Next_IDs>
<autonum/>
</Next_IDs>
<search>
<!--The semantics of this element has been changed with @POSTPROC. A
Select_User dropdown has been placed beside the Entity_List.
This entails changes to ui_schema.xml, ui_logic.bsh and
english.0.properties.
-->
</search>
</Control>
<Site>
<Site f="noscroll">
<Site_Site_Name f="id readonly" i="Control/Site/New_Site_Name">
Site Name
</Site_Site_Name>
<Site_Year_of_Campaign f="id readonly" b="decimal" i="Control/Site/Year_of_Campaign">
Year of Campaign
<str><fmt> $0</fmt></str>
</Site_Year_of_Campaign>
<Guide t="webview">
'Trench ID' must be in the format 'T + number', e.g. T1, T2, T3.
</Guide>
<Trench_ID f="nodata notnull"/>
<Create_New_Trench lc="Trench"/>
<List_of_Existing_Trenches ec="Trench"/>
</Site>
<Vars f="hidden">
<Device_Code i="User/User_List/Device_Code!">
<!--@SOURCE: vocabs/device-code.xml-->
</Device_Code>
</Vars>
</Site>
<Trench>
<Trench>
<Trench_Site_Name f="id readonly" i="Site/Site/Site_Site_Name">
Site Name
<str>
<pos>1</pos>
</str>
</Trench_Site_Name>
<author/>
<Trench_Trench_ID f="id readonly" i="Site/Site/Trench_ID">
Trench ID
<str>
<pos>3</pos>
<fmt>-$0</fmt>
</str>
</Trench_Trench_ID>
<Team_Members/>
<cols>
<Trench_Dimension_1_m>
Trench Dimension 1 (m)
<!--@SOURCE: vocabs/trench-dimensions.xml-->
</Trench_Dimension_1_m>
<Trench_Dimension_2_m>
Trench Dimension 2 (m)
<!--@SOURCE: vocabs/trench-dimensions.xml-->
</Trench_Dimension_2_m>
</cols>
<Trench_SW_Corner_Elevation_masl b="decimal" f="notnull">
Trench SW Corner Elevation (masl)
</Trench_SW_Corner_Elevation_masl>
<Grid_SW_Corner_Coordinates t="webview"/>
<gps f="notnull"/>
<Excavation_Method t="checkbox" f="notnull">
<desc>Enter details here about the method of archaeological excavation.</desc>
<opts>
<opt>Hand-pick
<desc>Excavated by hand-pick.</desc>
</opt>
<opt>Trowel
<desc>Excavated by trowel.</desc>
</opt>
<opt>Pick
<desc>Excavated by pick.</desc>
</opt>
<opt>Shovel</opt>
<opt>Other
<desc>Excavated by another method. Add details in Annotation field.</desc>
</opt>
</opts>
</Excavation_Method>
<timestamp>
Date Opened
</timestamp>
<Set_Date_Closed t="button" l="Date_Closed">
Set Date Closed...
</Set_Date_Closed>
<Date_Closed f="readonly"/>
<Brief_Description/>
<Your_Discussion/>
<Add_Trench_Files t="button" lc="Trench_Files"/>
<Attached_Trench_Files t="dropdown" ec="Trench_Files"/>
</Trench>
<Loci f="noscroll">
<Create_New_Locus t="button" lc="Locus"/>
<List_of_Existing_Loci t="list" ec="Locus"/>
</Loci>
<Strata_Features f="noscroll">
Strata/Features
<Create_New_Stratum_Feature t="button" lc="Stratum_Feature">
Create New Stratum/Feature
</Create_New_Stratum_Feature>
<List_of_Existing_Strata_Features t="list" ec="Stratum_Feature">
List of Existing Strata/Features
</List_of_Existing_Strata_Features>
</Strata_Features>
<FCNs f="noscroll">
<Create_New_FCN t="button" lc="FCN"/>
<List_of_Existing_FCNs t="list" f="nodata"/>
</FCNs>
<Diaries f="noscroll">
<Create_New_Diary t="button" lc="Diary"/>
<List_of_Existing_Diaries t="list" ec="Diary"/>
</Diaries>
<Legacies f="noscroll">
<Create_New_Legacy t="button" lc="Legacy"/>
<List_of_Existing_Legacies t="list" ec="Legacy"/>
</Legacies>
<Vars f="hidden">
<Trench_Year_of_Campaign f="id" i="Site/Site/Site_Year_of_Campaign">
<str>
<pos>2</pos>
<fmt> $0</fmt>
</str>
</Trench_Year_of_Campaign>
<Device_Code i="User/User_List/Device_Code!">
<!--@SOURCE: vocabs/device-code.xml-->
</Device_Code>
</Vars>
</Trench>
<Date_Closed f="nodata">
<Date_Closed>
<Date_Closed b="date"/>
<Set_Date_Closed t="button"/>
<Cancel t="button"/>
</Date_Closed>
</Date_Closed>
<Trench_Files>
<Add_Trench_Files>
<cols>
<Trench_Files_Site_Name f="id readonly" i="Trench/Trench/Trench_Site_Name">
Site Name
</Trench_Files_Site_Name>
<Trench_Files_Year_of_Campaign f="id readonly" i="Trench/Vars/Trench_Year_of_Campaign">
Year of Campaign
<str><fmt> $0</fmt></str>
</Trench_Files_Year_of_Campaign>
</cols>
<Trench_Files_Trench_ID f="id readonly" i="Trench/Trench/Trench_Trench_ID">
Trench ID
<str><fmt>-$0</fmt></str>
</Trench_Files_Trench_ID>
<author f="readonly"/>
<File_Type f="id">
<str><fmt>-$0</fmt></str>
<opts>
<opt>Plan</opt>
<opt>Section</opt>
<opt>Photo</opt>
<opt>Other</opt>
</opts>
</File_Type>
<File_Name/>
<File_Comment/>
<Add_Photo t="camera"/>
<Attach_File t="file"/>
<View_Attached_Files t="viewfiles"/>
</Add_Trench_Files>
<Vars f="hidden">
<Device_Code i="User/User_List/Device_Code!">
<!--@SOURCE: vocabs/device-code.xml-->
</Device_Code>
</Vars>
</Trench_Files>
<Locus>
<desc>The physical result of any single action whether it leaves a positive or negative record within the stratigraphic sequence. (MoLAS 1994)</desc>
<General>
<cols>
<Locus_Site_Name f="id notnull" i="Trench/Trench/Trench_Site_Name">
Site Name
<str>
<pos>1</pos>
</str>
</Locus_Site_Name>
<Locus_Trench_ID f="id readonly" i="Trench/Trench/Trench_Trench_ID">
Trench ID
<!--The semantics of the autonum flag have been changed using
@POSTPROC-->
<str>
<pos>4</pos>
<fmt>-$0</fmt>
</str>
</Locus_Trench_ID>
<Locus_Locus_ID f="id notnull" b="decimal">
Locus ID
<desc>Every archaeological locus (negative element (cut), deposit, structure, skeleton, artefact cluster) is given a unique 3 or 4 letter locus code. Each trench is designated with a separate letter which starts the code, so it is immediately obvious to which trench a locus belongs. For example locus HAA belongs to Trench H, locus MQP to Trench M etc.
The loci are labelled consecutively in alphabetical order using the letters following the trench letter. For Trench H the first locus would be HAA, the second HAB, the third HAB and so on. In addition sets of letters can denote parts of trenches, buildings etc. E.g. HFs might denote loci from a specific building.
Burial locus codes begin with the letter Z, followed by the trench letter. Hence burial ZHA is the first burial locus from trench H.
Check with the trench supervisor who will assign the locus code from the central register.</desc>
<str>
<pos>5</pos>
<fmt>-L$0</fmt>
</str>
</Locus_Locus_ID>
</cols>
<Brief_Description>
<desc>Enter a brief, clear name for the Locus eg 'House A - west wall'</desc>
</Brief_Description>
<cols>
<Locus_Mid_X_Measurement_m b="decimal">
Mid X Measurement (m)
</Locus_Mid_X_Measurement_m>
<Mid_X_Calculated_Coord b="decimal" f="readonly"/>
</cols>
<cols>
<Locus_Mid_Y_Measurement_m b="decimal">
Mid Y Measurement (m)
</Locus_Mid_Y_Measurement_m>
<Mid_Y_Calculated_Coord b="decimal" f="readonly"/>
</cols>
<Calculate_X_and_Y_values t="button"/>
<cols>
<col>
<Date_Opened>
<desc>Date on which the Locus was first excavated. This will automatically be set to the date on which the locus is recorded but can be edited using the keyboard.</desc>
</Date_Opened>
<Team_Members i="Trench/Trench/Team_Members">
<desc>Initials of the excavators that have worked on the locus.</desc>
</Team_Members>
</col>
<Excavation_Method t="checkbox" f="notnull">
<desc>Enter details here about the method of archaeological excavation.</desc>
<opts>
<opt>Hand-pick
<desc>Excavated by hand-pick.</desc>
</opt>
<opt>Trowel
<desc>Excavated by trowel.</desc>
</opt>
<opt>Pick
<desc>Excavated by pick.</desc>
</opt>
<opt>
Shovel
</opt>
<opt>Other
<desc>Excavated by another method. Add details in Annotation field.</desc>
</opt>
</opts>
</Excavation_Method>
</cols>
<cols>
<Basal_Edge_Definition>
<desc>Describe the boundary between this and the next locus.</desc>
<opts>
<opt>No Observation<desc>data not collected</desc></opt>
<opt>Doubtful<desc>You are uncertain of whether you accurately excavated a boundary between deposits</desc> </opt>
<opt>Ambiguous<desc>You are uncertain as to whether there was a boundary between loci.</desc> </opt>
<opt>Merging<desc>There is a distinction between the excavated locus and earlier locus/loci but the excavated loci and the earlier loci grade into each other</desc> </opt>
<opt>Clear<desc>The boundary with the earlier locus/loci was very clearly defined during excavation.</desc> </opt>
<opt>ArbitrarySpit<desc>There is no meaningful boundary with an earlier locus. The boundary has been artificially created by the excavation process.</desc> </opt>
</opts>
</Basal_Edge_Definition>
<Contamination>
<desc>The extent to which the locus has been contaminated.</desc>
<opts>
<opt>No Observation</opt>
<opt>Contaminated (with Recent Material)</opt>
<opt>Possibly Contaminated (with Recent Material)</opt>
<opt>Anthropogenic Secondary Deposit (Ancient)</opt>
<opt>Anthropogenic Primary Deposit</opt>
<opt>Natural Primary Deposit</opt>
<opt>Natural Secondary Deposit</opt>
</opts>
</Contamination>
</cols>
<Locus_Type f="id">
<desc>Describe the locus type by selecting an icon as defined below.
When you have selected a locus type you can proceed to open the "Fill in locus type details" page. Note this page will not open unless you have selected a locus type.</desc>
<str>
<pos>3</pos>
<fmt>-$1</fmt>
</str>
<opts>
<opt p="gallery/Blanks/Trail.png">No Observation
<desc>data not collected</desc></opt>
<opt p="gallery/ContextType/Orange/Cut.png">Cut
<desc>Any Locus which represents the removal of earlier deposit and thus forms a negative interface (cut) with another locus, such as a cut for a pit, burial, ditch, wall foundation or robber trench.</desc></opt>
<opt p="gallery/ContextType/Orange/Deposit.png">Deposit
<desc>Any Locus with deposited sediment and soil, such as floor layers, pit and grave fills, hearth fills and natural sediments.</desc></opt>
<opt p="gallery/ContextType/Orange/Natural.png">Natural
<desc>Any Locus with deposited sediment and soil, such as floor layers, pit and grave fills, hearth fills and natural sediments.</desc></opt>
<opt p="gallery/ContextType/Orange/Structure.png">Construction
<desc>Any Locus consisting of deliberately constructed structural element, independent of a Negative Element (i.e. cut, such as a wall or a hearth).</desc></opt>
<opt p="gallery/ContextType/Orange/Skeleton.png">Skeleton
<desc>Human skeletal remains.</desc></opt>
</opts>
</Locus_Type>
<Fill_in_Locus_Type_Details t="button"/>
<cols>
<Photo_of_Plan t="camera"/>
<Photo_of_Section t="camera"/>
</cols>
<cols>
<Date_Closed>
<desc>The date excavation of the Locus ended and it was closed. Press the 'Add Date Closed' button to insert today's date.</desc>
</Date_Closed>
<Add_Date_Closed t="button"/>
</cols>
<cols>
<author f="readonly">Record Created By:</author>
<timestamp f="readonly">Record Created Date:</timestamp>
</cols>
</General>
<Measure>
<cols>
<Measure_Length f="notnull" b="decimal">
Length (m)
<desc>Longest dimension in metres.</desc>
</Measure_Length>
<Measure_Width f="notnull" b="decimal">
Width (m)
<desc>Width or diameter in metres.</desc>
</Measure_Width>
<Measure_Depth f="notnull" b="decimal">
Depth (m)
<desc>Depth or Height in metres.</desc>
</Measure_Depth>
</cols>
<cols>
<col>
<Maximum_Top_Height_Meas_m f="notnull" b="decimal">
Maximum Top Height Meas (m)
<desc>The highest elevation or 'starting level' recorded for that locus relative to the site grid.</desc>
</Maximum_Top_Height_Meas_m>
<Minimum_Top_Height_Meas_m f="notnull" b="decimal">
Minimum Top Height Meas (m)
<desc>The lowest elevation recorded for that locus relative to the site grid.</desc>
</Minimum_Top_Height_Meas_m>
<NW_Top_Height_Meas_m b="decimal">
NW Top Height Meas (m)
</NW_Top_Height_Meas_m>
<NE_Top_Height_Meas_m b="decimal">
NE Top Height Meas (m)
</NE_Top_Height_Meas_m>
<SW_Top_Height_Meas_m b="decimal">
SW Top Height Meas (m)
</SW_Top_Height_Meas_m>
<SE_Top_Height_Meas_m b="decimal">
SE Top Height Meas (m)
</SE_Top_Height_Meas_m>
<Centre_Top_Height_Meas_m b="decimal">
Centre Top Height Meas (m)
</Centre_Top_Height_Meas_m>
<NW_Bottom_Height_Meas_m b="decimal">
NW Bottom Height Meas (m)
</NW_Bottom_Height_Meas_m>
<NE_Bottom_Height_Meas_m b="decimal">
NE Bottom Height Meas (m)
</NE_Bottom_Height_Meas_m>
<SW_Bottom_Height_Meas_m b="decimal">
SW Bottom Height Meas (m)
</SW_Bottom_Height_Meas_m>
<SE_Bottom_Height_Meas_m b="decimal">
SE Bottom Height Meas (m)
</SE_Bottom_Height_Meas_m>
<Centre_Bottom_Height_Meas_m b="decimal">
Centre Bottom Height Meas (m)
</Centre_Bottom_Height_Meas_m>
</col>
<col>
<Elevation_Top_Calc_masl b="decimal" f="readonly">
Elevation Top Calc (masl)
</Elevation_Top_Calc_masl>
<Elevation_Bottom_Calc_masl b="decimal" f="readonly">
Elevation Bottom Calc (masl)
</Elevation_Bottom_Calc_masl>
<NW_Top_Elevation_Calc_masl b="decimal" f="readonly">
NW Top Elevation Calc (masl)
</NW_Top_Elevation_Calc_masl>
<NE_Top_Elevation_Calc_masl b="decimal" f="readonly">
NE Top Elevation Calc (masl)
</NE_Top_Elevation_Calc_masl>
<SW_Top_Elevation_Calc_masl b="decimal" f="readonly">
SW Top Elevation Calc (masl)
</SW_Top_Elevation_Calc_masl>
<SE_Top_Elevation_Calc_masl b="decimal" f="readonly">
SE Top Elevation Calc (masl)
</SE_Top_Elevation_Calc_masl>
<Centre_Top_Elevation_Calc_masl b="decimal" f="readonly">
Centre Top Elevation Calc (masl)
</Centre_Top_Elevation_Calc_masl>
<NW_Bottom_Elevation_Calc_masl b="decimal" f="readonly">
NW Bottom Elevation Calc (masl)
</NW_Bottom_Elevation_Calc_masl>
<NE_Bottom_Elevation_Calc_masl b="decimal" f="readonly">
NE Bottom Elevation Calc (masl)
</NE_Bottom_Elevation_Calc_masl>
<SW_Bottom_Elevation_Calc_masl b="decimal" f="readonly">
SW Bottom Elevation Calc (masl)
</SW_Bottom_Elevation_Calc_masl>
<SE_Bottom_Elevation_Calc_masl b="decimal" f="readonly">
SE Bottom Elevation Calc (masl)
</SE_Bottom_Elevation_Calc_masl>
<Centre_Bottom_Elevation_Calc_masl b="decimal" f="readonly">
Centre Bottom Elevation Calc (masl)
</Centre_Bottom_Elevation_Calc_masl>
</col>
</cols>
<Calculate_All_Elevations t="button"/>
<Volume_Liters f="notnull" b="decimal">
Volume (liters)
<desc>Estimate the volume of the locus in liters. All soil will be collected in buckets of a known volume. A tally should be kept of buckets produced from a locus and the total volume calculated using that tally.</desc>
</Volume_Liters>
</Measure>
<Cut>
<Your_Identification_Type_of_Cut f="notnull">
Your Identification (Type of Cut)
<desc>Your interpretation of the likely function of the Locus using standardised definitions.</desc>
<opts>
<opt>No Observation</opt>
<opt>Hangtu</opt>
<opt>Indeterminate</opt>
<opt>Animal/Plant hole</opt>
<opt>Stakehole</opt>
<opt>Posthole</opt>
<opt>Pit</opt>
<opt>Hearth/Fire pit</opt>
<opt>Ditch/Trench</opt>
<opt>Construction Cut</opt>
<opt>Burial</opt>
<opt>Erosional Feature</opt>
<opt>Other
<desc>Function not elsewhere described. Provide details in Annotation field.</desc>
</opt>
</opts>
</Your_Identification_Type_of_Cut>
<cols>
<Shape_in_Plan f="notnull">
<desc>Describe the shape of the negative element/cut viewed from above.</desc>
<opts>
<opt>No Observation <desc>data not collected</desc></opt>
<opt>Circular <desc>Round</desc></opt>
<opt>Linear <desc>Straight sided but not square or rectangular.</desc></opt>
<opt>Ovoid <desc>Oval or elliptical.</desc></opt>
<opt>Rectangular <desc>Two sides longer than the other.</desc></opt>
<opt>Semi-Circular <desc>Half circle.</desc></opt>
<opt>Square <desc>Equal on four sides.</desc></opt>
<opt>Sub-Circular <desc>Nearly circular.</desc></opt>
<opt>Sub-rectangular <desc>Nearly rectangular in shape.</desc></opt>
<opt>Irregular</opt>
</opts>
</Shape_in_Plan>
<Shape_of_Cut_-_Note>
<desc>Additional notes about the shape of the cut.</desc>
</Shape_of_Cut_-_Note>
</cols>
<Shape_of_Corners t="radio" f="notnull">
<desc>Describe the shape of any visible corners of the negative element/cut.</desc>
<opts>
<opt>Other <desc>Other shapes</desc></opt>
<opt>Rounded <desc>Rounded corners.</desc></opt>
<opt>Square <desc>Sharp perpendicular corners.</desc></opt>
</opts>
</Shape_of_Corners>
<Break_of_Slope_-_Top t="radio" f="notnull">
<desc>The degree with which the top surface of the edge of the cut breaks into the sides.</desc>
<opts>
<opt>Gradual <desc>Some rounding to the top.</desc></opt>
<opt>Not perceptible <desc>Well-rounded; there is no perceptible difference between the sides of the cut and the surface into which it protrudes.</desc></opt>
<opt>Sharp <desc>Clear sharp slope, almost right-angled.</desc></opt>
<opt>Shallow <desc>Gentle slope less than 45 degrees.</desc></opt>
</opts>
</Break_of_Slope_-_Top>
<Break_of_Slope_-_Base t="radio" f="notnull">
<desc>The degree with which the top surface of the edge of the cut breaks into the sides.</desc>
<opts>
<opt>Gradual <desc>Some rounding to the top.</desc></opt>
<opt>Not perceptible <desc>Well-rounded; there is no perceptible difference between the sides of the cut and the surface into which it protrudes.</desc></opt>
<opt>Sharp <desc>Clear sharp slope, almost right-angled.</desc></opt>
<opt>Shallow <desc>Gentle slope less than 45 degrees.</desc></opt>
</opts>
</Break_of_Slope_-_Base>
<cols>
<Sides_of_Cut f="notnull">
<desc>Describe the shape of the cut as seen in cross section.</desc>
<opts>
<opt>No Observation</opt>
<opt>Vertical<desc>Sides are vertical</desc></opt>
<opt>Convex</opt>
<opt>Concave</opt>
<opt>Stepped</opt>
<opt>Irregular</opt>
<opt>Bag Shaped</opt>
</opts>
</Sides_of_Cut>
<Shape_of_Base f="notnull">
<desc>The shape of the base of the cut in profile.</desc>
<opts>
<opt>No Observation <desc>data not collected</desc></opt>
<opt>Concave </opt>
<opt>Flat </opt>
<opt>Pointed </opt>
<opt>Sloping </opt>
<opt>Tapered
<opt>Blunt</opt>
<opt>Sharp</opt>
</opt>
<opt>Uneven</opt>
</opts>
</Shape_of_Base>
</cols>
<Orientation f="notnull">
<desc>Orientation of linear cuts eg N-S.</desc>
<opts>
<opt>No Observation <desc>data not collected</desc></opt>
<opt>E-W <desc>Oriented East to West.</desc></opt>
<opt>N-S <desc>Oriented North to South.</desc></opt>
<opt>NE-SW <desc>Oriented North-east to South-west.</desc></opt>
<opt>NW-SE <desc>Oriented North-west to South-east.</desc></opt>
</opts>
</Orientation>
<Orientation_Degree f="notnull" b="decimal"/>
<Inclination_of_axis f="notnull">
<desc>Inclination of the axis of post- and stakeholes.</desc>
<opts>
<opt>No Observation <desc>data not collected</desc></opt>
<opt>Vertical </opt>
<opt>Between 45 and 90 degrees from horizontal </opt>
<opt>45 degrees </opt>
<opt>Less than 45 degrees from horizontal </opt>
</opts>
</Inclination_of_axis>
<Truncation/>
</Cut>
<Construction>
<Length b="decimal"/>
<Width b="decimal"/>
<cols>
<col>
<NW_Top_Depth b="decimal"/>
<SW_Top_Depth b="decimal"/>
<Center_Top_Depth b="decimal"/>
</col>
<col>
<NE_Top_Depth b="decimal"/>
<SE_Top_Depth b="decimal"/>
</col>
</cols>
<cols>
<col>
<NW_Bottom_Depth b="decimal"/>
<SW_Bottom_Depth b="decimal"/>
<Center_Bottom_Depth b="decimal"/>
</col>
<col>
<NE_Bottom_Depth b="decimal"/>
<SE_Bottom_Depth b="decimal"/>
</col>
</cols>
<Mid_X b="decimal"/>
<Mid_Y b="decimal"/>
<Sorting b="decimal"/>
<Notes/>
<Plans/>
<Section_Numbers/>
</Construction>
<Deposit>
<Your_Identification_Type_of_Deposit f="notnull">
Your Identification (Type of Deposit)
<desc>Your interpretation of the likely function of the locus.</desc>
<opts>
<opt>No Observation</opt>
<opt>Hangtu</opt>
<opt>Indeterminate
<desc>You are unable to make an assessment of possible function.</desc></opt>
<opt>Packing
<desc>Packing in a post hole for post material fulfilling a constructional purpose other than deliberate levelling deposits.</desc></opt>
<opt>Makeup/Levelling
<desc>Material laid down to level or raise an area for constructional purposes or other activities.</desc></opt>
<opt>Dump
<desc>Material probably dumped as a result of other activity e.g. material removed from cuts or other constructional or destructional activity.</desc></opt>
<opt>Midden
<desc>Distinct area of organic rubbish accumulation</desc></opt>
<opt>Burial
<desc>A fill or other deposit associated with a skeleton and forming part of a burial feature.</desc></opt>
<opt>Structural Debris/Collapse
<desc>Material derived from collapse of a wall, roof or other structure</desc></opt>
<opt>Partly naturally derived
<desc>A deposit partly or wholly accumulating through natural sedimentary processes, such as water or wind deposition.</desc></opt>
<opt>Wholly naturally derived
<desc>All of the deposit accumulating through the deposition of natural sediments through geomorphological processes eg wind borne sediments water-laid natural sediments material flaking from cave and rock shelter walls.</desc></opt>
<opt>Erosional products
<desc>Material deriving from the erosion of earlier archaeological sediments.</desc></opt>
<opt>Artifact Cluster
<desc>A distinct concentration of artifacts or ecofacts. Make sure you record its xyz coordinates centre and edges.</desc></opt>
<opt>Ash/Charcoal
<desc>A deposit consisting largely of carbonized/charred plant material and/or ash</desc></opt>
<opt>Arbitrary
<desc>This applies to artificial loci excavated for excavational convenience eg section cleaning material whose precise provenience is unclear. Does not include arbitrary spits or spatial units deliberately excavated for finer control of horizontal and vert</desc></opt>
<opt>Distinct floor contact
<desc>To be used for material that directly reflects the use of a surface or floor - artefact material on the surface perhaps thin deposits of occupation material. These loci will be gridded into spatial units for closer control of artifact distributions.</desc></opt>
<opt>Animal/Plant
<desc>Deposit derived from plant or animal activity</desc></opt>
<opt>Other
<desc>Function not elsewhere described. Provide details in Annotation field.</desc></opt>
</opts>
</Your_Identification_Type_of_Deposit>
<Texture f="notnull">
<desc>Describe the compaction of the sediments in the Locus.</desc>
<opts>
<opt>No Observation</opt>
<opt>Loose
<desc>Soft and uncemented/bonded</desc></opt>
<opt>Compact
<desc>Firm and relatively hard</desc></opt>
<opt>Medium Compact
<desc>Somewhere between loose and compact.</desc></opt>
<opt>Concrete
<desc>Rock hard resistant to trowelling.</desc></opt>
<opt>Friable
<desc>Deposit disintegrates into small particles under pressure.</desc></opt>
<opt>Crumbly
<desc>Deposit disintegrates into lumps under pressure.</desc></opt>
</opts>
</Texture>
<Texture_Description>
<desc>Description of the compaction of soil including changes throughout the deposit. Eg "Varies from loose to compact."</desc>
</Texture_Description>
<Soil_Particle_Sorting>
<desc>Assessment of the frequency with which particles of the same size occur.</desc>
<opts>
<opt p="gallery/Other/NA.png">No Observation
<desc>data not collected</desc></opt>
<opt p="gallery/Sorting/ModeratelySorted.png">Moderately sorted
<desc>Particles are mostly the same size and evenly distributed but there are some larger particles.</desc></opt>
<opt p="gallery/Sorting/PoorlySorted.png">Poorly sorted
<desc>Particles are different sizes and unevenly distributed.</desc></opt>
<opt p="gallery/Sorting/VeryPoorlySorted.png">Very poorly sorted
<desc>Particles are very different sizes and very unevenly distributed.</desc></opt>
<opt p="gallery/Sorting/WellSorted.png">Well sorted
<desc>Particles are roughly the same size and evenly distributed.</desc></opt>
</opts>
</Soil_Particle_Sorting>
<cols>
<Material f="notnull">
<desc>The type of sediment, eg clay, silt, sand and loam. Use the Material Helper or a Soil Sediment diagram for assisance.</desc>
<opts>
<opt>No Observation
<desc>No Observation. Use the Texture helper to prefil this.</desc></opt>
<opt>Sand
<desc>A sand has a loose gritty feel and does not stick together. Individual sand grains can be seen or felt. (VDEPI 2009: AG0058)</desc></opt>
<opt>Loamy Sand
<desc>In a loamy sand particles barely stick together and a moulded piece of soil just holds its shape. (VDEPI 2009: AG0058)</desc></opt>
<opt>Silty Clay Loam
<desc>A silty clay loam is like a clay loam but silty as well and smooth to the touch. (VDEPI 2009: AG0058)</desc></opt>
<opt>Clay Loam
<desc>More easily moulded into a shape than a loam a clay loam rolls out to a thin ribbon between the palms while a loam will break-up. When dry a clay loam will form a lump but is not as tough to break as a clay.(VDEPI 2009: AG0058)</desc></opt>
<opt>Sandy Clay Loam
<desc>A sandy clay loam is like a clay loam but sand grains can be felt (and heard - see Sandy Loam) (VDEPI 2009: AG0058)</desc></opt>
<opt>Silt Loam
<desc>A silty loam is like a loam but has a smooth silky feel when a moist sample is pushed between the index finger and thumb. On drying a sample can form a hard lump but this may be broken by hand. (VDEPI 2009: AG0058)</desc></opt>
<opt>Loam
<desc>A loam breaks into crumbs but will tend to stick together. Sand grains cannot be felt in a moist sample which when squeezed will retain its shape when handled freely. Loams are usually soft to the feel. (VDEPI 2009: AG0058)</desc></opt>
<opt>Sandy Loam
<desc>A sandy loam sticks together more than a loamy sand but can be easily broken. Individual sand grains can be felt and heard if a wet sample is rubbed between the index finger and thumb and held close to the ear. (VDEPI 2009: AG0058)</desc></opt>
<opt>Silty Clay
<desc>A silty clay is like a clay but smoother. (VDEPI 2009: AG0058)</desc></opt>
<opt>Clay
<desc>Clays are tough and can be moulded into shapes when moist. Clays form a long flexible ribbon when rubbed between the palms and the ribbon can often be bent into a U shape without breaking. Clays dry into very hard clods. (VDEPI 2009: AG0058)</desc></opt>
<opt>Sandy Clay
<desc>A sandy clay is like a clay but sand grains can be felt (and heard - see Sandy Loam). (VDEPI 2009: AG0058)</desc></opt>
<opt>Silt
<desc>Silt.</desc></opt>
<opt>Sandy Silt
<desc>Sandy silt.</desc></opt>
<opt>Other
<desc>Other: describe in Annotation.</desc></opt>
</opts>
</Material>
<Material_Helper t="button" l="Locus/Material_Helper"/>
</cols>
<Soil_Colour>
<desc>Broad colour description of the soil, eg 'mid greyish brown'.
</desc>
</Soil_Colour>
<Add_Munsel_Color t="button" lc="Soil_Munsel_Color"/>
<Munsel_Colors t="dropdown" ec="Soil_Munsel_Color"/>
<cols>
<Composition_Type f="notnull">
Deposit Structure
<desc>Describe the structure of the Locus sediment. The components making up the structure are added below as aggregates.</desc>
<opts>
<opt>No Observation</opt>
<opt>Homogenous
<desc>Uniform throughout.</desc></opt>
<opt>Heterogeneous
<desc>Deposit with different mixed components which need to be described.</desc></opt>
<opt>Laminated
<desc>Laminated Deposit consists of lots of fine lenses of the same material. Compact laminated Deposit consists of a number of fine lenses of different materials.</desc></opt>
<opt>Compact Laminated
<desc>Deposit consists of a number of fine lenses of different materials</desc></opt>
</opts>
</Composition_Type>
<Deposit_Bedding f="notnull">
Bedding
<desc>Describes the base of the deposit</desc>
<opts>
<opt>No Observation</opt>
<opt>Horizontal
<desc>Horizontal.</desc></opt>
<opt>Oblique steep
<desc>Steep slope.</desc></opt>
<opt>Oblique shallow
<desc>Shallow slope.</desc></opt>
<opt>Uneven
<desc>Mix of horizontal, oblique and undulating - make sure you describe this</desc></opt>
</opts>
</Deposit_Bedding>
</cols>
<cols>
<Sterile t="radio">
<desc>Whether or not the deposit is sterile, ie contains no artefacts</desc>
<opts>
<opt>Yes
<desc>Deposit is sterile</desc></opt>
<opt>No
<desc>Object is not sterile</desc></opt>
</opts>
</Sterile>
<Deposit_Inclusions f="notnull">
<desc>Enter a brief description of inclusions (eg stone flecks artefacts).</desc>
</Deposit_Inclusions>
</cols>
<Add_New_Sediment_Aggregate t="button" lc="Sediment_Aggregate">
Add New Sediment/Aggregate
</Add_New_Sediment_Aggregate>
<Associated_Sediment_Aggregates t="dropdown" ec="Sediment_Aggregate">
Associated Sediment/Aggregates
</Associated_Sediment_Aggregates>
</Deposit>
<Skeleton>
<Location/>
<Skeleton_Dimensions>
Dimensions
<desc>Record the approximate extent of the skeletal remains (in meters or millimetres only) and the axis of measurement. Detailed dimensions can be taken from the plan.</desc>
</Skeleton_Dimensions>
<cols>
<Skeleton_Head f="notnull">
Head
<desc>Which way up the head faces and/or points</desc>
</Skeleton_Head>
<Skeleton_Body f="notnull">
Body
<desc>Describe the attitude of the body, whether it is extended, crouched, flexed, supine (front up), prone (face down) and the orientation.</desc>
</Skeleton_Body>
</cols>
<cols>
<Skeleton_Left_Arm f="notnull">
Left Arm and Hand Location
<desc>Record whether left arm is straight or flexed, is along the side of the body, over the chest or on the pelvis, and the position of the hand.</desc>
</Skeleton_Left_Arm>
<Skeleton_Right_Arm f="notnull">
Right Arm and Hand Location
<desc>Record whether right arm is straight or flexed, is along the side of the body, over the chest or on the pelvis, and the position of the hand.</desc>
</Skeleton_Right_Arm>
</cols>
<cols>
<Skeleton_Left_Leg f="notnull">
Left Leg and Foot Location
<desc>Record whether the leg is straight or bent, crossed left over right or right over left and the position of the foot</desc>
</Skeleton_Left_Leg>
<Skeleton_Right_Leg f="notnull">
Right Leg and Foot Location
<desc>Record whether the leg is straight or bent, crossed left over right or right over left and the position of the foot</desc>
</Skeleton_Right_Leg>
</cols>
<Skeleton_Condition f="notnull">
Condition
<desc>Describe the general condition of the skeleton and any comments on articulation. Any degeneration of bone in situ is important to record as well as accidental damage during excavation and lifting. Record disturbances through later activity or animal/root activity as well as damage due to stone pressure on the bones. It is important to note whether the patellae, hyoid, phalanges, basi-occipital etc are present or not, and their location, as this may give an indication of the state of the body at the time of interment.</desc>
</Skeleton_Condition>
<Skeleton_Surface_Modifications>
Surface Modifications
<desc>Note any cut marks, evidence of stains and/or colour during the course of the excavation, burning, chewing marks, root activity etc.</desc>
</Skeleton_Surface_Modifications>
<Skeleton_Environment>
Condition and Weather
<desc>The physical environment at the time of excavation may affect the state of the bone therefore it is important to note the weather and conditions you are working in.</desc>
</Skeleton_Environment>
<Skeleton_Days_Exposed b="decimal">
Number of Days Exposed
<desc>It is important to excavate skeletal remains as quickly as possible as the state of the bone will change during exposure. Any conditional change should also be noted. Excavate as quickly as possible because the bones will degrade rapidly.</desc>
</Skeleton_Days_Exposed>
<cols>
<Target_A_X f="notnull" b="decimal">
Target A:X
<desc>The X coordinate of Target A. Targets are white-painted, large-headed nails used to rectify photographs.</desc>
</Target_A_X>
<Target_A_Y f="notnull" b="decimal">
Target A:Y
<desc>The Y coordinate of Target A. Targets are white-painted, large-headed nails used to rectify photographs.</desc>
</Target_A_Y>
<Target_A_Z f="notnull" b="decimal">
Target A:Z
<desc>The Z coordinate of Target A. Targets are white-painted, large-headed nails used to rectify photographs.</desc>
</Target_A_Z>
</cols>
<cols>
<Target_B_X b="decimal">
Target B:X
<desc>The X coordinate of Target B. Targets are white-painted, large-headed nails used to rectify photographs.</desc>
</Target_B_X>
<Target_B_Y b="decimal">
Target B:Y
<desc>The Y coordinate of Target B. Targets are white-painted, large-headed nails used to rectify photographs.</desc>
</Target_B_Y>
<Target_B_Z b="decimal">
Target B:Z
<desc>The Z coordinate of Target B. Targets are white-painted, large-headed nails used to rectify photographs.</desc>
</Target_B_Z>
</cols>
<cols>
<Target_C_X b="decimal">
Target C:X
<desc>The X coordinate of Target C. Targets are white-painted, large-headed nails used to rectify photographs.</desc>
</Target_C_X>
<Target_C_Y b="decimal">
Target C:Y
<desc>The Y coordinate of Target C. Targets are white-painted, large-headed nails used to rectify photographs.</desc>
</Target_C_Y>
<Target_C_Z b="decimal">
Target C:Z
<desc>The Z coordinate of Target C. Targets are white-painted, large-headed nails used to rectify photographs.</desc>
</Target_C_Z>
</cols>
<cols>
<Target_D_X b="decimal">
Target D:X
<desc>The X coordinate of Target D. Targets are white-painted, large-headed nails used to rectify photographs.</desc>
</Target_D_X>
<Target_D_Y b="decimal">
Target D:Y
<desc>The Y coordinate of Target D. Targets are white-painted, large-headed nails used to rectify photographs.</desc>
</Target_D_Y>
<Target_D_Z b="decimal">
Target D:Z
<desc>The Z coordinate of Target D. Targets are white-painted, large-headed nails used to rectify photographs.</desc>
</Target_D_Z>
</cols>
<Skeleton_Notes/>
</Skeleton>
<Int>
Interpretation
<Your_Interpretation_Discussion f="notnull">
Your Interpretation/Discussion
<desc>Enter an interpretation of the function of the Locus and its place in the stratigraphical sequence.</desc>
</Your_Interpretation_Discussion>
</Int>
<Relationships f="noscroll">
<Create_Relationships_to_This_Locus t="button" l="Relationship">
Create Relationships to This Locus
</Create_Relationships_to_This_Locus>
<cols>
<Existing_Relationships_to_This_Locus t="list" f="nodata">
Existing Relationships to This Locus
</Existing_Relationships_to_This_Locus>
<col>
<Selected_Relationship t="webview"/>
<Load_Related_Locus t="button">
Load Related Locus
</Load_Related_Locus>
<Delete_Relationship t="button"/>
</col>
</cols>
</Relationships>
<FCNs f="noscroll">
<Add_FCN t="button" lc="FCN"/>
<List_of_Related_FCNs t="list" ec="FCN"/>
</FCNs>
<Add>
<Photo t="camera">
<desc>Use this button to take a photo of the locus using the camera on the tablet. Use a scale in the photo</desc>
</Photo>
<Attach_File t="file"/>
<View_Attached_Files t="viewfiles"/>
<Add_Photograph_Log t="button" lc="Photograph_Log"/>
<Select_a_Photograph_Log t="dropdown" ec="Photograph_Log"/>
</Add>
<Material_Helper f="hidden">
<Material_Helper>
<desc>This helper is based on the standard flow chart for determining soil texture. Start by taking 25g of soil and placing it in your palm. Select each option and follow the prompts for TASKS (like roll ribbon) until you get a result, eg 'silty loam'. Then click the 'Update' button to have that value pasted onto your Locus record.</desc>
<opts>
<opt>Soil does NOT remain in ball when squeezed
<desc>Place approximately 25 g soil in palm. Add water dropwise and knead the soil to break down all aggregates. Soil is at the proper consistency when plastic and moldable like moist putty.</desc>
<opt>Is too dry
<desc>The soil sample is too dry.</desc>
<opt>NO RESULT: Add more water and start again
</opt></opt>
<opt>Is too wet
<desc>The soil sample is too wet.</desc>
<opt>NO RESULT: Add dry soil and start again
<desc>NO RESULT: add dry soil to soak up water</desc></opt></opt>
<opt>NOT too wet nor too dry
<desc>The soil is NOT too wet nor too dry.</desc>
<opt>Sand
<desc>A sand has a loose gritty feel and does not stick together. Individual sand grains can be seen or felt. (VDEPI 2009: AG0058)</desc></opt></opt></opt>
<opt>Soil remains in ball when squeezed
<desc>Place approximately 25 g soil in palm. Add water dropwise and knead the soil to break down all aggregates. Soil is at the proper consistency when plastic and moldable like moist putty.</desc>
<opt>TASK: Roll ribbon
<desc>Rub a ball of soil between thumb and forefinger to make a 'ribbon'</desc>
<opt>Does NOT form a ribbon
<desc>A 'ribbon' is NOT formed when a ball of soil is rubbed between thumb and forefinger.</desc>
<opt>Loamy Sand