Question

Convert to Smallworld "Kleenean"

  • 16 February 2022
  • 1 reply
  • 3 views

Badge

I'm trying to convert a 0/1 value in CSV file to a kleenean value in smallworld.

 

With the AttributeBooleanConverter I get this error:

Smallworld Translator Error: Failed to convert string No for field Business to a truth value

 

With an AttributeMapper I get this:

Smallworld Translator Error: Failed to convert string 1 for field Business to a truth value

 

What is weird with the AttributeMapper , I have the new attribute mapped to the field for Smallworld and the "Business" field should not even be considered.

 

What am I doing wrong?

 


1 reply

Badge +2

@mbfbsae90​ The ds_kleene data type can be true | false | maybe So try mapping your CSV 1 | 0 to those. It's possible that the Smallworld writer needs these as something like 1 | 0 | -1

@erik_jan​  might know

Reply