Officially out now: The TypeDB 3.0 Roadmap >>

Double

A double precision IEEE 754 floating point number.

Defining a double valued attribute

define
  attribute latitude value double;
  attribute longitude value double;

Inserting a double valued attribute

insert
  $_ isa latitude 11.373333;
  $_ isa longitude 142.591667;