Don't escape $ in TTL output

This commit is contained in:
Thomas Krijnen
2024-10-02 11:11:38 +02:00
parent 2a9301ead2
commit b700c5e448
+1 -1
View File
@@ -238,7 +238,7 @@ void TtlWktSerializer::writeHeader()
void TtlWktSerializer::write(const IfcGeom::TriangulationElement* o)
{
auto ttl_object_id = [&]() {
return boost::replace_all_copy(boost::replace_all_copy(object_id(o), "-", "_"), "$", "%24");
return boost::replace_all_copy(object_id(o), "-", "_");
};
filename_.stream << "base:" << ttl_object_id() << " a geo:Feature ;\n";