// if (this.received_hsid_packet == false)
// logger.fine("Received first HSID packet");
DataInputStream data_stream = new DataInputStream(new ByteArrayInputStream(sim_data));
data_stream.skipBytes(4); // skip the bytes containing the packet type id
int nb_of_data_points = (int) data_stream.readFloat();
// Reads the HSID data und deploys them into the data repository
for (int i=0;i<nb_of_data_points;i++) {
int data_point_id = (int) data_stream.readFloat();
this.xplane_data_repository.store_sim_value(data_point_id, data_stream.readFloat());