# Metadata de NEMO El sistema de adquisión de datos de NEMO registra todas las lecturas en una base de datos relacional de tipo `sqlite3`. En esa base de datos existe una única tabla denominada, por motivos históricos, `binTable`. La estructura de definición de datos (DDL) de esa tabla, también por motivos históricos, tiene el siguiente formato: ```sql= CREATE TABLE IF NOT EXISTS 'binTable' ( 'start_date_time' datetime NOT NULL, 'ch01' int(11) DEFAULT NULL, 'ch02' int(11) DEFAULT NULL, 'ch03' int(11) DEFAULT NULL, 'ch04' int(11) DEFAULT NULL, 'ch05' int(11) DEFAULT NULL, 'ch06' int(11) DEFAULT NULL, 'ch07' int(11) DEFAULT NULL, 'ch08' int(11) DEFAULT NULL, 'ch09' int(11) DEFAULT NULL, 'ch10' int(11) DEFAULT NULL, 'ch11' int(11) DEFAULT NULL, 'ch12' int(11) DEFAULT NULL, 'ch13' int(11) DEFAULT NULL, 'ch14' int(11) DEFAULT NULL, 'ch15' int(11) DEFAULT NULL, 'ch16' int(11) DEFAULT NULL, 'ch17' int(11) DEFAULT NULL, 'ch18' int(11) DEFAULT NULL, 'hv1' int(11) DEFAULT NULL, 'hv2' int(11) DEFAULT NULL, 'hv3' int(11) DEFAULT NULL, 'hv4' int(11) DEFAULT NULL, 'temp_1' int(11) DEFAULT NULL, 'temp_2' int(11) DEFAULT NULL, 'atmPressure' int(11) DEFAULT NULL, PRIMARY KEY ('start_date_time') ); ``` Como se puede observar, `start_date_time` es clave principal, ya que es el elemento por el que generalmente se realizan consultas y a través del cual se operan las correlaciones necesarias con los datos de otras estaciones. El formato utilizado es [ISOTIME ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) en formato UTC. Los campos `ch01` hasta `ch18` contienen el número de cuentas que se han producido en el intervalo de integración que comenzó en `start_date_time` y finalizó, en este caso, un minuto después. Los campos `hv1` hasta `hv4` están destinados a registrar el valor (promedio) de voltaje de las fuentes de alta tensión que polalizan los tubos. En el caso de NEMO, esta funcionalidad no está implementada y dichos campos tienen valor `NULL`. El campo `temp_1` se utiliza para registrar la temperatura en grados centígrados, en el intervalo que comenzó en `start_date_time`. Por su parte `temp_2`, a pesar de su nombre, se utiliza en NEMO para almacenar el porcentaje de humedad relativa. Por último `atmPressure` se utiliza para almacenar la presión atmosférica en `hPa` del intervalo.