Changes between Version 2 and Version 3 of SandBoxFour

Show
Ignore:
Timestamp:
05/26/09 10:06:54 (15 years ago)
Author:
margs (IP: 193.212.132.34)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SandBoxFour

    v2 v3  
    1 = SandBox no. 4 = 
     1SandBox no. 4 
    22 
    33'''This is just a test. This text is collected from [wiki:ISO15926Primer_Glossary] for testing purposes.''' 
    44 
    55== Introduction == 
    6  
    76There are a great many glossaries available, as well as on-line dictionaries and, of course, Wikipedia.  A particularly detailed Glossary is right here: [http://www.btinternet.com/~Chris.Angus/epistle/specifications/glossary/gloss.html STEPDEX: Glossary of Data Management Terms] 
    87 
     
    1211 
    1312== RDF (Resource Description Framework) == 
    14  
    1513If you dig deeper under the hood of ISO 15926 you will soon run into this term because it is the means of storing the Part 4 definitions. 
    1614 
     
    1816 
    1917=== Metadata === 
    20   * Metatdata is ''data about data''.  For instance, one piece of metadata about the ISO 15926 Primer is that it was written on the POSC/Caesar's wiki website. 
     18 * Metatdata is ''data about data''.  For instance, one piece of metadata about the ISO 15926 Primer is that it was written on the POSC/Caesar's wiki website. 
    2119 
    2220=== Data Model === 
    23   * A data model is an ''abstract'' model that describes how data is represented and accessed. 
     21 * A data model is an ''abstract'' model that describes how data is represented and accessed. 
    2422 
    2523=== Abstraction === 
    26   * ''Abstraction'' is a process of generalizing about something to reduce the information content about an object to only those attributes you are interested in.  A typical abstraction is the answer "7600 Glover Road" to the question "Where do you live?"  You might live in a beautiful split level house with a wonderful view of the ocean framed by huge 100 year old pine trees but your questioner only wants to know where to have a package delivered. (On the other hand, yours could be a very ordinary house on a very ordinary road, but the city just wants your land for a freeway bypass and the friendly bulldozer operator needs to know where you live.) 
     24''Abstraction'' is a process of generalizing about something to reduce the information content about an object to only those attributes you are interested in.  A typical abstraction is the answer "7600 Glover Road" to the question "Where do you live?"  You might live in a beautiful split level house with a wonderful view of the ocean framed by huge 100 year old pine trees but your questioner only wants to know where to have a package delivered.  (On the other hand, yours could be a very ordinary house on a very ordinary road, but the city just wants your land for a freeway bypass and the friendly bulldozer operator needs to know where you live.) ''Abstraction'' is a process of generalizing about something to reduce the information content about an object to only those attributes you are interested in.  A typical abstraction is the answer "7600 Glover Road" to the question "Where do you live?"  You might live in a beautiful split level house with a wonderful view of the ocean framed by huge 100 year old pine trees but your questioner only wants to know where to have a package delivered.  (On the other hand, yours could be a very ordinary house on a very ordinary road, but the city just wants your land for a freeway bypass and the friendly bulldozer operator needs to know where you live.) ''Abstraction'' is a process of generalizing about something to reduce the information content about an object to only those attributes you are interested in.  A typical abstraction is the answer "7600 Glover Road" to the question "Where do you live?"  You might live in a beautiful split level house with a wonderful view of the ocean framed by huge 100 year old pine trees but your questioner only wants to know where to have a package delivered.  (On the other hand, yours could be a very ordinary house on a very ordinary road, but the city just wants your land for a freeway bypass and the friendly bulldozer operator needs to know where you live.) 
    2725 
    2826=== RDF === 
    2927Putting it all together, then, RDF is: 
    30  - instructions on how to represent 
    31  - just the bits of data you are interested in 
    32  - that describes certain other bits of data 
    33  - then access it easily 
     28 
     29 * instructions on how to represent 
     30 * just the bits of data you are interested in 
     31 * that describes certain other bits of data 
     32 * then access it easily 
    3433 
    3534(Whew!  I bet you thought that was going to be difficult!) 
     
    3837 
    3938=== Subject-Predicate-Object Triple Stores === 
     39"The ISO 15926 Primer was written on the POSC/Caesar wiki" might be stored in the RDF as the triple: 
    4040 
    41 "The ISO 15926 Primer was written on the POSC/Caesar wiki" might be stored in the RDF as the triple: 
    42  - the subject: ''ISO 15926 Primer'' 
    43  - the predicate: ''was written on'' 
    44  - the object: ''POSC/Caesar wiki'' 
     41 * the subject: ''ISO 15926 Primer'' 
     42 * the predicate: ''was written on'' 
     43 * the object: ''POSC/Caesar wiki'' 
    4544 
    4645The each term in the subject-predicate-object may be explicitly named, as in the example above, or they could be in the form of a URI, a ''Uniform Resource Identifier''. 
    4746 
    4847=== Uniform Resource Identifier === 
     48You can think of a ''Uniform Resource Identifier'' as a website for a piece of information.  This allows the same resource to be reliably referenced many times.  So instead of writing the Subject-Predicate-Object triple as above, it could be rendered as: 
    4949 
    50 You can think of a ''Uniform Resource Identifier'' as a website for a piece of information.  This allows the same resource to be reliably referenced many times.  So instead of writing the Subject-Predicate-Object triple as above, it could be rendered as: 
    51  - the subject: 'https://trac.posccaesar.org/wiki/ISO15926Primer' 
    52  - the predicate: ''was written on'' 
    53  - the object: ''POSC/Caesar wiki'' 
     50 * the subject: 'https://trac.posccaesar.org/wiki/ISO15926Primer' 
     51 * the predicate: ''was written on'' 
     52 * the object: ''POSC/Caesar wiki'' 
    5453 
    5554And in fact we could carry this further by defining somewhere on the Internet the exact meaning of the phrase ''was written on'', and put its URI in the predicate. 
    5655 
    5756=== More Information about RDF === 
    58  
    59 A good place to start if you want to know more about RDF is the ''RDF Primer'' written by the W3C.  Be warned, it is not for the feint of heart.  But if you can wade through it you will start to see what we mean when we say that "Everything, in the end, is reference data."   
     57A good place to start if you want to know more about RDF is the ''RDF Primer'' written by the W3C.  Be warned, it is not for the feint of heart.  But if you can wade through it you will start to see what we mean when we say that "Everything, in the end, is reference data." 
    6058 
    6159http://www.w3.org/TR/REC-rdf-syntax/ 
    6260 
    6361---- 
    64  
    6562== RDL ( Resource Description Library) == 
    66  
    6763... 
    6864 
    69  
    7065---- 
    71  
    7266== RDS/WIP (Reference Data System / Working, In Progress) == 
    73  
    74  
    7567The RDS/WIP is several things: 
    7668 
     
    8577 
    8678---- 
    87  
    8879== SPARQL == 
    89  
    9080Pronounced "sparkle" 
    9181 
    92  
    93  
    94  
    95  
    96  
    97  
    98  
    9982== Conservation of Complexity == 
    100  
    10183You cannot eliminate complexity.  You can move it from one place to another, but it will always be there somewhere.  This is used to talk about how we deal with complex Plant information.  We can deal with it manually, piece-by-piece, as we have been, or we can ''encapsulate'' it with ISO 15926 and let machines deal with it. 
    10284 
     
    10486 
    10587=== Encapsulate === 
    106  
    10788Hiding complexity from users who really don't want to know any more. 
    10889 
    109  
    110  
    11190---- 
    112  
    11391== AEX  (Automating Equipment Information Exchange) == 
    11492The Automating Equipment Information Exchange (AEX) project is developing, demonstrating and deploying eXtensible Markup Language (XML) specifications to automate information exchange for the design, procurement, delivery, operation and maintenance of engineered equipment. 
     
    11795 
    11896http://www.fiatech.org/projects/idim/aex.htm 
    119  
Home
About PCA
Reference Data Services
Projects
Workgroups