Using Jena 2.12.1:
I am getting good turtle serialization from my graph. See snippet here:
bmi:HematoxlyinKurtosis "1.922421"^^x:double ;
bmi:HematoxlyinKurtosisGradMag "2.041947"^^x:double ;
bmi:HematoxlyinSkewness "-0.343522"^^x:double ;
bmi:HematoxlyinSkewnessGradMag "0.078386"^^x:double ;
however, this same snippet becomes this when serialing out to JSON-LD:
"bmi:HematoxlyinKurtosis" : 1.922421,
"HematoxlyinKurtosis:GradMag" : 2.041947,
"bmi:HematoxlyinSkewness" : -0.343522,
"HematoxlyinSkewness:GradMag" : 0.078386,
It seems to mess up on any predicate that has a matching leading substring.
- Erich