Herramientas Web para la Virtualidad

Partiendo de la Web 1.0 hacia la Web 6.0

Fuente: Floridi, L. (2009). Web 2.0 vs. the Semantic Web: A Philosophical Assessment. Episteme, 6(1), 25-37. doi:10.3366/E174236000800052X

Herramientas Web 1.0

Herramientas Web 2.0

Escoger dos de las herramientas mostradas para realizar una actividad de aprendizaje

Herramientas Web 3.0

Web Semántica

JAVA

Perro caliente

Cauca es_un Departamento

Popayán es_parte_de Cauca

Gustavo es_un Persona

Gustavo nació_en Popayán

¿Puedes contarnos tres características tuyas?

Herramientas más utilizadas

Sintaxis RDF

Describe tus amigos y familiares más cercanos usando RDF Turtle

Elementos RDFS

Construct Syntactic form Description
Class (a class) C rdf:type rdfs:Class C (a resource) is an RDF class
Property (a class) P rdf:type rdf:Property P (a resource) is an RDF property
type (a property) I rdf:type C I (a resource) is an instance of C (a class)
subClassOf (a property) C1 rdfs:subClassOf C2 C1 (a class) is a subclass of C2 (a class)

Vocabularios RDFS

SPARQL

<http://example.org/book/book1> <http://purl.org/dc/elements/1.1/title> "SPARQL Tutorial" .

Datos

Consulta

SELECT ?title
WHERE
{
  <http://example.org/book/book1> <http://purl.org/dc/elements/1.1/title> ?title .
}    

SPARQL

@prefix foaf:  <http://xmlns.com/foaf/0.1/> .
_:a  foaf:name   "Johnny Lee Outlaw" .
_:a  foaf:mbox   <mailto:jlow@example.com> .
_:b  foaf:name   "Peter Goodguy" .
_:b  foaf:mbox   <mailto:peter@example.org> .
_:c  foaf:mbox   <mailto:carol@example.org> .

Datos

Consulta

PREFIX foaf:   <http://xmlns.com/foaf/0.1/>
SELECT ?name ?mbox
WHERE
  { 
    ?x foaf:name ?name .
    ?x foaf:mbox ?mbox
 }
PREFIX foaf:    <http://xmlns.com/foaf/0.1/>

SELECT  ?name
WHERE   { ?x foaf:name ?name }
ORDER BY ?name
LIMIT   5
OFFSET  10

SPARQL

@prefix dc:   <http://purl.org/dc/elements/1.1/> .
@prefix :     <http://example.org/book/> .
@prefix ns:   <http://example.org/ns#> .

:book1  dc:title  "SPARQL Tutorial" .
:book1  ns:price  42 .
:book2  dc:title  "The Semantic Web" .
:book2  ns:price  23 .

Datos

Consulta

PREFIX  dc:  <http://purl.org/dc/elements/1.1/>
PREFIX  ns:  <http://example.org/ns#>
SELECT  ?title ?price
WHERE   { ?x ns:price ?price .
          FILTER (?price < 30.5)
          ?x dc:title ?title . }

Otras Consultas

  • Ask

  • Describe
  • Construct

 

Lluvia de Ideas

¿Qué datos sería interesante tener?

y ¿Cómo encontrarlo?

 

 

Herramientas Web 4.0

Web Adaptable Y Accesible

The power of the Web is in its universality.
Access by everyone regardless of disability is an essential aspect.
Tim Berners-Lee, W3C Director and inventor of the World Wide Web

Todo contenido Web debe ser:

  1. Perceptible
  2. Operable
  3. Comprensible
  4. Robusto

Actividad: Rejilla en grupos para el estudio de la Guía, plantear ejemplos y posibles soluciones

Algunas Herramientas

Herramientas Web 5.0

Infraestructura en la Nube

Formularios

Herramientas de video y audio

Presentaciones

Refme                              Zotero                              Mendeley

Programación

Juicio a Moodle por ser poco amigable, usable y flexible. Adicionalmente, las herramientas ofrecidas aportan muy poco al aprendizaje.

Herramientas Web 6.0 IoE (Internet of Everything)

99% de los Objetos aún no están conectados a Internet

Pilares de IoE

Ej: Computación en la Niebla

Identificación de Objetos

RFID

NFC

Identificación de Objetos

Protocolos de Comunicación

Fuente: Cisco Netcad

6LoWPAN

Herramientas Web para Educación

By Gustavo Andrés Uribe Gómez