1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508
|
<?xml version='1.0' encoding='utf-8'?>
<osgb:FeatureCollection xmlns:osgb="http://www.ordnancesurvey.co.uk/xml/namespaces/osgb" xmlns:gml="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.ordnancesurvey.co.uk/xml/namespaces/osgb http://www.ordnancesurvey.co.uk/xml/schema/v7/OSDNFFeatures.xsd" fid="GDS-58116-1">
<gml:description>Ordnance Survey, (c) Crown Copyright. All rights reserved, 2009-07-30</gml:description>
<gml:boundedBy>
<gml:null>unknown</gml:null>
</gml:boundedBy>
<osgb:queryTime>2009-07-30T02:35:17</osgb:queryTime>
<osgb:queryExtent>
<osgb:Rectangle srsName="osgb:BNG">
<gml:coordinates>291000.000,92000.000 293000.000,94000.000</gml:coordinates>
</osgb:Rectangle>
</osgb:queryExtent>
<topographicMember>
<TopographicArea fid="osgb1000000347738391">
<featureCode>10123</featureCode>
<version>10</version>
<versionDate>2008-03-04</versionDate>
<theme>Roads Tracks And Paths</theme>
<calculatedAreaValue>3674.503650</calculatedAreaValue>
<changeHistory>
<changeDate>2001-03-21</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2001-03-22</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2003-03-06</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2004-02-19</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-02-11</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-02-19</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-02-21</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<descriptiveGroup>Path</descriptiveGroup>
<make>Manmade</make>
<physicalLevel>50</physicalLevel>
<polygon>
<Polygon srsName="osgb:BNG">
<outerBoundaryIs>
<LinearRing>
<coordinates>290949.250,93538.150 290948.850,93532.000 290948.100,93518.250
290947.700,93513.700 290932.200,93522.800 290929.900,93525.700 290929.550,93524.400
290931.550,93522.100 290947.650,93512.600 290947.300,93510.300 290946.550,93507.000
290946.000,93505.100 290945.250,93502.650 290944.200,93500.000 290943.700,93498.300
290943.050,93495.550 290942.050,93492.150 290940.900,93488.750 290939.800,93485.950
290938.600,93483.200 290937.350,93480.450 290935.500,93476.650 290933.700,93472.900
290927.150,93458.650 290919.150,93441.050 290916.400,93434.700 290913.750,93428.200
290911.450,93422.450 290910.920,93421.060 290908.800,93421.940 290898.660,93426.180
290896.910,93426.910 290896.520,93424.900 290897.870,93424.330 290892.920,93412.690
290880.980,93385.400 290865.970,93368.890 290862.320,93364.880 290859.830,93362.140
290854.450,93356.230 290850.120,93351.480 290845.770,93346.700 290841.240,93341.720
290837.030,93337.090 290834.630,93334.450 290835.630,93332.440 290841.860,93339.280
290867.520,93367.480 290883.390,93384.530 290900.390,93423.280 290908.030,93420.090
290910.200,93419.180 290909.250,93416.700 290907.800,93412.900 290906.400,93409.050
290903.750,93401.300 290901.850,93395.350 290900.050,93389.350 290898.250,93383.100
290896.600,93376.800 290895.300,93371.600 290894.100,93366.350 290892.650,93359.900
290889.900,93356.300 290888.300,93354.050 290884.150,93347.550 290881.950,93344.350
290880.150,93342.100 290879.050,93341.000 290878.150,93340.150 290877.250,93339.350
290876.300,93338.600 290875.000,93337.650 290873.850,93336.850 290872.700,93336.100
290856.850,93329.050 290857.110,93328.610 290858.350,93326.500 290869.000,93330.900
290869.650,93331.100 290870.350,93331.250 290871.100,93331.400 290872.100,93331.500
290872.550,93331.550 290873.550,93331.550 290874.050,93331.450 290874.600,93331.300
290875.600,93330.900 290876.200,93330.550 290877.350,93329.650 290878.550,93328.400
290882.000,93324.500 290885.650,93320.350 290885.750,93319.650 290885.400,93316.700
290885.150,93313.000 290884.950,93309.350 290884.750,93302.050 290884.650,93300.000
290884.550,93296.700 290884.400,93291.350 290884.050,93276.400 290884.100,93266.250
290884.100,93263.000 290884.600,93250.550 290885.000,93242.650 290885.300,93238.500
290885.650,93234.350 290886.150,93230.150 290886.800,93225.350 290887.650,93220.600
290888.500,93215.800 290889.800,93208.300 290890.550,93204.600 290891.400,93200.900
290892.300,93197.250 290893.300,93193.600 290896.350,93182.300 290899.050,93173.250
290902.250,93162.650 290902.850,93160.800 290902.950,93160.400 290905.600,93151.650
290906.100,93149.950 290906.550,93148.250 290906.850,93146.500 290907.100,93144.500
290907.200,93142.550 290907.200,93140.550 290907.150,93138.750 290907.000,93137.000
290906.700,93135.200 290905.900,93131.050 290905.200,93128.650 290904.350,93126.300
290903.600,93124.250 290902.800,93122.200 290901.200,93119.000 290896.500,93109.450
290895.650,93107.700 290894.850,93105.900 290894.200,93104.050 290893.800,93102.500
290893.450,93100.950 290893.200,93099.350 290892.800,93094.550 290892.150,93088.700
290891.500,93080.450 290890.600,93070.500 290890.350,93062.200 290889.500,93051.000
290889.200,93040.900 290888.900,93036.250 290888.500,93031.600 290888.000,93027.700
290887.500,93023.750 290886.500,93016.950 290885.250,93008.850 290883.250,93000.000
290882.750,92997.600 290882.600,92995.800 290881.900,92991.750 290880.850,92987.300
290880.250,92985.200 290879.350,92982.300 290877.350,92977.050 290875.250,92972.000
290874.800,92970.900 290874.350,92969.750 290873.850,92968.650 290873.300,92967.600
290872.400,92966.050 290871.100,92966.500 290869.800,92961.200 290869.250,92961.150
290868.800,92961.400 290868.650,92961.450 290868.250,92961.900 290867.900,92962.450
290867.700,92963.250 290867.600,92964.050 290867.600,92964.950 290867.700,92965.800
290867.850,92966.600 290868.100,92967.250 290868.960,92970.880 290867.250,92971.250
290866.450,92967.800 290866.350,92967.200 290866.150,92965.800 290866.100,92965.150
290866.050,92964.350 290866.100,92963.600 290866.200,92962.900 290866.400,92962.200
290866.500,92961.950 290866.850,92961.350 290867.300,92960.800 290867.600,92960.550
290868.150,92960.100 290868.800,92959.800 290869.450,92959.750 290866.350,92954.450
290872.150,92951.500 290877.100,92947.700 290884.300,92942.300 290891.900,92936.350
290901.500,92929.300 290909.500,92923.200 290915.350,92918.750 290919.850,92915.200
290924.850,92910.850 290925.700,92910.100 290926.550,92909.300 290927.400,92908.550
290928.600,92907.300 290929.350,92906.400 290930.050,92905.500 290931.100,92903.950
290931.550,92903.450 290933.400,92901.400 290935.850,92898.200 290936.650,92897.200
290942.300,92889.900 290946.500,92884.250 290951.350,92876.750 290953.800,92872.850
290956.550,92867.950 290958.300,92864.600 290958.650,92863.900 290960.600,92860.800
290965.100,92851.800 290968.200,92845.200 290971.500,92838.600 290974.450,92833.250
290978.450,92826.050 290983.650,92817.150 290988.300,92808.450 290988.700,92807.750
290988.220,92806.800 290988.600,92806.450 290989.000,92806.050 290989.300,92805.600
290989.700,92805.050 290993.050,92799.950 291000.000,92788.910 291002.720,92783.510
291007.150,92776.850 291013.650,92766.350 291016.650,92761.650 291018.100,92759.300
291019.700,92756.300 291021.250,92753.250 291024.950,92746.350 291031.250,92734.200
291037.600,92722.250 291044.750,92708.650 291045.300,92707.700 291045.420,92707.490
291045.850,92706.700 291046.300,92705.700 291046.700,92704.650 291047.000,92703.600
291047.750,92702.400 291048.150,92701.400 291048.550,92700.100 291049.050,92698.800
291049.600,92697.850 291050.150,92696.950 291050.750,92696.050 291056.400,92686.850
291064.600,92674.600 291071.100,92665.100 291072.430,92663.070 291077.690,92666.600
291077.300,92666.900 291076.700,92666.950 291076.100,92666.850 291075.550,92666.600
291075.100,92666.200 291066.100,92679.150 291056.450,92693.650 291051.650,92701.550
291050.900,92703.350 291050.800,92703.550 291050.700,92703.850 291050.600,92704.050
291050.600,92704.250 291050.700,92704.500 291050.850,92704.750 291053.050,92707.450
291063.150,92696.600 291077.400,92681.600 291081.950,92677.050 291083.600,92675.300
291085.150,92673.450 291087.350,92670.950 291089.550,92668.350 291091.150,92666.300
291092.800,92664.200 291094.500,92662.200 291095.600,92660.800 291096.900,92659.400
291097.600,92658.800 291098.350,92658.250 291099.290,92657.810 291098.900,92661.950
291098.860,92662.400 291098.350,92662.600 291098.100,92662.750 291097.750,92663.000
291097.400,92663.300 291096.350,92664.350 291088.150,92674.000 291079.950,92682.750
291070.300,92693.300 291059.750,92704.500 291058.800,92705.450 291058.300,92706.050
291057.850,92706.600 291056.750,92708.200 291055.300,92710.300 291053.700,92711.800
291052.350,92713.300 291051.200,92714.450 291049.700,92715.700 291048.850,92716.300
291048.000,92716.850 291044.350,92720.750 291043.550,92720.650 291043.100,92720.650
291042.950,92720.700 291042.750,92720.850 291042.650,92721.000 291042.550,92721.200
291038.600,92728.750 291032.650,92740.400 291027.550,92750.200 291023.800,92757.550
291022.550,92759.950 291021.250,92762.300 291020.250,92763.800 291019.250,92765.350
291018.450,92766.600 291017.600,92767.850 291014.150,92773.350 291009.800,92780.150
291023.900,92780.250 291037.650,92780.350 291037.750,92775.100 291057.000,92775.250
291057.250,92780.600 291061.450,92780.640 291061.450,92796.650 291057.000,92796.750
291056.950,92794.090 291058.950,92794.100 291059.000,92784.000 291054.600,92783.950
291054.600,92780.450 291054.550,92777.300 291050.900,92777.200 291050.600,92776.950
291040.600,92776.800 291040.550,92777.500 291040.600,92781.650 291040.590,92782.900
291039.600,92782.900 291039.600,92787.300 291040.580,92787.300 291040.570,92788.600
291040.550,92794.150 291044.450,92794.200 291044.450,92793.650 291045.300,92793.650
291045.300,92794.050 291045.150,92796.450 291037.650,92796.400 291037.550,92795.850
291035.600,92795.700 291035.400,92794.100 291037.650,92794.100 291037.750,92782.900
291032.900,92782.900 291023.050,92782.900 291007.900,92782.800 291000.000,92797.050
290996.800,92803.050 290991.900,92811.450 290987.350,92819.300 290983.500,92825.800
290979.700,92832.250 290974.250,92841.800 290970.600,92848.900 290967.350,92855.200
290965.150,92860.150 290960.400,92870.600 290958.500,92874.350 290956.600,92877.850
290954.400,92881.350 290951.700,92885.250 290949.200,92888.750 290946.700,92892.100
290943.350,92896.300 290940.850,92899.300 290937.300,92903.300 290934.600,92906.200
290928.950,92912.100 290925.900,92914.850 290921.900,92918.250 290914.350,92924.450
290909.200,92928.450 290894.200,92939.450 290903.150,92947.800 290903.650,92948.300
290904.000,92948.500 290904.300,92948.700 290904.650,92948.850 290905.250,92949.050
290905.600,92949.100 290906.000,92949.150 290906.350,92949.150 290906.750,92949.100
290912.200,92948.850 290915.600,92952.250 290915.650,92955.400 290914.700,92956.650
290912.550,92956.650 290912.600,92953.750 290912.250,92953.750 290910.500,92952.300
290910.600,92952.050 290907.800,92952.050 290905.950,92954.000 290906.000,92956.650
290903.900,92957.000 290902.100,92956.350 290902.650,92953.650 290902.850,92952.850
290902.900,92952.400 290902.900,92951.950 290902.850,92951.200 290902.800,92950.800
290902.650,92950.350 290902.500,92950.000 290902.300,92949.700 290902.100,92949.450
290901.600,92948.950 290892.500,92940.900 290890.650,92942.200 290886.800,92945.150
290883.000,92947.950 290879.050,92950.900 290876.350,92952.950 290874.200,92954.850
290873.600,92955.700 290873.350,92956.150 290873.100,92956.700 290872.900,92957.200
290872.650,92958.050 290872.550,92958.600 290872.500,92959.150 290872.500,92959.750
290872.550,92960.300 290872.600,92960.800 290872.750,92961.300 290872.850,92961.800
290873.050,92962.400 290873.300,92963.000 290873.600,92963.600 290873.900,92964.150
290874.150,92964.750 290876.250,92969.650 290878.450,92974.850 290880.450,92979.800
290881.500,92982.750 290882.350,92985.350 290883.500,92989.150 290884.000,92991.450
290884.250,92992.900 290884.700,92996.000 290884.850,92997.850 290885.300,93000.000
290887.100,93010.150 290888.600,93019.350 290889.550,93027.250 290890.100,93032.000
290890.250,93033.150 290890.350,93034.300 290890.650,93038.000 290890.750,93040.300
290890.900,93042.600 290891.550,93054.100 290892.100,93064.400 290892.300,93068.550
290892.550,93072.650 290892.900,93077.850 290893.350,93083.050 290893.800,93087.050
290894.200,93091.050 290894.550,93095.050 290894.700,93096.950 290894.900,93098.800
290895.250,93100.750 290895.650,93102.700 290896.200,93104.600 290896.850,93106.350
290897.600,93108.050 290898.400,93109.700 290902.200,93117.400 290903.200,93119.300
290904.150,93121.250 290905.000,93123.200 290905.750,93125.200 290906.400,93127.200
290907.000,93129.250 290907.450,93130.950 290907.850,93132.650 290908.200,93134.350
290908.500,93136.100 290908.650,93137.800 290908.800,93139.450 290908.800,93142.800
290908.650,93144.500 290908.350,93146.600 290907.950,93148.700 290907.400,93150.750
290903.750,93162.700 290899.450,93177.250 290897.750,93183.250 290896.150,93189.300
290894.850,93194.100 290893.600,93198.900 290892.450,93203.750 290891.550,93208.150
290890.750,93212.550 290889.900,93216.900 290888.350,93224.750 290887.350,93233.350
290886.600,93244.050 290886.200,93250.450 290885.900,93256.900 290885.500,93265.850
290885.400,93270.350 290885.400,93274.850 290885.500,93279.900 290885.750,93284.950
290885.950,93290.050 290886.050,93297.000 290886.250,93304.000 290886.400,93307.950
290886.600,93311.900 290886.850,93315.800 290887.200,93319.750 290887.700,93323.700
290888.300,93327.500 290889.000,93331.250 290889.750,93335.050 290891.650,93343.850
290893.450,93353.250 290894.200,93357.350 290894.950,93361.400 290895.600,93364.750
290896.200,93368.150 290897.000,93371.800 290897.900,93375.450 290898.800,93379.050
290899.800,93382.700 290900.800,93386.300 290901.850,93389.900 290903.150,93393.750
290904.500,93397.550 290905.900,93401.400 290909.250,93411.200 290913.800,93423.700
290917.700,93432.900 290923.450,93445.800 290929.650,93459.450 290937.300,93475.400
290938.850,93478.650 290940.350,93481.900 290941.400,93484.250 290942.400,93486.600
290943.300,93489.000 290944.150,93491.650 290944.950,93494.300 290945.600,93497.000
290946.050,93498.700 290946.330,93500.000 290947.400,93502.800 290948.300,93505.950
290948.750,93507.850 290949.650,93512.050 290950.050,93515.200 290950.200,93516.800
290950.400,93519.500 290950.550,93522.200 290951.250,93534.500 290951.430,93537.230
290949.250,93538.150
</coordinates>
</LinearRing>
</outerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>290886.650,93326.950 290884.500,93328.550 290883.000,93329.600
290880.200,93331.350 290878.600,93332.250 290875.200,93334.000 290877.300,93335.450
290878.800,93336.550 290880.150,93337.650 290881.500,93338.800 290882.750,93340.000
290883.850,93341.200 290884.800,93342.300 290885.650,93343.400 290887.350,93345.700
290888.150,93346.850 290890.500,93350.450 290891.600,93352.300 290892.050,93352.200
290891.200,93348.600 290890.350,93344.800 290888.200,93334.750 290886.650,93326.950
</coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
</polygon>
<fid>osgb1000000347738391</fid><filename>stetl</filename><themes>Roads Tracks And Paths</themes><descriptiveGroups>Path</descriptiveGroups></TopographicArea>
</topographicMember>
<topographicMember>
<TopographicArea fid="osgb1000000347738429">
<featureCode>10056</featureCode>
<version>9</version>
<versionDate>2008-02-28</versionDate>
<theme>Land</theme>
<calculatedAreaValue>57091.280000</calculatedAreaValue>
<changeHistory>
<changeDate>2001-03-09</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2001-03-22</changeDate>
<reasonForChange>Reclassified</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2003-02-28</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-02-19</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<descriptiveGroup>General Surface</descriptiveGroup>
<make>Natural</make>
<physicalLevel>50</physicalLevel>
<polygon>
<Polygon srsName="osgb:BNG">
<outerBoundaryIs>
<LinearRing>
<coordinates>290857.050,92778.000 290858.100,92770.250 290859.250,92762.350
290860.350,92754.800 290861.450,92747.000 290862.600,92739.000 290863.650,92731.450
290864.850,92723.850 290865.950,92715.950 290867.100,92708.150 290868.250,92700.400
290869.450,92692.700 290870.550,92684.650 290871.700,92676.900 290872.850,92669.150
290873.950,92661.550 290874.900,92655.200 290875.320,92655.380 290875.650,92655.500
290876.000,92655.700 290876.250,92655.850 290876.650,92656.050 290877.050,92656.300
290877.450,92656.500 290877.850,92656.750 290878.150,92656.950 290878.500,92657.100
290879.000,92657.350 290879.550,92657.600 290879.950,92657.800 290880.350,92658.050
290880.700,92658.250 290881.050,92658.500 290881.450,92658.750 290881.800,92659.000
290882.150,92659.200 290882.500,92659.350 290883.300,92659.750 290883.620,92659.930
290883.780,92660.020 290883.980,92660.130 290884.880,92657.690 290896.030,92627.300
290913.940,92577.960 290916.060,92571.980 290918.800,92564.250 290919.800,92561.420
290922.170,92554.730 290928.850,92536.210 290930.880,92530.580 290932.760,92525.390
290934.510,92520.520 290936.280,92515.630 290938.180,92510.350 290940.420,92504.160
290941.920,92500.000 290942.680,92497.880 290944.400,92493.120 290946.130,92488.330
290948.160,92482.690 290954.620,92464.790 290957.720,92456.370 290958.380,92454.580
290960.320,92449.330 290960.940,92447.640 290962.740,92442.770 290994.070,92454.120
290991.980,92459.960 291000.000,92462.670 291019.500,92469.260 291072.610,92481.500
291081.280,92483.720 291101.620,92493.390 291105.950,92495.450 291104.730,92500.000
291102.750,92508.250 291100.000,92518.900 291099.900,92519.350 291099.650,92520.250
291099.450,92521.100 291099.050,92522.900 291098.850,92523.750 291098.700,92524.650
291098.500,92525.550 291089.150,92568.400 291092.550,92569.750 291095.350,92570.800
291094.060,92575.620 291099.750,92577.150 291098.100,92588.450 291095.350,92606.650
291092.950,92625.200 291092.820,92625.400 291085.150,92636.850 291076.250,92650.350
291069.160,92660.870 291068.000,92662.600 291065.500,92666.500 291046.800,92695.450
291045.550,92702.250 291045.450,92702.850 291045.350,92703.500 291045.250,92704.250
291045.150,92705.050 291045.150,92705.750 291045.200,92706.400 291045.420,92707.490
291045.300,92707.700 291044.750,92708.650 291037.600,92722.250 291031.250,92734.200
291024.950,92746.350 291021.250,92753.250 291019.700,92756.300 291018.100,92759.300
291016.650,92761.650 291013.650,92766.350 291007.150,92776.850 291002.720,92783.510
291000.000,92787.600 290996.850,92792.200 290988.000,92806.350 290988.220,92806.800
290988.000,92807.000 290987.550,92807.300 290986.050,92808.050 290985.550,92808.250
290985.000,92808.500 290984.500,92808.700 290982.600,92809.450 290981.100,92809.850
290980.300,92810.000 290976.650,92810.650 290976.050,92812.450 290981.300,92811.850
290982.950,92811.400 290983.900,92811.100 290985.350,92810.550 290986.250,92810.100
290986.950,92809.650 290987.400,92809.300 290987.850,92808.900 290988.300,92808.450
290983.650,92817.150 290983.200,92817.000 290981.200,92820.600 290980.100,92821.850
290979.590,92822.520 290918.360,92786.590 290910.470,92799.410 290861.420,92789.150
290855.550,92787.990 290857.050,92778.000
</coordinates>
</LinearRing>
</outerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>291016.200,92535.400 291014.300,92541.350 291022.550,92543.950
291024.450,92538.000 291016.200,92535.400
</coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
</polygon>
<fid>osgb1000000347738429</fid><filename>stetl</filename><themes>Land</themes><descriptiveGroups>General Surface</descriptiveGroups></TopographicArea>
</topographicMember>
<topographicMember>
<TopographicLine fid="osgb1000000347735642">
<featureCode>10046</featureCode>
<version>3</version>
<versionDate>2008-02-28</versionDate>
<theme>Land</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1994-01-26</changeDate>
<reasonForChange>Modified</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-02-11</changeDate>
<reasonForChange>Restructured</reasonForChange>
</changeHistory>
<descriptiveGroup>General Feature</descriptiveGroup>
<physicalLevel>50</physicalLevel>
<physicalPresence>Obstructing</physicalPresence>
<polyline>
<LineString srsName="osgb:BNG">
<coordinates>290988.220,92806.800 290988.000,92806.350 290996.850,92792.200 291000.000,92787.600
291002.720,92783.510
</coordinates>
</LineString>
</polyline>
<fid>osgb1000000347735642</fid><filename>stetl</filename><themes>Land</themes><descriptiveGroups>General Feature</descriptiveGroups></TopographicLine>
</topographicMember>
<topographicMember>
<TopographicLine fid="osgb1000000347735857">
<featureCode>10046</featureCode>
<version>2</version>
<versionDate>2001-11-11</versionDate>
<theme>Land</theme>
<theme>Roads Tracks And Paths</theme>
<accuracyOfPosition>Unknown</accuracyOfPosition>
<changeHistory>
<changeDate>1994-01-26</changeDate>
<reasonForChange>Modified</reasonForChange>
</changeHistory>
<descriptiveGroup>General Feature</descriptiveGroup>
<physicalLevel>50</physicalLevel>
<physicalPresence>Edge / Limit</physicalPresence>
<polyline>
<LineString srsName="osgb:BNG">
<coordinates>290988.220,92806.800 290988.600,92806.450 290989.000,92806.050 290989.300,92805.600
290989.700,92805.050 290993.050,92799.950 291000.000,92788.910 291002.720,92783.510
</coordinates>
</LineString>
</polyline>
<fid>osgb1000000347735857</fid><filename>stetl</filename><themes>Land, Roads Tracks And Paths</themes><descriptiveGroups>General Feature</descriptiveGroups></TopographicLine>
</topographicMember>
<boundaryMember>
<BoundaryLine fid="osgb1000000738106555">
<featureCode>10128</featureCode>
<version>6</version>
<versionDate>2008-02-28</versionDate>
<theme>Administrative Boundaries</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>2000-08-15</changeDate>
<reasonForChange>Reclassified</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2003-03-18</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2007-11-02</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-02-11</changeDate>
<reasonForChange>Restructured</reasonForChange>
</changeHistory>
<descriptiveGroup>Political Or Administrative</descriptiveGroup>
<descriptiveTerm>Electoral</descriptiveTerm>
<physicalLevel>50</physicalLevel>
<physicalPresence>Boundary</physicalPresence>
<polyline>
<LineString srsName="osgb:BNG">
<coordinates>290929.400,92373.750 290930.850,92373.900 290931.800,92373.900 290933.300,92373.750
290934.600,92373.600 290936.450,92373.350 290937.000,92372.650 290937.360,92371.930
290940.890,92371.480 290944.350,92371.050 290952.840,92369.970 290956.300,92370.150
290958.950,92370.000 290961.650,92369.850 290964.450,92369.700 290966.850,92369.450
290969.300,92369.200 290973.800,92369.000 290975.800,92368.850 290979.050,92368.600
290980.300,92368.500 290981.850,92368.500 290983.050,92368.300 290984.300,92368.050
290986.750,92367.700 290989.200,92367.200 290991.100,92366.750 290993.000,92366.350
290996.000,92365.950 290996.600,92365.800 290997.150,92365.650 290997.750,92365.550
290998.350,92365.550 290998.600,92365.600 290998.950,92365.600 290999.300,92365.550
290999.850,92365.500 291000.000,92365.570 291011.400,92364.550
</coordinates>
</LineString>
</polyline>
<fid>osgb1000000738106555</fid><filename>stetl</filename><themes>Administrative Boundaries</themes><descriptiveGroups>Political Or Administrative</descriptiveGroups><descriptiveTerms>Electoral</descriptiveTerms></BoundaryLine>
</boundaryMember>
<boundaryMember>
<BoundaryLine fid="osgb1000000738106597">
<featureCode>10128</featureCode>
<version>9</version>
<versionDate>2005-03-30</versionDate>
<theme>Administrative Boundaries</theme>
<accuracyOfPosition>2.5m</accuracyOfPosition>
<changeHistory>
<changeDate>1994-01-26</changeDate>
<reasonForChange>Modified</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2000-02-19</changeDate>
<reasonForChange>Modified</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2000-02-29</changeDate>
<reasonForChange>Modified</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2000-08-15</changeDate>
<reasonForChange>Modified</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2001-05-01</changeDate>
<reasonForChange>Restructured</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2003-03-05</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2003-03-06</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2004-12-30</changeDate>
<reasonForChange>Position</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2005-01-27</changeDate>
<reasonForChange>Position</reasonForChange>
</changeHistory>
<descriptiveGroup>Political Or Administrative</descriptiveGroup>
<descriptiveTerm>Electoral</descriptiveTerm>
<physicalLevel>50</physicalLevel>
<physicalPresence>Boundary</physicalPresence>
<polyline>
<LineString srsName="osgb:BNG">
<coordinates>290596.660,95091.570 290587.880,95083.430 290585.270,95080.020 290583.860,95078.410
290582.250,95077.000 290576.420,95072.890 290575.620,95072.390 290575.220,95072.180
290574.210,95071.480 290573.310,95070.780 290572.410,95069.980 290571.400,95068.770
290571.100,95068.170 290570.690,95067.160 290570.590,95066.250 290570.580,95056.270
290570.680,95052.240 290570.870,95048.210 290571.170,95044.880 290570.970,95043.770
290570.460,95041.760 290569.760,95039.750 290567.840,95035.720 290567.240,95034.510
290566.940,95033.710 290566.440,95032.600 290566.230,95031.290 290566.330,95029.080
290566.430,95027.970 290566.630,95026.760 290567.030,95025.550 290567.530,95024.440
290568.130,95023.330 290568.830,95022.520 290570.840,95020.900 290572.940,95019.580
290573.950,95018.970 290574.650,95018.670 290578.260,95017.250 290582.480,95015.520
290586.190,95013.600 290587.700,95012.800 290589.110,95011.900 290592.750,95008.310
290595.770,95004.410 290597.080,95002.920 290598.180,95001.320 290599.020,95000.000
290599.130,94999.830 290599.870,94998.120 290600.670,94995.820 290601.260,94993.520
290601.660,94991.620 290601.960,94989.820 290602.640,94981.120 290603.240,94976.510
290603.640,94974.310 290604.130,94972.110 290605.030,94968.610 290606.020,94965.120
290607.210,94961.720 290614.460,94944.140 290628.650,94910.580 290630.040,94906.880
290631.630,94903.190 290633.330,94899.590 290635.130,94896.490 290637.030,94893.490
290639.030,94890.590 290639.130,94890.460 290644.040,94883.850 290651.400,94876.100
290659.540,94869.520 290668.160,94862.840 290677.550,94856.730 290683.850,94853.540
290686.660,94852.570 290689.470,94851.990 290692.080,94851.600 290694.500,94851.410
290700.440,94851.570 290711.100,94853.000 290714.000,94853.680 290718.360,94854.840
290722.530,94855.910 290725.240,94856.970 290728.140,94858.040 290729.890,94858.710
290732.110,94859.880 290734.540,94860.260 290738.800,94860.170 290744.710,94859.680
290764.660,94857.720 290771.930,94857.220 290797.460,94855.270 290800.170,94855.080
290802.770,94854.780 290805.380,94854.180 290807.880,94853.480 290810.390,94852.690
290812.790,94851.590 290815.200,94850.390 290817.410,94849.190 290819.510,94847.790
290821.520,94846.190 290823.270,94844.890 290824.960,94843.570 290827.080,94841.970
290829.990,94839.320 290831.390,94837.630 290832.640,94835.550 290860.750,94756.740
290872.280,94720.920 290883.380,94686.490 290900.240,94640.900 290910.120,94610.920
290912.770,94603.000 290921.320,94576.840 290923.050,94570.330 290924.680,94563.820
290925.630,94559.610 290926.510,94555.400 290927.900,94548.090 290929.030,94540.680
290932.750,94505.440 290934.520,94476.810 290935.010,94466.670 290935.630,94453.920
290935.830,94430.570 290935.680,94427.800 290935.510,94424.400 290935.130,94421.000
290934.560,94417.700 290933.600,94413.290 290932.430,94408.990 290931.820,94406.960
290927.300,94395.450 290923.940,94387.290 290920.600,94378.800 290917.910,94373.440
290914.270,94366.220 290910.330,94359.110 290906.290,94352.090 290900.960,94343.270
290898.200,94338.960 290895.240,94334.740 290892.070,94330.530 290888.810,94326.410
290880.420,94315.360 290878.640,94312.550 290875.690,94307.130 290874.400,94304.720
290873.190,94302.220 290872.400,94300.460 290867.380,94289.340 290852.980,94257.370
290830.850,94209.760 290806.060,94150.790 290805.530,94148.690 290805.300,94146.600
290805.300,94143.800 290805.200,94142.800 290806.300,94124.300 290806.500,94117.000
290807.700,94107.600 290810.400,94087.100 290811.700,94081.700 290813.200,94076.400
290814.800,94071.300 290816.500,94066.300 290818.400,94061.300 290822.600,94051.000
290825.000,94045.600 290827.500,94040.400 290829.900,94036.000 290832.400,94031.800
290835.100,94027.600 290837.900,94023.500 290844.300,94014.600 290855.450,94000.000
290897.750,93940.900 290939.050,93883.600 290976.800,93831.050 290978.350,93828.800
290980.000,93826.550 290981.650,93824.050 290983.300,93821.600 290984.350,93819.900
290985.300,93818.300 290989.450,93811.000 290989.950,93810.000 290990.500,93809.050
290991.350,93807.650 290992.250,93806.300 290992.950,93805.200 290993.700,93804.100
291000.000,93795.400 291003.900,93789.850 291010.300,93780.850 291013.750,93775.850
291017.300,93770.650 291018.650,93768.400 291019.500,93766.650 291020.250,93764.900
291022.300,93760.750 291025.200,93755.450 291025.300,93755.250 291028.300,93749.850
291030.600,93745.150 291031.300,93743.750 291034.100,93738.000 291036.450,93732.450
291036.650,93732.150 291038.950,93726.300 291041.200,93720.150 291043.150,93714.300
291044.850,93708.550 291046.500,93702.650 291047.600,93697.700 291047.850,93696.450
291049.000,93690.500 291050.050,93684.500 291051.000,93678.400 291051.750,93672.200
291052.250,93667.950 291052.550,93663.900 291052.600,93661.550 291052.600,93656.850
291052.550,93655.200 291052.600,93648.600 291052.700,93641.500 291052.800,93638.700
291052.650,93636.900 291052.500,93635.250 291051.950,93629.100 291051.400,93623.100
291050.900,93617.050 291050.250,93610.800 291049.000,93598.500 291047.900,93586.450
291047.350,93580.250 291047.050,93575.250 291046.900,93569.800 291046.750,93566.400
291046.500,93561.150 291046.290,93559.230
</coordinates>
</LineString>
</polyline>
<fid>osgb1000000738106597</fid><filename>stetl</filename><themes>Administrative Boundaries</themes><descriptiveGroups>Political Or Administrative</descriptiveGroups><descriptiveTerms>Electoral</descriptiveTerms></BoundaryLine>
</boundaryMember>
<boundaryMember>
<BoundaryLine fid="osgb1000000738106616">
<featureCode>10128</featureCode>
<version>8</version>
<versionDate>2005-11-19</versionDate>
<theme>Administrative Boundaries</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1994-01-26</changeDate>
<reasonForChange>Modified</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2000-08-15</changeDate>
<reasonForChange>Reclassified</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2000-08-15</changeDate>
<reasonForChange>Modified</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2000-08-15</changeDate>
<reasonForChange>Restructured</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2003-03-06</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2005-02-16</changeDate>
<reasonForChange>Restructured</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2005-11-16</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<descriptiveGroup>Political Or Administrative</descriptiveGroup>
<descriptiveTerm>Electoral</descriptiveTerm>
<physicalLevel>50</physicalLevel>
<physicalPresence>Boundary</physicalPresence>
<polyline>
<LineString srsName="osgb:BNG">
<coordinates>291046.290,93559.230 291046.150,93557.950 291045.650,93554.850 291044.850,93550.850
291044.300,93548.400 291042.800,93542.950 291042.550,93541.750 291040.900,93535.350
291039.300,93528.950 291037.900,93524.400 291037.350,93522.750 291035.650,93516.700
291034.000,93510.650 291032.350,93504.750 291031.350,93500.000 291027.550,93485.150
291026.850,93482.500 291026.100,93479.900 291025.300,93476.700 291024.400,93473.600
291023.500,93470.450 291022.550,93467.350 291021.300,93463.300 291020.000,93459.250
291015.350,93444.850 291009.150,93426.400 291008.600,93424.850 291008.100,93423.250
291007.250,93420.350 291006.350,93417.500 291005.350,93414.100 291004.400,93410.750
291003.750,93408.350 291003.150,93405.900 291001.050,93396.900 291000.450,93394.600
291000.350,93394.200 291000.000,93392.100 290999.500,93389.450 290998.700,93386.350
290998.000,93383.400 290997.250,93380.450 290996.350,93376.800 290995.450,93373.100
290994.450,93368.300 290993.450,93363.550 290992.650,93360.250 290991.750,93357.000
290990.900,93353.800 290990.150,93350.650 290989.250,93347.200 290988.450,93343.800
290987.650,93339.700 290987.000,93335.650 290986.450,93330.450 290986.100,93325.300
290986.050,93319.050 290986.250,93313.000 290986.650,93306.500 290987.250,93300.000
290987.750,93294.200 290988.300,93288.450 290988.950,93281.750 290989.700,93275.050
290990.500,93268.750 290991.200,93262.450 290992.050,93255.550 290993.000,93248.750
290993.650,93244.700 290994.400,93240.650 290995.150,93237.500 290996.350,93233.500
290999.150,93225.700 291000.000,93223.480 291006.500,93208.050 291015.250,93187.600
291016.850,93184.250 291018.500,93180.950 291020.350,93177.450 291022.250,93173.950
291024.000,93170.750 291025.850,93167.600 291027.600,93164.800 291029.500,93162.150
291029.650,93162.000 291031.550,93159.700 291033.550,93157.500 291036.250,93154.800
291039.100,93152.250 291040.300,93151.250 291047.250,93144.800 291055.900,93136.350
291059.800,93132.250 291063.050,93129.050 291066.350,93125.900 291081.000,93111.000
291097.450,93093.800 291105.500,93085.700 291106.550,93084.600 291108.050,93083.100
291109.350,93082.000 291110.550,93080.900 291111.300,93080.200 291111.950,93079.500
291115.750,93075.700 291116.300,93075.200 291116.800,93074.700 291117.900,93073.700
291119.050,93072.600 291120.000,93071.650 291120.950,93070.600 291122.250,93068.950
291123.600,93067.300 291124.300,93066.400 291125.050,93065.550 291132.450,93056.250
291133.650,93054.850 291134.800,93053.400 291136.500,93051.300 291138.250,93049.150
291140.500,93046.300 291142.700,93043.400 291146.900,93038.400 291148.950,93035.700
291151.050,93033.000 291153.200,93030.450 291155.400,93027.950 291158.950,93023.950
291162.550,93020.100 291167.750,93014.700 291175.100,93007.150 291181.750,93000.000
291185.800,92995.950 291195.450,92987.750 291199.800,92983.900 291204.100,92980.000
291212.700,92971.900 291216.950,92967.750 291221.150,92963.500 291224.950,92959.550
291228.650,92955.600 291232.300,92951.550 291235.900,92947.450 291240.050,92942.600
291244.100,92937.750 291248.100,92932.800 291261.200,92916.450 291280.750,92892.200
291281.350,92891.450 291296.750,92871.950 291319.050,92844.600 291338.600,92820.800
291341.250,92817.600 291343.900,92814.450 291346.600,92811.250 291349.200,92808.000
291351.700,92804.750 291354.150,92801.350 291357.550,92796.250 291359.150,92793.650
291360.700,92791.000 291362.350,92788.100 291363.900,92785.100 291365.350,92782.100
291366.700,92779.050 291367.500,92776.950 291368.250,92774.900 291372.200,92763.900
291373.900,92759.450 291375.550,92755.000 291377.150,92750.550 291378.650,92746.050
291380.000,92741.500 291381.200,92736.850 291382.250,92732.150 291383.200,92727.450
291384.050,92722.700 291385.550,92713.200 291386.300,92708.400 291388.000,92697.850
291389.300,92687.250 291390.800,92668.700 291391.750,92649.850 291391.900,92641.550
291392.050,92638.750 291392.450,92635.600 291393.000,92632.450 291393.650,92629.300
291394.350,92626.200 291395.050,92623.050 291396.350,92617.300 291397.700,92611.500
291402.850,92588.500 291403.150,92586.950 291403.300,92585.400 291403.400,92583.800
291403.350,92582.200 291403.250,92580.650 291403.090,92579.550
</coordinates>
</LineString>
</polyline>
<fid>osgb1000000738106616</fid><filename>stetl</filename><themes>Administrative Boundaries</themes><descriptiveGroups>Political Or Administrative</descriptiveGroups><descriptiveTerms>Electoral</descriptiveTerms></BoundaryLine>
</boundaryMember>
<boundaryMember>
<BoundaryLine fid="osgb1000000738107869">
<featureCode>10128</featureCode>
<version>11</version>
<versionDate>2008-03-02</versionDate>
<theme>Administrative Boundaries</theme>
<accuracyOfPosition>2.5m</accuracyOfPosition>
<changeHistory>
<changeDate>1994-01-27</changeDate>
<reasonForChange>Modified</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>1998-07-22</changeDate>
<reasonForChange>Modified</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2000-08-15</changeDate>
<reasonForChange>Modified</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2000-08-15</changeDate>
<reasonForChange>Restructured</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2003-03-17</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2003-03-18</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2003-03-19</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2003-04-09</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-02-11</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-02-11</changeDate>
<reasonForChange>Restructured</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-02-28</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<descriptiveGroup>Political Or Administrative</descriptiveGroup>
<descriptiveTerm>Electoral</descriptiveTerm>
<physicalLevel>50</physicalLevel>
<physicalPresence>Boundary</physicalPresence>
<polyline>
<LineString srsName="osgb:BNG">
<coordinates>292218.740,91871.550 292213.350,91878.600 292195.700,91900.300 292190.450,91907.000
292184.900,91913.550 292180.550,91918.350 292176.150,91923.100 292171.800,91927.850
292167.300,91932.500 292158.600,91941.550 292154.400,91946.150 292150.200,91950.800
292145.750,91955.700 292141.300,91960.750 292137.200,91965.600 292133.200,91970.500
292122.900,91983.050 292109.050,92000.000 292099.950,92011.950 292088.300,92027.100
292087.200,92028.350 292084.550,92031.400 292081.800,92034.350 292078.900,92037.100
292076.050,92039.600 292073.050,92042.100 292069.850,92044.450 292066.600,92046.650
292063.650,92048.450 292060.500,92050.250 292057.250,92051.900 292053.900,92053.400
292050.500,92054.800 292047.400,92055.850 292043.050,92057.150 292038.650,92058.200
292034.250,92059.100 292031.100,92059.550 292026.200,92060.150 292021.300,92060.550
292018.750,92060.700 292013.800,92060.750 292008.900,92060.600 292003.950,92060.250
292000.000,92059.500 291999.600,92059.200 291998.100,92058.900 291995.400,92058.300
291991.050,92057.150 291989.600,92056.300 291986.600,92054.250 291984.300,92053.150
291980.900,92051.750 291978.550,92050.750 291975.200,92049.150 291972.900,92048.000
291969.650,92046.450 291967.150,92045.050 291961.650,92042.250 291955.950,92038.950
291950.450,92035.850 291947.300,92033.900 291945.150,92032.400 291939.750,92028.450
291934.700,92024.700 291929.350,92020.600 291924.250,92016.550 291919.100,92012.650
291913.850,92008.750 291908.850,92005.050 291908.450,92004.760 291901.810,92000.000
291896.650,91996.300 291894.600,91994.900 291888.150,91990.850 291883.950,91988.400
291877.250,91984.800 291872.750,91982.550 291862.200,91977.600 291857.750,91975.900
291853.250,91974.350 291850.200,91973.500 291846.650,91972.700 291843.000,91972.050
291839.400,91971.550 291837.900,91971.350 291831.850,91970.650 291828.400,91970.350
291823.950,91970.250 291819.450,91970.350 291814.900,91970.550 291814.450,91970.600
291805.750,91971.200 291801.450,91971.600 291793.550,91972.700 291788.750,91973.450
291774.400,91975.950 291760.850,91978.700 291747.200,91981.900 291736.200,91984.900
291735.150,91985.250 291726.650,91988.100 291725.950,91988.350 291720.850,91990.400
291716.450,91992.400 291711.850,91994.650 291709.880,91995.780 291706.130,91998.000
291703.060,92000.000 291700.960,92001.370 291699.300,92002.500 291696.700,92004.550
291691.950,92008.600 291687.600,92012.650 291682.850,92017.150 291678.100,92021.450
291673.300,92026.100 291668.550,92030.750 291663.500,92035.350 291658.800,92039.850
291650.280,92047.850
</coordinates>
</LineString>
</polyline>
<fid>osgb1000000738107869</fid><filename>stetl</filename><themes>Administrative Boundaries</themes><descriptiveGroups>Political Or Administrative</descriptiveGroups><descriptiveTerms>Electoral</descriptiveTerms></BoundaryLine>
</boundaryMember>
<cartographicMember>
<CartographicSymbol fid="osgb1000000729439973">
<featureCode>10165</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Rail</theme>
<changeHistory>
<changeDate>2001-03-12</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Rail</descriptiveGroup>
<descriptiveTerm>Switch</descriptiveTerm>
<orientation>3009</orientation>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291781.470,92943.570</coordinates>
</Point>
</point>
<fid>osgb1000000729439973</fid><filename>stetl</filename><orientDeg>300</orientDeg><themes>Rail</themes><descriptiveGroups>Rail</descriptiveGroups><descriptiveTerms>Switch</descriptiveTerms></CartographicSymbol>
</cartographicMember>
<cartographicMember>
<CartographicSymbol fid="osgb1000000729439974">
<featureCode>10066</featureCode>
<version>3</version>
<versionDate>2008-05-21</versionDate>
<theme>Terrain And Height</theme>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-04-29</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<descriptiveGroup>Height Control</descriptiveGroup>
<descriptiveTerm>Bench Mark</descriptiveTerm>
<orientation>2230</orientation>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291706.100,92740.500</coordinates>
</Point>
</point>
<fid>osgb1000000729439974</fid><filename>stetl</filename><orientDeg>223</orientDeg><themes>Terrain And Height</themes><descriptiveGroups>Height Control</descriptiveGroups><descriptiveTerms>Bench Mark</descriptiveTerms></CartographicSymbol>
</cartographicMember>
<cartographicMember>
<CartographicSymbol fid="osgb1000000729439975">
<featureCode>10066</featureCode>
<version>3</version>
<versionDate>2008-05-21</versionDate>
<theme>Terrain And Height</theme>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-04-29</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<descriptiveGroup>Height Control</descriptiveGroup>
<descriptiveTerm>Bench Mark</descriptiveTerm>
<orientation>3037</orientation>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291976.100,92634.800</coordinates>
</Point>
</point>
<fid>osgb1000000729439975</fid><filename>stetl</filename><orientDeg>303</orientDeg><themes>Terrain And Height</themes><descriptiveGroups>Height Control</descriptiveGroups><descriptiveTerms>Bench Mark</descriptiveTerms></CartographicSymbol>
</cartographicMember>
<cartographicMember>
<CartographicSymbol fid="osgb1000000729439976">
<featureCode>10066</featureCode>
<version>3</version>
<versionDate>2008-05-21</versionDate>
<theme>Terrain And Height</theme>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-04-29</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<descriptiveGroup>Height Control</descriptiveGroup>
<descriptiveTerm>Bench Mark</descriptiveTerm>
<orientation>257</orientation>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291744.300,92717.000</coordinates>
</Point>
</point>
<fid>osgb1000000729439976</fid><filename>stetl</filename><orientDeg>25</orientDeg><themes>Terrain And Height</themes><descriptiveGroups>Height Control</descriptiveGroups><descriptiveTerms>Bench Mark</descriptiveTerms></CartographicSymbol>
</cartographicMember>
<cartographicMember>
<CartographicSymbol fid="osgb1000000729439977">
<featureCode>10066</featureCode>
<version>3</version>
<versionDate>2008-05-21</versionDate>
<theme>Terrain And Height</theme>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-04-29</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<descriptiveGroup>Height Control</descriptiveGroup>
<descriptiveTerm>Bench Mark</descriptiveTerm>
<orientation>400</orientation>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291530.200,92918.750</coordinates>
</Point>
</point>
<fid>osgb1000000729439977</fid><filename>stetl</filename><orientDeg>40</orientDeg><themes>Terrain And Height</themes><descriptiveGroups>Height Control</descriptiveGroups><descriptiveTerms>Bench Mark</descriptiveTerms></CartographicSymbol>
</cartographicMember>
<cartographicMember>
<CartographicText fid="osgb1000000729439996">
<featureCode>10026</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Buildings</theme>
<anchorPoint>
<Point srsName="osgb:BNG">
<coordinates>291636.850,92668.150</coordinates>
</Point>
</anchorPoint>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Buildings Or Structure</descriptiveGroup>
<make>Manmade</make>
<physicalLevel>50</physicalLevel>
<textRendering>
<anchorPosition>3</anchorPosition>
<font>2</font>
<height>1.500</height>
<orientation>545</orientation>
<orientDeg>54</orientDeg></textRendering>
<textString>44</textString>
<fid>osgb1000000729439996</fid><filename>stetl</filename><themes>Buildings</themes><descriptiveGroups>Buildings Or Structure</descriptiveGroups></CartographicText>
</cartographicMember>
<cartographicMember>
<CartographicText fid="osgb1000000729439997">
<featureCode>10074</featureCode>
<version>3</version>
<versionDate>2004-02-28</versionDate>
<theme>Heritage And Antiquities</theme>
<anchorPoint>
<Point srsName="osgb:BNG">
<coordinates>291773.110,92687.690</coordinates>
</Point>
</anchorPoint>
<changeHistory>
<changeDate>1995-06-09</changeDate>
<reasonForChange>TextChange</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2003-03-05</changeDate>
<reasonForChange>Position</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2004-02-20</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<descriptiveGroup>Historic Interest</descriptiveGroup>
<physicalLevel>50</physicalLevel>
<textRendering>
<anchorPosition>0</anchorPosition>
<font>2</font>
<height>1.750</height>
<orientation>3230</orientation>
<orientDeg>323</orientDeg></textRendering>
<textString>North Gate</textString>
<fid>osgb1000000729439997</fid><filename>stetl</filename><themes>Heritage And Antiquities</themes><descriptiveGroups>Historic Interest</descriptiveGroups></CartographicText>
</cartographicMember>
<cartographicMember>
<CartographicText fid="osgb1000000729439998">
<featureCode>10026</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Buildings</theme>
<anchorPoint>
<Point srsName="osgb:BNG">
<coordinates>291506.900,92641.550</coordinates>
</Point>
</anchorPoint>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Buildings Or Structure</descriptiveGroup>
<make>Manmade</make>
<physicalLevel>50</physicalLevel>
<textRendering>
<anchorPosition>3</anchorPosition>
<font>2</font>
<height>1.500</height>
<orientation>1811</orientation>
<orientDeg>181</orientDeg></textRendering>
<textString>34</textString>
<fid>osgb1000000729439998</fid><filename>stetl</filename><themes>Buildings</themes><descriptiveGroups>Buildings Or Structure</descriptiveGroups></CartographicText>
</cartographicMember>
<cartographicMember>
<CartographicText fid="osgb1000000729439999">
<featureCode>10026</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Buildings</theme>
<anchorPoint>
<Point srsName="osgb:BNG">
<coordinates>291750.990,92691.350</coordinates>
</Point>
</anchorPoint>
<changeHistory>
<changeDate>1999-05-07</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Buildings Or Structure</descriptiveGroup>
<make>Manmade</make>
<physicalLevel>50</physicalLevel>
<textRendering>
<anchorPosition>0</anchorPosition>
<font>1</font>
<height>1.500</height>
<orientation>0</orientation>
<orientDeg>0</orientDeg></textRendering>
<textString>PH</textString>
<fid>osgb1000000729439999</fid><filename>stetl</filename><themes>Buildings</themes><descriptiveGroups>Buildings Or Structure</descriptiveGroups></CartographicText>
</cartographicMember>
<cartographicMember>
<CartographicText fid="osgb1000000729440000">
<featureCode>10026</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Buildings</theme>
<anchorPoint>
<Point srsName="osgb:BNG">
<coordinates>291723.400,92506.850</coordinates>
</Point>
</anchorPoint>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Buildings Or Structure</descriptiveGroup>
<make>Manmade</make>
<physicalLevel>50</physicalLevel>
<textRendering>
<anchorPosition>3</anchorPosition>
<font>2</font>
<height>1.500</height>
<orientation>2141</orientation>
<orientDeg>214</orientDeg></textRendering>
<textString>6</textString>
<fid>osgb1000000729440000</fid><filename>stetl</filename><themes>Buildings</themes><descriptiveGroups>Buildings Or Structure</descriptiveGroups></CartographicText>
</cartographicMember>
<cartographicMember>
<CartographicText fid="osgb1000000729440001">
<featureCode>10184</featureCode>
<version>3</version>
<versionDate>2004-02-28</versionDate>
<theme>Structures</theme>
<anchorPoint>
<Point srsName="osgb:BNG">
<coordinates>291938.050,92586.300</coordinates>
</Point>
</anchorPoint>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Structure</descriptiveGroup>
<physicalLevel>50</physicalLevel>
<textRendering>
<anchorPosition>6</anchorPosition>
<font>1</font>
<height>1.500</height>
<orientation>0</orientation>
<orientDeg>0</orientDeg></textRendering>
<textString>LBs</textString>
<fid>osgb1000000729440001</fid><filename>stetl</filename><themes>Structures</themes><descriptiveGroups>Structure</descriptiveGroups></CartographicText>
</cartographicMember>
<cartographicMember>
<CartographicText fid="osgb1000000729440002">
<featureCode>10169</featureCode>
<version>2</version>
<versionDate>2008-03-02</versionDate>
<theme>Roads Tracks And Paths</theme>
<anchorPoint>
<Point srsName="osgb:BNG">
<coordinates>291536.800,92866.800</coordinates>
</Point>
</anchorPoint>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<changeHistory>
<changeDate>2008-02-28</changeDate>
<reasonForChange>Attributes</reasonForChange>
</changeHistory>
<descriptiveGroup>Road Or Track</descriptiveGroup>
<descriptiveTerm>Road Name Or Classification</descriptiveTerm>
<physicalLevel>50</physicalLevel>
<textRendering>
<anchorPosition>7</anchorPosition>
<font>1</font>
<height>1.750</height>
<orientation>473</orientation>
<orientDeg>47</orientDeg></textRendering>
<textString>HALDON ROAD</textString>
<fid>osgb1000000729440002</fid><filename>stetl</filename><themes>Roads Tracks And Paths</themes><descriptiveGroups>Road Or Track</descriptiveGroups><descriptiveTerms>Road Name Or Classification</descriptiveTerms></CartographicText>
</cartographicMember>
<cartographicMember>
<CartographicText fid="osgb1000000729440003">
<featureCode>10026</featureCode>
<version>2</version>
<versionDate>2004-02-28</versionDate>
<theme>Buildings</theme>
<anchorPoint>
<Point srsName="osgb:BNG">
<coordinates>291593.500,92786.850</coordinates>
</Point>
</anchorPoint>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Buildings Or Structure</descriptiveGroup>
<make>Manmade</make>
<physicalLevel>50</physicalLevel>
<textRendering>
<anchorPosition>3</anchorPosition>
<font>1</font>
<height>1.750</height>
<orientation>605</orientation>
<orientDeg>60</orientDeg></textRendering>
<textString>St David's</textString>
<fid>osgb1000000729440003</fid><filename>stetl</filename><themes>Buildings</themes><descriptiveGroups>Buildings Or Structure</descriptiveGroups></CartographicText>
</cartographicMember>
<cartographicMember>
<CartographicText fid="osgb1000000729440004">
<featureCode>10026</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Buildings</theme>
<anchorPoint>
<Point srsName="osgb:BNG">
<coordinates>291515.600,92907.750</coordinates>
</Point>
</anchorPoint>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Buildings Or Structure</descriptiveGroup>
<make>Manmade</make>
<physicalLevel>50</physicalLevel>
<textRendering>
<anchorPosition>3</anchorPosition>
<font>2</font>
<height>1.500</height>
<orientation>1298</orientation>
<orientDeg>129</orientDeg></textRendering>
<textString>29</textString>
<fid>osgb1000000729440004</fid><filename>stetl</filename><themes>Buildings</themes><descriptiveGroups>Buildings Or Structure</descriptiveGroups></CartographicText>
</cartographicMember>
<cartographicMember>
<CartographicText fid="osgb1000000729440005">
<featureCode>10026</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Buildings</theme>
<anchorPoint>
<Point srsName="osgb:BNG">
<coordinates>291510.700,92873.900</coordinates>
</Point>
</anchorPoint>
<changeHistory>
<changeDate>1993-01-01</changeDate>
<reasonForChange>TextChange</reasonForChange>
</changeHistory>
<descriptiveGroup>Buildings Or Structure</descriptiveGroup>
<make>Manmade</make>
<physicalLevel>50</physicalLevel>
<textRendering>
<anchorPosition>0</anchorPosition>
<font>1</font>
<height>2.000</height>
<orientation>0</orientation>
<orientDeg>0</orientDeg></textRendering>
<textString>School</textString>
<fid>osgb1000000729440005</fid><filename>stetl</filename><themes>Buildings</themes><descriptiveGroups>Buildings Or Structure</descriptiveGroups></CartographicText>
</cartographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239646">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>13.1</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291548.750,92569.850</coordinates>
</Point>
</point>
<fid>osgb1000000732239646</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239647">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>32.9</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291574.550,92876.700</coordinates>
</Point>
</point>
<fid>osgb1000000732239647</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239649">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>33.8</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291698.500,92598.250</coordinates>
</Point>
</point>
<fid>osgb1000000732239649</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239650">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>25</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291700.450,92751.650</coordinates>
</Point>
</point>
<fid>osgb1000000732239650</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239652">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>29</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291596.050,92720.150</coordinates>
</Point>
</point>
<fid>osgb1000000732239652</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239653">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>39.3</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291875.050,92591.750</coordinates>
</Point>
</point>
<fid>osgb1000000732239653</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239659">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>34.4</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291676.700,92535.000</coordinates>
</Point>
</point>
<fid>osgb1000000732239659</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239660">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>31.1</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291798.950,92670.350</coordinates>
</Point>
</point>
<fid>osgb1000000732239660</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239661">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>39.3</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291858.950,92921.850</coordinates>
</Point>
</point>
<fid>osgb1000000732239661</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239663">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>14.6</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291619.800,92634.500</coordinates>
</Point>
</point>
<fid>osgb1000000732239663</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239664">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>31.1</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291809.550,92778.550</coordinates>
</Point>
</point>
<fid>osgb1000000732239664</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239666">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>42.4</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291998.000,92813.400</coordinates>
</Point>
</point>
<fid>osgb1000000732239666</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239667">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>24.1</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291761.800,92705.050</coordinates>
</Point>
</point>
<fid>osgb1000000732239667</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239669">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>40.2</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291893.950,92881.850</coordinates>
</Point>
</point>
<fid>osgb1000000732239669</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239670">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>26.8</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291650.200,92797.300</coordinates>
</Point>
</point>
<fid>osgb1000000732239670</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
<topographicMember>
<TopographicPoint fid="osgb1000000732239671">
<featureCode>10197</featureCode>
<version>1</version>
<versionDate>2001-11-11</versionDate>
<theme>Terrain And Height</theme>
<accuracyOfPosition>1.0m</accuracyOfPosition>
<changeHistory>
<changeDate>1987-12-01</changeDate>
<reasonForChange>New</reasonForChange>
</changeHistory>
<descriptiveGroup>Terrain And Height</descriptiveGroup>
<descriptiveTerm>Spot Height</descriptiveTerm>
<heightAboveDatum>
<heightAboveDatum>40.5</heightAboveDatum>
<accuracyOfHeightAboveDatum>1.0m</accuracyOfHeightAboveDatum>
</heightAboveDatum>
<physicalLevel>50</physicalLevel>
<point>
<Point srsName="osgb:BNG">
<coordinates>291927.550,92988.750</coordinates>
</Point>
</point>
<fid>osgb1000000732239671</fid><filename>stetl</filename><themes>Terrain And Height</themes><descriptiveGroups>Terrain And Height</descriptiveGroups><descriptiveTerms>Spot Height</descriptiveTerms></TopographicPoint>
</topographicMember>
</osgb:FeatureCollection>
|