aboutsummaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/layout/building_activity.xml3
-rw-r--r--res/layout/bus_activity.xml1
-rw-r--r--res/layout/bus_specific_stop_view.xml36
-rw-r--r--res/layout/bus_stop_activity.xml1
-rw-r--r--res/layout/welcome_dialog.xml52
-rw-r--r--res/menu/bus_menu.xml9
-rw-r--r--res/menu/bus_stop_menu.xml (renamed from res/menu/stop_menu.xml)0
-rw-r--r--res/raw/org.rdf6168
-rw-r--r--res/raw/ormlite_config.txt183
-rw-r--r--res/raw/u6.gpx36
-rw-r--r--res/values/strings.xml77
11 files changed, 355 insertions, 6211 deletions
diff --git a/res/layout/building_activity.xml b/res/layout/building_activity.xml
index 777ad0a..1fc1312 100644
--- a/res/layout/building_activity.xml
+++ b/res/layout/building_activity.xml
@@ -25,7 +25,7 @@
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/buildingActivityLoadBarLayout"
+ android:id="@+id/buildingActivityContentLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
@@ -41,6 +41,7 @@
android:id="@+id/buildingActivityMessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:gravity="center_horizontal"
android:text=""
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
diff --git a/res/layout/bus_activity.xml b/res/layout/bus_activity.xml
index d8b26f6..93ad39a 100644
--- a/res/layout/bus_activity.xml
+++ b/res/layout/bus_activity.xml
@@ -37,6 +37,7 @@
android:id="@+id/busActivityMessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:gravity="center_horizontal"
android:text=""
android:textAppearance="?android:attr/textAppearanceLarge" />
diff --git a/res/layout/bus_specific_stop_view.xml b/res/layout/bus_specific_stop_view.xml
new file mode 100644
index 0000000..6787540
--- /dev/null
+++ b/res/layout/bus_specific_stop_view.xml
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" >
+
+ <TextView
+ android:id="@+id/busSpecificStopViewName"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentTop="true"
+ android:layout_toLeftOf="@+id/busSpecificStopViewRightContainer"
+ android:singleLine="true" />
+
+ <LinearLayout
+ android:id="@+id/busSpecificStopViewRightContainer"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentRight="true"
+ android:layout_centerVertical="true"
+ android:gravity="center_vertical"
+ android:orientation="vertical" >
+
+ <ProgressBar
+ android:id="@+id/busSpecificStopViewProgressBar"
+ style="?android:attr/progressBarStyleSmall"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+
+ <TextView
+ android:id="@+id/busSpecificStopViewTime"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+ </LinearLayout>
+
+</RelativeLayout> \ No newline at end of file
diff --git a/res/layout/bus_stop_activity.xml b/res/layout/bus_stop_activity.xml
index 66da2f6..40b0505 100644
--- a/res/layout/bus_stop_activity.xml
+++ b/res/layout/bus_stop_activity.xml
@@ -129,6 +129,7 @@
android:id="@+id/busStopMessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:gravity="center_horizontal"
android:text=""
android:textAppearance="?android:attr/textAppearanceLarge" />
diff --git a/res/layout/welcome_dialog.xml b/res/layout/welcome_dialog.xml
new file mode 100644
index 0000000..2a8b5cd
--- /dev/null
+++ b/res/layout/welcome_dialog.xml
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/layout_root"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical"
+ android:padding="2dp" >
+
+ <LinearLayout
+ android:id="@+id/linearLayout1"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentBottom="true"
+ android:layout_alignParentLeft="true"
+ android:gravity="center"
+ android:orientation="horizontal" >
+
+ <Button
+ android:id="@+id/welcomeDialogButton"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/welcome_dialog_button_text" />
+ </LinearLayout>
+
+ <TextView
+ android:id="@+id/textView3"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:layout_below="@+id/textView4"
+ android:text="@string/welcome_dialog_version"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <TextView
+ android:id="@+id/textView4"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:text="@string/welcome_dialog_copyright"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <TextView
+ android:id="@+id/welcomeDialogMessage"
+ android:layout_width="match_parent"
+ android:layout_height="305dp"
+ android:layout_above="@+id/linearLayout1"
+ android:layout_alignParentLeft="true"
+ android:layout_below="@+id/textView3"
+ android:scrollbars="vertical"
+ android:text="@string/welcome_dialog_install_message" />
+
+</RelativeLayout> \ No newline at end of file
diff --git a/res/menu/bus_menu.xml b/res/menu/bus_menu.xml
new file mode 100644
index 0000000..5e22663
--- /dev/null
+++ b/res/menu/bus_menu.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<menu xmlns:android="http://schemas.android.com/apk/res/android" >
+
+ <item
+ android:id="@+id/menu_refresh_bus"
+ android:icon="@drawable/ic_menu_refresh"
+ android:title="@string/menu_refresh_stops"/>
+
+</menu> \ No newline at end of file
diff --git a/res/menu/stop_menu.xml b/res/menu/bus_stop_menu.xml
index c44efa2..c44efa2 100644
--- a/res/menu/stop_menu.xml
+++ b/res/menu/bus_stop_menu.xml
diff --git a/res/raw/org.rdf b/res/raw/org.rdf
deleted file mode 100644
index db580f9..0000000
--- a/res/raw/org.rdf
+++ /dev/null
@@ -1,6168 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://data.southampton.ac.uk/dumps/org/2011-11-30/org.rdf">
- <rdf:Description rdf:about="homepages.csv#provenance">
- <ns0:processType xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="http://id.southampton.ac.uk/ns/DownloadViaHTTP"/>
- </rdf:Description>
- <rdf:Description rdf:about="homepages.csv#provenance">
- <ns0:resultingDataset xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="homepages.csv"/>
- </rdf:Description>
- <rdf:Description rdf:about="homepages.csv#provenance">
- <ns0:sourceDataset xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="https://spreadsheets.google.com/pub?hl=en&amp;hl=en&amp;key=0Aqpgp1BI3RC1dG56T2pXVlhlT0lIcEpsblhCV1RlN1E&amp;output=csv"/>
- </rdf:Description>
- <rdf:Description rdf:about="homepages.csv#provenance">
- <rdf:type rdf:resource="http://purl.org/void/provenance/ns/ProvenanceEvent"/>
- </rdf:Description>
- <rdf:Description rdf:about="homepages.csv#provenance">
- <ns0:hasBeginning xmlns:ns0="http://www.w3.org/2006/time#" rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-11-30T09:43:54Z</ns0:hasBeginning>
- </rdf:Description>
- <rdf:Description rdf:about="homepages.csv#provenance">
- <ns0:hasEnd xmlns:ns0="http://www.w3.org/2006/time#" rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-11-30T09:43:55Z</ns0:hasEnd>
- </rdf:Description>
- <rdf:Description rdf:about="locations.csv#provenance">
- <ns0:processType xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="http://id.southampton.ac.uk/ns/DownloadViaHTTP"/>
- </rdf:Description>
- <rdf:Description rdf:about="locations.csv#provenance">
- <ns0:resultingDataset xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="locations.csv"/>
- </rdf:Description>
- <rdf:Description rdf:about="locations.csv#provenance">
- <ns0:sourceDataset xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="https://spreadsheets.google.com/spreadsheet/pub?hl=en_US&amp;hl=en_US&amp;key=0AqodCQwjuWZXdHVRWlpPUEtfUlVaWHNjQ2dIdWlfUWc&amp;single=true&amp;gid=0&amp;output=csv"/>
- </rdf:Description>
- <rdf:Description rdf:about="locations.csv#provenance">
- <rdf:type rdf:resource="http://purl.org/void/provenance/ns/ProvenanceEvent"/>
- </rdf:Description>
- <rdf:Description rdf:about="locations.csv#provenance">
- <ns0:hasBeginning xmlns:ns0="http://www.w3.org/2006/time#" rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-11-30T09:43:55Z</ns0:hasBeginning>
- </rdf:Description>
- <rdf:Description rdf:about="locations.csv#provenance">
- <ns0:hasEnd xmlns:ns0="http://www.w3.org/2006/time#" rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-11-30T09:43:56Z</ns0:hasEnd>
- </rdf:Description>
- <rdf:Description rdf:about="#provenance">
- <ns0:processType xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="http://id.southampton.ac.uk/ns/ConvertTurtleToRDFXML"/>
- </rdf:Description>
- <rdf:Description rdf:about="#provenance">
- <ns0:resultingDataset xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource=""/>
- </rdf:Description>
- <rdf:Description rdf:about="#provenance">
- <ns0:sourceDataset xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="org.ttl"/>
- </rdf:Description>
- <rdf:Description rdf:about="#provenance">
- <rdf:type rdf:resource="http://purl.org/void/provenance/ns/ProvenanceEvent"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl">
- <ns0:conformsTo xmlns:ns0="http://purl.org/dc/terms/" rdf:resource="http://purl.org/openorg/opendata-4-star"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl">
- <ns0:created xmlns:ns0="http://purl.org/dc/terms/">2011-11-30</ns0:created>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl">
- <ns0:description xmlns:ns0="http://purl.org/dc/terms/">This list of organisations and organisational units is taken from the table used by the "MUD" directory, so may not be authoritative. The University organisation is currently changing so these identifiers should be treated with caution.</ns0:description>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl">
- <ns0:isPartOf xmlns:ns0="http://purl.org/dc/terms/" rdf:resource="http://id.southampton.ac.uk/dataset/org"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl">
- <ns0:license xmlns:ns0="http://purl.org/dc/terms/" rdf:resource="http://reference.data.gov.uk/id/open-government-licence"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl">
- <ns0:publisher xmlns:ns0="http://purl.org/dc/terms/" rdf:resource="http://id.southampton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl">
- <ns0:title xmlns:ns0="http://purl.org/dc/terms/">Organisation</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl">
- <ns0:sparqlEndpoint xmlns:ns0="http://rdfs.org/ns/void#" rdf:resource="http://sparql.data.southampton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl">
- <rdf:type rdf:resource="http://purl.org/openorg/NonAuthoritativeDataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Generated by OpenOrg Grinder using the org.xsl transform by Christopher Gutteridge. See http://wiki.openorg.ecs.soton.ac.uk/wiki/OpenOrg_Grinder. Generated at 2011-11-30T09:43:56+00:00</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:processIncludedFile xmlns:ns0="http://id.southampton.ac.uk/ns/" rdf:resource="download.cfg"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:processIncludedFile xmlns:ns0="http://id.southampton.ac.uk/ns/" rdf:resource="grinder"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:processIncludedFile xmlns:ns0="http://id.southampton.ac.uk/ns/" rdf:resource="org.cfg"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:processIncludedFile xmlns:ns0="http://id.southampton.ac.uk/ns/" rdf:resource="org.xsl"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:processIncludedFile xmlns:ns0="http://id.southampton.ac.uk/ns/" rdf:resource="to_rdfxml"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:processType xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="http://id.southampton.ac.uk/ns/ConvertAndPublishDataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:resultingDataset xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="org.ttl"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:sourceDataset xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="HR-Structure.xls"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:sourceDataset xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="full-mud-list.csv"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:sourceDataset xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="homepages.csv"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:sourceDataset xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="locations.csv"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:sourceDataset xmlns:ns0="http://purl.org/void/provenance/ns/" rdf:resource="org.csv"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <rdf:type rdf:resource="http://purl.org/void/provenance/ns/ProvenanceEvent"/>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:hasBeginning xmlns:ns0="http://www.w3.org/2006/time#" rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-11-30T09:43:56Z</ns0:hasBeginning>
- </rdf:Description>
- <rdf:Description rdf:about="org.ttl#provenance">
- <ns0:hasEnd xmlns:ns0="http://www.w3.org/2006/time#" rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-11-30T09:43:56Z</ns0:hasEnd>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <rdf:type rdf:resource="http://purl.org/vocab/aiiso/schema#Institution"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#FormalOrganization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">University of Southampton</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F3"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F4"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F5"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/XX"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/1">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7FP060000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/1">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/FP"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/1">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/1104">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/CY"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/1104">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/123">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F5"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/123">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/16">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7FP050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/16">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/FP"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/16">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/2">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F4"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/2">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/JF"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/2">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/TR"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/2">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/20">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7FP050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/20">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/FP"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/20">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/27">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/EB"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/27">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/29">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/EB"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/29">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/30">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/EB"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/30">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/32">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7FP080000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/32">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7FP090000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/32">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/FP"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/32">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/GK"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/32">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/35">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/JF"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/35">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/38">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/13"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/38">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/4">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/JJ"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/4">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/40">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/SU"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/40">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/42">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/SU"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/42">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/45">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/BN"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/45">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/KE"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/45">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/MR"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/45">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/46">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/EH"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/46">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7EH010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/46">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7EH020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/46">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7EH040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/46">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7WF010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/46">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7WF020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/46">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7WF030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/46">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7WF040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/46">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/WF"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/46">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/48">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/CU"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/48">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/53">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/EH"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/53">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7EH010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/53">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7EH020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/53">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7EH040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/53">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7FP040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/53">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7FP060000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/53">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7FP070000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/53">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/FP"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/53">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/54">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F8PJ030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/54">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/JF"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/54">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/58A">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/TR"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/58A">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/59">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7FP010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/59">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F7FP050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/59">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/FP"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/59">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/6">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/4"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/6">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/60">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/1"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/60">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/63A">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/FH"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/63A">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/63F">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/FH"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/63F">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/63G">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/FH"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/63G">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/63K">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/FH"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/63K">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/63L">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/FH"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/63L">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/65">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F4"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/65">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/65A">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F4"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/65A">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/65B">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F4"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/65B">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/67">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/BN"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/67">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/KE"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/67">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/MR"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/67">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/68">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/HN"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/68">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/71">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/CW"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/71">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/85">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/BJ"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/85">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F5"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/85">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/JL"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/85">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/89">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/CW"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/89">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/92">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/CW"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/92">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9500">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F5"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9500">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9510">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/BJ"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9510">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F5"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9510">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9530">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F5"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9530">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9550">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F5"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9550">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9555">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F5"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9555">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9570">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F5"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9570">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9580">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F5"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9580">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9590">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/F5"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/9590">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/96">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/CW"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/96">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/97">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/CW"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/97">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/99">
- <ns0:occupant xmlns:ns0="http://vocab.deri.ie/rooms#" rdf:resource="http://id.southampton.ac.uk/org/CW"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/building/99">
- <rdf:type rdf:resource="http://vocab.deri.ie/rooms#Building"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/0">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/1">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/13">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/2">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/2">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.bw-chilworthmanor.co.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/3">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/4">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/4">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.nuffieldtheatre.co.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/8">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/9">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AF">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AF">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Human Development &amp; Health</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AF">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">AF</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F5AF010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F5AF020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F5AF030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F5AF040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F5AF050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AG">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AK">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AK">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Aeronautics, Astronautics &amp; Comp. Eng</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AK">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">AK</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AK">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2AK010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AK">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2AK020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AK">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2AK030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AL">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AT">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AT">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Civil Maritime &amp; Env. Eng &amp; Sci Unit</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AT">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">AT</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AT">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2AT010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AT">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2AT020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AT">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2AT030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AT">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2AT040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/AT">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2AT050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BB">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BB">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Legal Services &amp; Research Governance</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BB">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">BB</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1BB010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1BB020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1BB030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BH">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BH">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Health &amp; Safety</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BH">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">BH</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BJ">
- <ns0:googleMapsZoom xmlns:ns0="http://id.southampton.ac.uk/ns/">13</ns0:googleMapsZoom>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BJ">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BJ">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Centre for Biological Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BJ">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">BJ</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6BJ010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6BJ020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6BJ030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6BJ110000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6BJ120000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6BJ130000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6BJ140000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6BJ150000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BJ">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/biosci"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BN">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BN">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Centre for Innovation &amp; Leadership</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BN">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">BN</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BN">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F3BN010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BN">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F3BN020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BN">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F3BN030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BX">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BX">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Engineering Science Unit</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BX">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">BX</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2BX010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2BX020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2BX030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2BX040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2BX050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BZ">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BZ">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">LATEU</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BZ">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">BZ</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BZ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKBZ010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BZ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKBZ020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/BZ">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/lateu/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CC">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CC">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Social Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CC">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">CC</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CC">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CC010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CC">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CC020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CC">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CC030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CC">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CC040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CC">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CC050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CC">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CC060000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CC">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CC070000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CC">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CC080000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CC">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/socsci/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CD">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CD">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Development &amp; Alumni Relations</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CD">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">CD</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKCD030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKCD050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKCD080000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKCD090000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKCD100000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CG">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CJ">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CJ">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Southampton Education School</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CJ">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">CJ</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CJ010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CJ020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CJ030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CJ040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CJ050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CJ060000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CJ">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/education/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CM">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CM">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Cancer Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CM">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">CM</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CU">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CU">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.highfieldhealth.nhs.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CW">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CW">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.science-park.co.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CY">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CY">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Chaplaincy</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CY">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">CY</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CY">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.chaplaincy.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/CZ">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DD">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DD">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Human Resources</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DD">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">DD</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1GRDD0200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1GRDD0300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1GRDD0400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1GRDD0500"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DD">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/hr/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DF">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DF">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Hub</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DF">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">DF</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2DF010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DH">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DH">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.lass.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DK">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DK">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Communications</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DK">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">DK</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DK">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGRDK0300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DK">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGRDK0400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DK">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGRDK0500"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DK">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGRDK0600"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/DK">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/about/professionalservices/comms.html"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Chemistry</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">EB</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6EB010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6EB020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6EB030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6EB040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6EB050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6EB070000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6EB080000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6EB090000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6EB110000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6EB120000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6EB130000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6EB140000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6EB150000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EB">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/chemistry/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EF">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EH">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EH">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Optoelectronics Research Centre</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EH">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">EH</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EH">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7EH010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EH">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7EH020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EH">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7EH040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EH">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.orc.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EK">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EW">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EW">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Services</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EW">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">EW</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/EW">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/studentservices/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1">
- <ns0:googleMapsZoom xmlns:ns0="http://id.southampton.ac.uk/ns/">10</ns0:googleMapsZoom>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1">
- <rdf:type rdf:resource="http://purl.org/vocab/aiiso/schema#Faculty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty of Business and Law</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">F1</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/FH"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/JJ"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/TR"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/about/faculties/faculty_business_law.html"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Graphics, Fine Art &amp; Media</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1FH010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Fashion &amp; Textile Design</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1FH020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Technical Services</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1FH030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Research Centre</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1FH040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">International Studies</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1FH050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1FH050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1JJ010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1JJ010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Law</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1JJ010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1JJ010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Management Science</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1TR010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Knowledge &amp; Information Systems</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1TR020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Marketing</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1TR030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Organisational Behaviour</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1TR040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Strategy &amp; Innovation</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1TR050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR060000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR060000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Accounting</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR060000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1TR060000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR070000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR070000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Finance</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR070000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1TR070000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR080000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR080000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Academic Related</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F1TR080000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F1TR080000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2">
- <rdf:type rdf:resource="http://purl.org/vocab/aiiso/schema#Faculty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty of Engineering and the Environment</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">F2</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/AK"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/AT"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/BX"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/DF"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/KR"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/LH"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/MM"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/VL"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/about/faculties/faculty_engineering_environment.html"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AK010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AK010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Aerodynamics &amp;Flight Mech Research Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AK010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2AK010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AK020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AK020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Astronautics</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AK020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2AK020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AK030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AK030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Computational Engineering &amp; Design</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AK030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2AK030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Energy &amp; Climate Change Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2AT010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Environment Research Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2AT020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Fluid / Structure Interactions Research</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2AT030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Infrastructure Research Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2AT040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Tranportation Research Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2AT050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2AT050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Bioengineering Research Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2BX010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Electro-Mechanical Research Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2BX020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Energy Technology Research Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2BX030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Engineering Materials &amp; Surface Engineer</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2BX040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">nCATS Research Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2BX050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2BX050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2DF010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2DF010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">General</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2DF010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2DF010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2KR010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2KR010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Signal Processing &amp; Control Research Grp</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2KR010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2KR010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2KR020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2KR020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Dynamics Research Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2KR020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2KR020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2KR030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2KR030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Fluid Dynamics &amp; Acoustics Research Grp</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2KR030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2KR030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2KR040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2KR040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Human Sciences Research Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2KR040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2KR040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2LH010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2LH010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Research Institute for Industry</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2LH010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2LH010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2LH020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2LH020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">ISVR Consulting</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2LH020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2LH020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2LH030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2LH030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Wolfson Unit MTIA</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2LH030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2LH030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2LH040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2LH040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">SOECIC</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F2LH040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F2LH040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3">
- <rdf:type rdf:resource="http://purl.org/vocab/aiiso/schema#Faculty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty of Health Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">F3</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/BN"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/KE"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/about/faculties/faculty_health_sciences.html"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3BN010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3BN010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Leadership &amp; Health Systems</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3BN010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F3BN010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3BN020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3BN020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Advancing Clinical &amp; Expert Practice</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3BN020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F3BN020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3BN030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3BN030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Researcher Development</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3BN030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F3BN030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3KE020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3KE020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Family, Child &amp; Psycho-Social Health</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3KE020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F3KE020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3KE030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3KE030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Physical &amp; Rehabilitation Health</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3KE030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F3KE030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3KE040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3KE040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Bio-Behavioural Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F3KE040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F3KE040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <ns0:googleMapsZoom xmlns:ns0="http://id.southampton.ac.uk/ns/">15</ns0:googleMapsZoom>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <rdf:type rdf:resource="http://purl.org/vocab/aiiso/schema#Faculty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty of Humanities</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">F4</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/FJ"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/GC"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/LN"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/LT"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/MH"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/NC"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PL"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/RG"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/about/faculties/faculty_humanities.html"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4GC010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4GC010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">CLS</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F4GC010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F4GC010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5">
- <ns0:googleMapsZoom xmlns:ns0="http://id.southampton.ac.uk/ns/">13</ns0:googleMapsZoom>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5">
- <rdf:type rdf:resource="http://purl.org/vocab/aiiso/schema#Faculty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty of Medicine</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">F5</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/AF"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/CM"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/FC"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/LG"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/RA"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/VB"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/WN"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/about/faculties/faculty_medicine.html"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Human Genetics</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F5AF010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Bone &amp; Joint</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F5AF020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Epidermiology</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F5AF030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Human Nutrition &amp; Metabolism</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F5AF040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Maternal, Fetal &amp; Neonatal Physiology</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5AF050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F5AF050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5FC010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5FC010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Tissue Infection &amp; Repair</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5FC010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F5FC010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5FC020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5FC020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Allergy &amp; Inflammation Research</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5FC020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F5FC020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5FC030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5FC030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Clinical Neurosciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5FC030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F5FC030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5RA010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5RA010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Medical Education Development Unit</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5RA010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F5RA010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5RA020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5RA020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Centre for Learning Anatomical Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5RA020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F5RA020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5VB020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5VB020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">NETSCC</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F5VB020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F5VB020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6">
- <ns0:googleMapsZoom xmlns:ns0="http://id.southampton.ac.uk/ns/">12</ns0:googleMapsZoom>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6">
- <rdf:type rdf:resource="http://purl.org/vocab/aiiso/schema#Faculty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty of Natural and Environmental Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">F6</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/BJ"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/EB"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/HN"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/JL"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/about/faculties/faculty_natural_environmental_sciences.html"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Biological Sciences Technical</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6BJ010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Biological Sciences Research</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6BJ020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Academic</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6BJ030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ110000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ110000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Molecular and Cellular</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ110000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6BJ110000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ120000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ120000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Environmental</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ120000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6BJ120000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ130000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ130000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Biomedicine</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ130000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6BJ130000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ140000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ140000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Biological Sciences Education/Training</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ140000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6BJ140000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ150000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ150000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Support Staff - Technical</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6BJ150000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6BJ150000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Chemical Biology Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6EB010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Electrochemistry &amp; Surface Science Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6EB020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Structure &amp; Materials Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6EB030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Synthetic Chemistry Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6EB040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Support Staff</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6EB050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB070000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB070000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Chemistry Technical</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB070000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6EB070000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB080000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB080000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Computational Systems Chemistry</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB080000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6EB080000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB090000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB090000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Electrochemistry</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB090000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6EB090000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB110000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB110000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Chemistry Education / Training</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB110000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6EB110000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB120000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB120000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Magnetic Resonance</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB120000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6EB120000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB130000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB130000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Molecular Assembly, Function &amp; Structure</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB130000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6EB130000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB140000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB140000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Molecular Diagnostics &amp; Thereputics</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB140000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6EB140000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB150000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB150000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Chemistry Research</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6EB150000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6EB150000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Ocean &amp; Earth Science Technical</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6HN010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Coastal &amp; Shelf Research</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6HN020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Geochemistry</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6HN030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Geology &amp; Geophysics</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6HN040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN060000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN060000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Ocean Biochemistry &amp; Ecosystems</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN060000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6HN060000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN070000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN070000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Paleooceanography &amp; Palaeoclimate</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN070000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6HN070000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN080000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN080000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Physical Oceanography</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F6HN080000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F6HN080000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7">
- <rdf:type rdf:resource="http://purl.org/vocab/aiiso/schema#Faculty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty of Physical and Applied Science</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">F7</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/EH"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/FP"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/WF"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.fpas.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7EH010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7EH010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">ORC Research</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7EH010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7EH010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7EH020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7EH020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">ORC - Enterprise</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7EH020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7EH020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7EH040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7EH040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Technical Support Staff</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7EH040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7EH040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">ECML</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7FP010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">IT Innovation</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7FP020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP020000">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.it-innovation.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">MECH</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7FP030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">NANO</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7FP040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP040000">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.nano.ecs.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">EEE</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7FP050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP050000">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.eee.ecs.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP060000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP060000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Comms, Signal Processing &amp; Control</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP060000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7FP060000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP060000">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.cspc.ecs.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP070000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP070000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Electronic &amp; Software Systems</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP070000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7FP070000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP070000">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.ess.ecs.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP080000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP080000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Agents, Interactions &amp; Complexity</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP080000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7FP080000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP080000">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.aic.ecs.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP090000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP090000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Web &amp; Internet Science</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP090000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7FP090000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7FP090000">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.wais.ecs.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7WF010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7WF010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Theory Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7WF010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7WF010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7WF020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7WF020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Astronomy Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7WF020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7WF020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7WF030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7WF030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Quantum, Light &amp; Matter Group</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7WF030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7WF030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7WF040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7WF040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Support Staff</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F7WF040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F7WF040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8">
- <rdf:type rdf:resource="http://purl.org/vocab/aiiso/schema#Faculty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty of Social and Human Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">F8</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/CC"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/CJ"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/JW"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PJ"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/WR"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/WT"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/about/faculties/faculty_social_human_sciences.html"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Social Statistics &amp; Demography</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CC010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CC010600"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CC010700"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC010600">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC010600">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Centre for Population Change (CPC)</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC010600">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CC010600</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC010700">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC010700">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">ESRC National Centre - Research Methods</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC010700">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CC010700</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Social Work Studies</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CC020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8CC020300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC020300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC020300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">SWAP</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC020300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CC020300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Economics</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CC030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Politics &amp; International Relations</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CC040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Sociology &amp; Social Policy</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CC050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC060000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC060000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Gerontology</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC060000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CC060000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC070000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC070000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Centre for Contemporary China</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC070000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CC070000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC080000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC080000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Third Sector Research Centre</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CC080000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CC080000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Leadership School Improve &amp;Effectiveness</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CJ010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Lifelong &amp; Work-Related Learning</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CJ020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Mathematics &amp; Science Education</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CJ030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Social Justice &amp; Inclusive Education</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CJ040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Teaching Only Staff</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CJ050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ060000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ060000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Technical Staff</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8CJ060000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8CJ060000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Clinical Neuroscience</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW010100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW010200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW010300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Developmental Brain-Behaviour Lab</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW010100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Emotion &amp; Motivation Lab</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW010200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Animal Behaviour</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW010300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW010300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Cognition</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW020100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW020200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW020300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Centre for Visual Cognition</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW020100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Memory &amp; Associated Learning Lab</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW020200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">CBT</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW020300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW020300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Human Wellbeing</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW030100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW030200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW030300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Centre for Apps. of Health Psychology</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW030100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Centre for Research on Self &amp; Identity</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW030200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Centre for Sexual Health Research</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW030300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW030300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Technical Staff</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Professional Training</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8JW050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8JW050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8PJ010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8PJ010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Applied Mathematics</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8PJ010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8PJ010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8PJ020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8PJ020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Operational Research</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8PJ020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8PJ020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8PJ030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8PJ030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Pure Mathematics</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8PJ030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8PJ030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8PJ040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8PJ040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Statistics</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8PJ040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8PJ040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Earth Surface Dynamics</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8WR010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Economy, Society &amp; Space</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8WR020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">GeoData Institute</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8WR030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Global Env Change &amp; Earth Observation</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8WR040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Palaeoenvironment Laboratory (PLUS)</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8WR050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR060000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR060000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Population, Health &amp; Wellbeing (PHeW)</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR060000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8WR060000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR070000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR070000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Technical Staff</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WR070000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8WR070000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Research Groups</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8WT010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8WT010100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">DUMMY</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8WT010100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010100">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8WT010101"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010100">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8WT010103"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010100">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8WT010104"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010101">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010101">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Academic &amp; Research</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010101">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8WT010101</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010103">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010103">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Maths</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010103">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8WT010103</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010104">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010104">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Social Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/F8WT010104">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">F8WT010104</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FC">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FC">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Infection, Inflammation &amp; Immunity</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FC">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">FC</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FC">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F5FC010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FC">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F5FC020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FC">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F5FC030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FF">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FH">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FH">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Winchester School of Art</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FH">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">FH</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FH">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1FH010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FH">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1FH020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FH">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1FH030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FH">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1FH040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FH">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1FH050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FH">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.wsa.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FJ">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FJ">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Philosophy</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FJ">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">FJ</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FK">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FK">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/healthsciences/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FP">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FP">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Electronics &amp; Computer Science</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FP">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">FP</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FP">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7FP010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FP">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7FP020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FP">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7FP030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FP">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7FP040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FP">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7FP050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FP">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7FP060000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FP">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7FP070000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FP">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7FP080000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FP">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7FP090000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FP">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.ecs.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FX">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FX">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Royal Naval Unit</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FX">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">FX</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/FX">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/~surnu/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GC">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GC">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Modern Languages</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GC">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">GC</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GC">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F4GC010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GK">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GR">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GR">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Strategy, Planning and Governance</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GR">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">GR</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2GR010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2GR020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2GR030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2GR040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2GR050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2GR060000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2GR080000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GR">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/about/professionalservices/university_secretary.html"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student &amp; Academic Administration</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">GX</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX060000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX070000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX080000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX090000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX100000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX110000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX120000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX130000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX140000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX150000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX160000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/GX">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/studentadmin/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HH">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HH">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/bcs/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HJ">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HJ">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.textileconservationcentre.co.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HK">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HK">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.noc.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HN">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HN">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Ocean and Earth Science</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HN">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">HN</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HN">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6HN010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HN">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6HN020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HN">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6HN030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HN">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6HN040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HN">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6HN060000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HN">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6HN070000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HN">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F6HN080000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HN">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/oes/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HW">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/HW">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/healthsciences/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">iSolutions</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">JF</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF110000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF120000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF130000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF140000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF150000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF160000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF170000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF180000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF190000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF200000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JF">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/isolutions/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JJ">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JJ">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Southampton Law School</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JJ">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">JJ</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1JJ010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JJ">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/law/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JL">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JL">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Institute for Life Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JL">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">JL</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JL">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/ifls/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JW">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JW">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Psychology</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JW">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">JW</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JW">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JW">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JW">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JW">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JW">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8JW050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JW">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/psychology"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/JX">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KE">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KE">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Professional Practice in Health Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KE">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">KE</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KE">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F3KE020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KE">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F3KE030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KE">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F3KE040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KK">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KK">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/ses/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KR">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KR">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Inst. Sound &amp; Vibration Research</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KR">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">KR</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2KR010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2KR020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2KR030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2KR040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KR">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.isvr.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KW">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KW">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.humanities.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KX">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KX">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Library</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KX">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">KX</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKKX020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKKX070000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKKX080000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKKX090000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKKX200000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKKX300000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKKX400000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKKX500000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/KX">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/library/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LG">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LG">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Primary Care &amp; Population Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LG">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">LG</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LH">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LH">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Enterprise</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LH">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">LH</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LH">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2LH010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LH">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2LH020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LH">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2LH030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LH">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F2LH040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LL">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LN">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LN">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Humanities: Central Faculty</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LN">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">LN</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LT">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LT">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Film</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/LT">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">LT</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/MH">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/MH">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Archaeology</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/MH">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">MH</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/MJ">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/MJ">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.civil.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/MM">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/MM">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Education Hub</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/MM">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">MM</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/MR">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/MR">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/healthsciences/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/NC">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/NC">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Music</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/NC">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">NC</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/NN">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/NO">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/NP">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/NP">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">International Office</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/NP">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">NP</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/NP">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/international/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Professional Services - COO</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">P1</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/BB"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/BH"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/DD"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/JF"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/RR"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/TD"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/TW"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1BB010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1BB010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Legal Services</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1BB010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1BB010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1BB010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1BB010100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1BB010100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1BB010100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">General Office</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1BB010100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1BB010100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1BB020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1BB020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Research Governance Office</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1BB020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1BB020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1BB030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1BB030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">B37 Office</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1BB030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1BB030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">HR - Professional Services</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1GRDD0200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0200">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1GRDD0210"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0200">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1GRDD0220"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0200">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1GRDD0230"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0200">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1GRDD0240"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0210">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0210">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Employee Relations</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0210">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1GRDD0210</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0220">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0220">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">HR Systems</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0220">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1GRDD0220</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0230">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0230">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Organisational Development &amp; Design</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0230">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1GRDD0230</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0240">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0240">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Recruitment, Reward &amp; Talent</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0240">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1GRDD0240</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0240">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1GRDD0241"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0240">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1GRDD0242"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0240">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1GRDD0243"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0241">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0241">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Reward</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0241">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1GRDD0241</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0242">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0242">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Temp Bank</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0242">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1GRDD0242</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0243">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0243">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Recruitment</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0243">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1GRDD0243</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Development</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1GRDD0300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0300">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P1GRDD0310"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0310">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0310">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Professional Development Unit</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0310">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1GRDD0310</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Equality &amp; Diversity</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1GRDD0400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0500">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0500">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Director's Office</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P1GRDD0500">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P1GRDD0500</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Professional Services - Registrar</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">P2</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/BZ"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/CD"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/DK"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/EW"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/GR"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/GX"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/KX"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/NP"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PK"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/TX"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Secretariat</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2GR010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Turner Sims Concert Hall</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2GR020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">John Hansard Gallery</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2GR030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Planning &amp; Performance</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2GR040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Transition Project Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2GR050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR060000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR060000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Malaysia Campus Project Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR060000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2GR060000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR080000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR080000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Vice Chancellor Administration</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2GR080000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2GR080000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FOO - Faculty of Business &amp; Law</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX010100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX010200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX010300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX010400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Secretariat</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX010100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Administration Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX010200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Resource Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX010300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Environment Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX010400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX010400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FOO - Faculty of Engineering &amp; The Env.</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX020100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX020200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX020300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX020400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Secretariat</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX020100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Admin for Grants &amp; Projects</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX020200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Resource Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX020300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Academic Environment Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX020400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX020400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FOO - Faculty of Health Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX030100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX030200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX030300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX030400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX030500"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Seretariat</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX030100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Administration Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX030200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Resource Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX030300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Envionment Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX030400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030500">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030500">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Regional Centre Admin / Reception</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX030500">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX030500</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FOO - Faculty of Humanities</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX040100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX040500"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX040100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX040100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Secretariat</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX040100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX040100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX040500">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX040500">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Subject Centre - LLAS</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX040500">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX040500</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FOO - Faculty of Medicine</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FOO - Faculty of Natural &amp; Env. Science</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX060000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX060200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX060300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX060400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX060500"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Administration Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX060200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Academic Environment Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX060300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Resource Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX060400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060500">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060500">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Externally Funded Projects</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX060500">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX060500</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FOO - Faculty of Physical &amp; Applied Sci.</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX070000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX070400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX070500"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX070600"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Research Administration</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX070400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070500">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070500">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Externally Funded Projects</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070500">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX070500</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070600">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070600">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Trading / Enterprise</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX070600">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX070600</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FOO - Faculty of Social &amp; Human Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX080000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX080100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX080300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX080400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Secretariat</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX080100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Academic Environment Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX080300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Externally Funded Sci Leaning Cntr SWAP</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/P2TX080400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">P2TX080400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PJ">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PJ">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Mathematics</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PJ">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">PJ</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8PJ010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8PJ020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8PJ030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PJ">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8PJ040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PJ">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/maths/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PK">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PK">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Vice Chancellors Office</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PK">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">PK</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PK">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="https://www.soton.ac.uk/about/professionalservices/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKBZ010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKBZ010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Administration</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKBZ010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKBZ010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKBZ020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKBZ020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Quality Enhancement</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKBZ020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKBZ020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Donor Relations</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKCD030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Annual Giving</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKCD050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD080000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD080000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Alumni Relations</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD080000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKCD080000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD090000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD090000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Major Gift Fundraising</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD090000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKCD090000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD100000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD100000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Research, Analytics &amp; Data</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKCD100000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKCD100000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGRDK0300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGRDK0300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Marketing</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGRDK0300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGRDK0300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGRDK0400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGRDK0400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Digital Media</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGRDK0400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGRDK0400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGRDK0500">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGRDK0500">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Corporate Communications</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGRDK0500">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGRDK0500</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGRDK0600">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGRDK0600">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Public Affairs</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGRDK0600">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGRDK0600</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Recruitment, Outreach &amp; Admissions</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX050000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX050100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX050000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX050300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX050100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX050100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Outreach</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX050100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX050100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX050300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX050300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Admissions</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX050300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX050300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX060000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX060000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Administration</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX060000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX060000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX060000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX060100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX060000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX060200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX060100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX060100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Curriculum &amp; Timetabling</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX060100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX060100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX060200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX060200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Exams, Award &amp; Graduation</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX060200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX060200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Information &amp; Records</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX070000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX070100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX070200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX070300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Business Change</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX070100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Data &amp; Management</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX070200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Records</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX070300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX070300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">SAA - Faculty of Business &amp; Law</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX080000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX080100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX080200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX080300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX080400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Recruitment &amp; Admissions Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX080100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Administration Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX080200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Assessment &amp; Quality Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX080300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Satellite Student &amp; Admin Office</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX080400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX080400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">SAA Fac of Engineering &amp; the Environment</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX090000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX090100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX090200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX090300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX090400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Recruitment &amp; Admissions Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX090100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Admin &amp; Assessment Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX090200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Graduate School Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX090300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Curriculum &amp; Quality Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX090400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX090400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">SAA - Faculty of Health Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX100000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX100100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX100200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX100300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Recruitment &amp; Admissions Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX100100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Admin &amp; Assessment Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX100200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Curriculum, Quality &amp; Placements Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX100300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX100300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">SAA - Faculty of Social &amp; Human Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX110000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX110100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX110200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX110300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX110400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX110500"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX110600"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Recruitment &amp; Admissions Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX110100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Administration Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX110200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Assessment Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX110300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Curriculum &amp; Quality Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX110400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110500">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110500">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Professional Development</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110500">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX110500</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110600">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110600">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Graduate School</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX110600">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX110600</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">SAA - Faculty of Humanities</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX120000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX120100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX120200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX120300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Recruitment &amp; Admissions Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX120100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Administration &amp; Assessment Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX120200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Curriculum &amp; Quality Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX120300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX120300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">SAA - Fac of Natural &amp; Environmental Sci</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX130000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX130100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX130200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX130400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX130500"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX130600"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Recruitment &amp; Admissions Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX130100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Administration &amp; Assessment Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX130200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Curriculum &amp; Quality Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX130400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130500">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130500">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Doctoral Training Centre</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130500">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX130500</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130600">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130600">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">NOC - Campus Administration</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX130600">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX130600</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">SAA - Fac of Physical &amp; Applied Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX140000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX140100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX140200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX140300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX140400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Recruitment &amp; Admissions Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX140100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Administration &amp; Assessment Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX140200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Curriculum &amp; Quality Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX140300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Doctoral Training Centre</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX140400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX140400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">SAA - Faculty of Medicine</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX150000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX150100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX150200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX150300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX150400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKGX150500"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Recruitment &amp; Admissions Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX150100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Administration</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX150200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Placements Timetabling Curriculum &amp; Qual</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX150300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Graduate School</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX150400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150500">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150500">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Assessment</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX150500">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX150500</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX160000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX160000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Director's Office</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKGX160000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKGX160000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Service Delivery</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF110000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF110100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF110200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF110300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF110400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Service Desk</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF110100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Switchboard</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF110200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">ServiceLine Response Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF110300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Coaching &amp; Training</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF110400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF110400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Business Support</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF120000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF120100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF120200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF120300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Logistics &amp; Distribution / H&amp;S</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF120100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Admin &amp; Financial Management</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF120200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Print Centre</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF120300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF120300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">E-Learning &amp; Enablement</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF130000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF130100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF130200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF130300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Managed Learning Environment</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF130100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">E-Learning Enablement</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF130200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">E-Learning Innovation &amp; Production</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF130300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF130300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF140000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF140000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Research Support</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF140000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF140000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF140000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF140100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF140000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF140200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF140100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF140100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Technical Innovation</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF140100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF140100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF140200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF140200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">HPC Support</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF140200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF140200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF150000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF150000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Account Management</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF150000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF150000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF160000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF160000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Service Management &amp; Security</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF160000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF160000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF170000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF170000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Programme Management</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF170000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF170000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF170000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF170100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF170000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF170200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF170100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF170100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Business &amp; System Analysis</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF170100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF170100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF170200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF170200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Project Management &amp; Resourcing</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF170200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF170200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Development</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF180000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF180100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF180200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF180300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Enterprise &amp; Systems Development</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF180100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Web Systems Development</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF180200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">COTS Systems Development</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF180300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF180300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Operations</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF190000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF190100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF190200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKJF190300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Data Centre Operations</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF190100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Enterprise Systems &amp; Desktop Operations</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF190200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Applications &amp; Database Operations</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF190300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF190300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF200000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF200000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">ICT Facilities</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKJF200000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKJF200000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Hartley Library</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKKX020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX070000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX070000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Bibliographical Services</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX070000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKKX070000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX080000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX080000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Acquisitions</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX080000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKKX080000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX090000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX090000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Loans</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX090000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKKX090000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX200000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX200000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Digitisation Unit</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX200000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKKX200000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX300000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX300000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Librarian's Office</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX300000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKKX300000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX400000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX400000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Archives &amp; Special Collections</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX400000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKKX400000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX500000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX500000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Liaison &amp; Site Services</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKKX500000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKKX500000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Directorate</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Management Accounts</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR020600"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR020700"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR020800"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR020900"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR021000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR021100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR021200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR021300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR021400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR021500"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR021600"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020600">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020600">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Company &amp; Tax</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020600">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR020600</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020700">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020700">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FFM Team - Business &amp; Law</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020700">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR020700</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020800">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020800">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FFM Team - Engineering</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020800">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR020800</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020900">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020900">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FFM Team - Health Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR020900">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR020900</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FFM Team - Humanities</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR021000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FFM Team - Medicine</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR021100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FFM Team - Natural &amp; Env Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR021200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FFM Team - Physical &amp; App Science</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR021300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">FFM Team - Social &amp; Human Sciences</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR021400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021500">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021500">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">PSFM Team - CFO</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021500">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR021500</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021600">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021600">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">PSFM Team - R &amp; COO</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR021600">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR021600</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Procurement</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR030100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR030200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR030300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Central Procurement</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR030100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Purchase to Pay</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR030200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Accounts Payable</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR030300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR030300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Financial Accounts</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR040300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR040500"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR040700"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR040900"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR041000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR041100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Student Fees</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR040300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040500">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040500">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Payroll &amp; Pensions</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040500">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR040500</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040700">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040700">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Income &amp; Credit Control</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040700">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR040700</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040900">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040900">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Systems Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR040900">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR040900</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR041000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR041000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Insurance Services</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR041000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR041000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR041100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR041100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Financial Accounts &amp; Treasury</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKRR041100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKRR041100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Planning &amp; Systems</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD010000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD010100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD010200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD010300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Office Management</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD010100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Planning</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD010200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">IT &amp; Systems</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD010300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD010300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Facilities</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD020000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD020100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD020200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD020300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD020400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Building Maintenance</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD020100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020100">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD020101"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020100">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD020102"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020100">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD020103"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020100">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD020104"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020101">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020101">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Hall &amp; Satellite Campuses</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020101">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD020101</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020102">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020102">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Repairs Service</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020102">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD020102</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020103">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020103">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Locksmiths</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020103">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD020103</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020104">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020104">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Winchester School of Art BM</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020104">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD020104</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Helpdesk</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD020200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Campus Services</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD020300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020300">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD020301"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020300">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD020302"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020300">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD020303"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020301">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020301">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Post &amp; Portering</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020301">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD020301</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020302">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020302">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">External Services</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020302">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD020302</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020303">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020303">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Domestic Services</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020303">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD020303</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Security</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD020400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD020400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD030000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD030000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Projects Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD030000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD030000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Engineering</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD040100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD040200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD040300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD040400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD040500"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">M/E Design Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD040100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Electrical Engineering</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD040200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Utilities</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD040300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Controls Engineering</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD040400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040500">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040500">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Mechanical Engineering</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD040500">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD040500</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Directorate</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD050000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD050100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD050100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD050100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Transport</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD050100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD050100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD060000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD060000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">PMU Programme Management Unit</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD060000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD060000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Catering</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD070000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD070100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD070200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD070300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Halls Catering</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD070100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Central Catering</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD070200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Conference &amp; Hospitality</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTD070300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTD070300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">RIS HUB</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTW040000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTW040200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTW040300"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTW040400"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Legal / IP</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTW040200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040300">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040300">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Specialist Support Hub</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040300">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTW040300</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040400">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040400">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Incubation</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW040400">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTW040400</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW050000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW050000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">RIS Faculty</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW050000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTW050000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW050000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTW050100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW050000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTW050200"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW050100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW050100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Research &amp; Enterprise Development</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW050100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTW050100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW050200">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW050200">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Research Support Team</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW050200">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTW050200</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW060000">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW060000">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Projects</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW060000">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTW060000</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW060000">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTW060100"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW060100">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW060100">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">SETSquared</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PKTW060100">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/10CharHRCode">PKTW060100</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PL">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PL">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">English</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/PL">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">PL</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RA">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RA">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Medical Education</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RA">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">RA</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RA">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F5RA010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RA">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F5RA020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RD">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RD">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/about/faculties/faculty_medicine.html"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RG">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RG">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">History</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RG">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">RG</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RJ">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RJ">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.som.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RR">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RR">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Finance</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RR">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">RR</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKRR040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/RR">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/finance/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/SF">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/SF">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Engineering Development Trust</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/SF">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">SF</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/SH">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/SH">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">University Health Service</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/SH">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">SH</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/SH">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.unidocs.co.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/SU">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/SU">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Students Union</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/SU">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">SU</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/SU">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.susu.org/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TB">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TB">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/hr/tempbank/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TD">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TD">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Estates &amp; Facilities</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TD">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">TD</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD060000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TD">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTD070000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TD">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/estates/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TR">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TR">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Southampton Management School</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TR">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">TR</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1TR010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1TR020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1TR030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1TR040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1TR050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1TR060000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1TR070000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F1TR080000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TR">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.management.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TW">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TW">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Research &amp; Innovation Services</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TW">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">TW</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TW">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTW040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TW">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTW050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TW">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/PKTW060000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TW">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.soton.ac.uk/ris/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TX">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TX">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Faculty Operating Offices</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TX">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">TX</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX060000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX070000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/TX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/P2TX080000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/VB">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/VB">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Wessex Institute</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/VB">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">VB</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/VB">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F5VB020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/VL">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/VL">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Foundation Year</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/VL">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">VL</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WF">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WF">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Physics &amp; Astronomy</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WF">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">WF</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7WF010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7WF020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7WF030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WF">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F7WF040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WF">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.phys.soton.ac.uk/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WN">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WN">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Biomedical Research Facility (BRF)</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WN">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">WN</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WR">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WR">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Geography &amp; Environment</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WR">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">WR</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8WR010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8WR020000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8WR030000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8WR040000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8WR050000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8WR060000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WR">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8WR070000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WR">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/geography/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WT">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WT">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Statistical Sciences Research Institute</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WT">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">WT</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WT">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/F8WT010000"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/WT">
- <ns0:homepage xmlns:ns0="http://xmlns.com/foaf/0.1/" rdf:resource="http://www.southampton.ac.uk/s3ri/"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/XX">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/XX">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">Central Unit</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/XX">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">XX</ns0:notation>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/XX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/CY"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/XX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/FX"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/XX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/SF"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/XX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/SH"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/XX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/SU"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/XX">
- <ns0:hasSubOrganization xmlns:ns0="http://www.w3.org/ns/org#" rdf:resource="http://id.southampton.ac.uk/org/ZA"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/ZA">
- <rdf:type rdf:resource="http://www.w3.org/ns/org#Organization"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/ZA">
- <ns0:label xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#">School Mathematics Project</ns0:label>
- </rdf:Description>
- <rdf:Description rdf:about="http://id.southampton.ac.uk/org/ZA">
- <ns0:notation xmlns:ns0="http://www.w3.org/2004/02/skos/core#" rdf:datatype="http://id.southampton.ac.uk/ns/alphaCode">ZA</ns0:notation>
- </rdf:Description>
-</rdf:RDF>
diff --git a/res/raw/ormlite_config.txt b/res/raw/ormlite_config.txt
index 2268ae9..e69f199 100644
--- a/res/raw/ormlite_config.txt
+++ b/res/raw/ormlite_config.txt
@@ -1,3 +1,184 @@
#
-# generated on 2012/02/19 09:50:39
+# generated on 2012/03/07 11:01:39
#
+# --table-start--
+dataClass=net.cbaines.suma.Building
+tableName=buildings
+# --table-fields-start--
+# --field-start--
+fieldName=name
+canBeNull=false
+# --field-end--
+# --field-start--
+fieldName=residential
+canBeNull=false
+# --field-end--
+# --field-start--
+fieldName=outline
+dataPersister=SERIALIZABLE
+# --field-end--
+# --field-start--
+fieldName=point
+dataPersister=SERIALIZABLE
+canBeNull=false
+# --field-end--
+# --field-start--
+fieldName=id
+id=true
+# --field-end--
+# --table-fields-end--
+# --table-end--
+#################################
+# --table-start--
+dataClass=net.cbaines.suma.BusStop
+tableName=busstops
+# --table-fields-start--
+# --field-start--
+fieldName=description
+# --field-end--
+# --field-start--
+fieldName=bay
+# --field-end--
+# --field-start--
+fieldName=routes
+canBeNull=false
+# --field-end--
+# --field-start--
+fieldName=uniLink
+canBeNull=false
+# --field-end--
+# --field-start--
+fieldName=point
+dataPersister=SERIALIZABLE
+canBeNull=false
+# --field-end--
+# --field-start--
+fieldName=id
+id=true
+# --field-end--
+# --table-fields-end--
+# --table-end--
+#################################
+# --table-start--
+dataClass=net.cbaines.suma.BusRoute
+tableName=busroutes
+# --table-fields-start--
+# --field-start--
+fieldName=id
+id=true
+# --field-end--
+# --field-start--
+fieldName=code
+# --field-end--
+# --field-start--
+fieldName=label
+canBeNull=false
+# --field-end--
+# --field-start--
+fieldName=forwardDirection
+# --field-end--
+# --field-start--
+fieldName=reverseDirection
+# --field-end--
+# --field-start--
+fieldName=uniLink
+canBeNull=false
+# --field-end--
+# --table-fields-end--
+# --table-end--
+#################################
+# --table-start--
+dataClass=net.cbaines.suma.RouteStop
+tableName=routestops
+# --table-fields-start--
+# --field-start--
+fieldName=id
+generatedId=true
+# --field-end--
+# --field-start--
+fieldName=sequence
+# --field-end--
+# --field-start--
+fieldName=busStop
+columnName=stop_id
+foreign=true
+indexName=routestops_routestop_idx
+# --field-end--
+# --field-start--
+fieldName=busRoute
+columnName=route_id
+foreign=true
+indexName=routestops_routestop_idx
+# --field-end--
+# --table-fields-end--
+# --table-end--
+#################################
+# --table-start--
+dataClass=net.cbaines.suma.Site
+tableName=sites
+# --table-fields-start--
+# --field-start--
+fieldName=name
+canBeNull=false
+# --field-end--
+# --field-start--
+fieldName=outline
+dataPersister=SERIALIZABLE
+# --field-end--
+# --field-start--
+fieldName=point
+dataPersister=SERIALIZABLE
+canBeNull=false
+# --field-end--
+# --field-start--
+fieldName=id
+id=true
+# --field-end--
+# --table-fields-end--
+# --table-end--
+#################################
+# --table-start--
+dataClass=net.cbaines.suma.Bus
+tableName=buses
+# --table-fields-start--
+# --field-start--
+fieldName=gid
+generatedId=true
+# --field-end--
+# --field-start--
+fieldName=id
+# --field-end--
+# --field-start--
+fieldName=route
+canBeNull=false
+foreign=true
+# --field-end--
+# --field-start--
+fieldName=direction
+# --field-end--
+# --field-start--
+fieldName=destination
+foreign=true
+# --field-end--
+# --field-start--
+fieldName=destinationString
+# --field-end--
+# --table-fields-end--
+# --table-end--
+#################################
+# --table-start--
+dataClass=net.cbaines.suma.POI
+tableName=poi
+# --table-fields-start--
+# --field-start--
+fieldName=point
+dataPersister=SERIALIZABLE
+canBeNull=false
+# --field-end--
+# --field-start--
+fieldName=id
+id=true
+# --field-end--
+# --table-fields-end--
+# --table-end--
+#################################
diff --git a/res/raw/u6.gpx b/res/raw/u6.gpx
index 5356358..c2680e0 100644
--- a/res/raw/u6.gpx
+++ b/res/raw/u6.gpx
@@ -311,19 +311,21 @@
</trkpt>
<trkpt lat="50.911125525144065" lon="-1.3997288629031808">
</trkpt>
- <trkpt lat="50.91103994792294" lon="-1.400066435302374">
+ <trkpt lat="50.911078888689055" lon="-1.4000418719938237">
</trkpt>
- <trkpt lat="50.910947315753624" lon="-1.4003299819009352">
+ <trkpt lat="50.91097696389885" lon="-1.4002541865488376">
</trkpt>
- <trkpt lat="50.910277056343" lon="-1.4003415443581355">
+ <trkpt lat="50.910828657797595" lon="-1.400307153273035">
+ </trkpt>
+ <trkpt lat="50.910273301468834" lon="-1.4003594094939522">
</trkpt>
<trkpt lat="50.91016089223864" lon="-1.400574693014231">
</trkpt>
- <trkpt lat="50.91012129039976" lon="-1.401284775406461">
+ <trkpt lat="50.9100912512976" lon="-1.401279812868734">
</trkpt>
- <trkpt lat="50.91004933459241" lon="-1.4015113722252">
+ <trkpt lat="50.91000114678214" lon="-1.401503432164837">
</trkpt>
- <trkpt lat="50.90980214895626" lon="-1.4016678478426237">
+ <trkpt lat="50.90970765023402" lon="-1.4016638778124424">
</trkpt>
<trkpt lat="50.907124626313696" lon="-1.4014818549362948">
</trkpt>
@@ -557,19 +559,27 @@
</trkpt>
<trkpt lat="50.9071240413654" lon="-1.4014866918590898">
</trkpt>
- <trkpt lat="50.90980651848476" lon="-1.4016648273423462">
+ <trkpt lat="50.909707013211666" lon="-1.40166184981971">
+ </trkpt>
+ <trkpt lat="50.90981987858249" lon="-1.4017229520499022">
+ </trkpt>
+ <trkpt lat="50.90998472289211" lon="-1.4016634779021215">
+ </trkpt>
+ <trkpt lat="50.91015807367404" lon="-1.4015830847909456">
+ </trkpt>
+ <trkpt lat="50.910454062463955" lon="-1.4016441015201093">
</trkpt>
- <trkpt lat="50.9100534525073" lon="-1.4015047464733892">
+ <trkpt lat="50.91079452209152" lon="-1.4015562870872205">
</trkpt>
- <trkpt lat="50.91012306047019" lon="-1.4012931971122498">
+ <trkpt lat="50.910986788159654" lon="-1.4013840966236517">
</trkpt>
- <trkpt lat="50.91016061102434" lon="-1.4005688652786905">
+ <trkpt lat="50.911053368882655" lon="-1.4010864625463697">
</trkpt>
- <trkpt lat="50.9102752862784" lon="-1.4003387371228724">
+ <trkpt lat="50.911031617260385" lon="-1.4005451922624754">
</trkpt>
- <trkpt lat="50.91095259624665" lon="-1.400331296209488">
+ <trkpt lat="50.91106012598475" lon="-1.4003039256656749">
</trkpt>
- <trkpt lat="50.9110417179585" lon="-1.4000692425376366">
+ <trkpt lat="50.91107977370611" lon="-1.4000425738026396">
</trkpt>
<trkpt lat="50.911122363354835" lon="-1.3997287322754564">
</trkpt>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 6126937..1009d3f 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -1,24 +1,55 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
- <string name="map_activity_search_hint">Search</string>
- <string name="menu_find">Find</string>
- <string name="menu_preferences">Preferences</string>
- <string name="menu_view">View</string>
- <string name="menu_find_my_location">Find my Location</string>
<string name="app_name">Southampton University Map</string>
- <string name="legal_message">Southampton University Map comes with ABSOLUTELY NO WARRANTY; do not rely on the data or functionality provided by this application. This is free software, and you are welcome to redistribute it under certain conditions; expand the Licence item above for more details.</string>
- <string name="building_residential">Residential Building</string>
- <string name="building_non_residential">Non-Residential Building</string>
- <string name="pref_bus_stop">Bus Stops</string>
+
+ <!-- General -->
<string name="U1">U1</string>
<string name="U1N">U1N</string>
<string name="U2">U2</string>
<string name="U6">U6</string>
<string name="U9">U9</string>
+
+ <!-- Map Activity -->
+ <string name="menu_find">Find</string>
+ <string name="menu_preferences">Preferences</string>
+ <string name="menu_view">View</string>
+ <string name="menu_find_my_location">Find my Location</string>
+ <string name="pref_bus_stop">Bus Stops</string>
<string name="menu_about">About</string>
<string name="menu_favourites">Favourites</string>
- <string name="favourites_dialog_title">Favourites</string>
+ <string name="map_activity_search_hint">Search for buildings, and bus stops</string>
+
+ <!-- Welcome Dialog -->
+ <string name="welcome_dialog_title">Southampton University Map App</string>
+ <string name="welcome_dialog_version">Version 0.7 (alpha)</string>
+ <string name="welcome_dialog_copyright">© 2011 Christopher Baines</string>
+ <string name="welcome_dialog_upgrade_message">Thanks for upgrading this app, and it\'s hoped that its better for you than the previous version. Noteable changes include\:\n
+ • New Search\n
+ • Other\n
+
+\nThis program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.\n
+
+\nThis program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.</string>
+ <string name="welcome_dialog_install_message">Welcome to the Southampton University Map App. Noteable features include\:\n
+ • Search for Buildings\n
+ • Get Live Bus Times\n
+
+\nThis program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.\n
+
+\nThis program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.</string>
<!-- Help Messages -->
<string name="map_help_message">You can drag the map to move it, you can use pinch motions to zoom in and out, this can also be done with the buttons at the bottom of the screen. Taping the building markers will show you there full name, and tapping the bus stop markers will show the live times at that stop. Presing and holding a marker, will add the item to the favourites list.</string>
@@ -28,28 +59,13 @@
<string name="view_help_message">Use the options in the View dialog to enable and disable the map elements.</string>
<string name="about_help_message">The About screen displays the help messages and also the contact details of the developer. You also have the option of making a Bitcoin donation using the Donate button at the bottom. WARNING, the donation address is not private as it is hardcoded in to the app.</string>
<string name="favourites_help_message">The favourites dialog includes a list of buildings or bus stops marked as favourites, this is meant to allow for easier access to frequently used locations.</string>
- <string name="licence_help_message">Southampton University Map App Copyright © 2011 Christopher Baines\n
-\n
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.\n
-\n
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.\n
-\n
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</string>
<string name="credits_help_message">Data: Map Icons: From the "Map Icons Collection" (http://mapicons.nicolasmollet.com). Map Tiles: From the Mapnik project, through the OSMDroid libary. Database: Using the ORMLite libary.</string>
<string name="donate_button">Donate</string>
<string name="bitcoin_error_message">You appear to have no bitcoin client installed, or at least none that listen for bitcoin uri\'s. Either install such a client, or just send coins via any method from any device to the address below.</string>
<string name="preferences">Preferences</string>
<string name="favourites_dialog_message">No Favourite\'s. To add a building or bus stop to the favourites list, just press and hold it on the map.</string>
- <!-- View Strings -->
+ <!-- View Dialog -->
<string-array name="uniLinkBusRoutes">
<item>U1</item>
<item>U1N</item>
@@ -103,11 +119,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
<string name="menu_previous_stop">Previous</string>
<string name="menu_next_stop">Next</string>
<string name="menu_refresh_stop">Refresh</string>
+ <string name="menu_refresh_stops">Refresh</string>
<!-- About Strings -->
<string name="about">About</string>
<string name="about_version">Version</string>
- <string name="about_version_summary">0.6.5 (alpha)</string>
+ <string name="about_version_summary">0.7 (alpha)</string>
<string name="about_copyright">Copyright</string>
<string name="about_copyright_summary">© 2012, Christopher Baines</string>
<string name="about_license">License</string>
@@ -140,11 +157,15 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
<string name="bus_stop_stop_view_on_click_toast_unidentified_message">Bus schedules not available for unidentified buses</string>
<!-- Bus Specific Stop View Strings -->
- <string name="bus_stop_view_on_click_toast_help_message">Hold to view the bus stop</string>
+ <string name="bus_stop_view_on_click_toast_help_message">Hold to view the bus stop on the map</string>
<string name="bus_stop_view_on_click_toast_unidentified_message">Arrival prediction not available for timetabled buses</string>
<!-- Bus Activity -->
<string name="bus_activity_destination_label">Destination:\u0020</string>
<string name="bus_activity_no_destination_message">No given destination</string>
+ <!-- Favourites Dialog -->
+ <string name="favourites_dialog_title">Favourites</string>
+ <string name="welcome_dialog_button_text">Continue</string>
+
</resources> \ No newline at end of file