Wireless Networks Vocabulary

This version:
http://downlode.org/rdf/wireless_networks/2003-06-18.html
Latest version:
http://downlode.org/rdf/wireless_networks/
Previous version:
n/a
Author:
Earle Martin

Copyright © 2003 Earle Martin.

Creative Commons Licensed This work is licensed under a Creative Commons License. This copyright applies to the Wiki Description Vocabulary documentation and does not apply to the Wiki Description Vocabulary data formats, vocabulary terms, or technology. Regarding underlying technology, the Wiki Description Vocabulary relies heavily on W3C's RDF technology, an open Web standard that can be freely used by anyone.


Abstract

This vocabulary acts to provide a way to describe nodes in a wireless network.


Usage

The following is an example of a document describing a wireless node.

<?xml version="1.0"?>
<rdf:RDF 
  xmlns:addr = "http://www.w3.org/2000/10/swap/pim/contact#"
  xmlns:foaf = "http://xmlns.com/foaf/0.1/"
  xmlns:geo  = "http://www.w3.org/2003/01/geo/wgs84_pos#" 
  xmlns:rdf  = "http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
  xmlns:wl   = "http://downlode.org/rdf/wireless/0.1/"
>

<Node rdf:ID="AliceNode">

  <foaf:homepage>http://example.com/~alice/alicenode.html</foaf:homepage>

  <wl:status>Operational</wl:status>
  <wl:upSince>20030608Z142300</wl:upSince>

  <wl:location>
    <addr:Address>
      <addr:Street>1 Some Street</addr:Street>
      <addr:City>London</addr:City>
      <addr:PostalCode>W1 1AA</addr:PostalCode>
      <geo:lat>51.5197</geo:lat>
      <geo:long>-0.1873</geo:long>
    </addr:Address>
  </wl:location>
    
  <wl:admin>
    <foaf:Person rdf:ID="Alice">
      <foaf:mbox rdf:resource="mailto:alice@example.com"/>
      <foaf:name>Alice Smith</foaf:name>
      <foaf:homepage>http://example.com/~alice/</foaf:homepage>
    </foaf:Person>
  </wl:admin>

  <wl:hasAntenna>
    <wl:Antenna rdf:ID="AliceAntenna">
      <geo:alt>50m</geo:alt>
      <wl:antennaType>Slotted Waveguide</wl:antennaType>
    </wl:Antenna>
  </wl:hasAntenna>
  
  <wl:hasInterface>
    <wl:Interface>
      <wl:essid>alice</wl:essid>
      <wl:type>upstream</wl:type>
      <wl:linkLayer>802.11b</wl:linkLayer>
      <wl:capability>AP</wl:capability>
      <wl:capability>BSS</wl:capability>
      <wl:capability>NoWEP</wl:capability>
      <wl:subnet>10.15.3.1/24</wl:subnet>
      <wl:rate>1</wl:rate>
      <wl:rate>2</wl:rate>
      <wl:rate>5.5</wl:rate>
      <wl:rate>11</wl:rate>
    </wl:Interface>
  </wl:hasInterface>

  <wl:meshesWith>
    <wl:Node>
      <wl:nodeName>Bob's Node</wl:nodeName>
      <wl:admin rdf:resource="http://example.com/foaf.rdf#Bob"/>
      <geo:lat>51.5304</geo:lat>
      <geo:long>-0.1962</geo:long>
    </wl:Node>
  </wl:meshesWith>

</Node>

</rdf:RDF>

Acknowledgements

This vocabulary was constructed almost entirely along the lines of the notes on the Wireless Ontology page on ESW, and contains contributions by or suggested by Matt Biddulph, Schuyler D. Erle, Nick Gibbins, Jo Walsh and Matt Westervelt. Thank you.


Valid CSS Valid XHTML 1.0 Strict