mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-18 06:21:40 +00:00
Don't escape $ in TTL output
This commit is contained in:
@@ -238,7 +238,7 @@ void TtlWktSerializer::writeHeader()
|
|||||||
void TtlWktSerializer::write(const IfcGeom::TriangulationElement* o)
|
void TtlWktSerializer::write(const IfcGeom::TriangulationElement* o)
|
||||||
{
|
{
|
||||||
auto ttl_object_id = [&]() {
|
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";
|
filename_.stream << "base:" << ttl_object_id() << " a geo:Feature ;\n";
|
||||||
|
|||||||
Reference in New Issue
Block a user