-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Possible Bug] Assistance Needed with An Error #16035
Comments
are you trying to parse simulation output files while the simulation is still running? |
Please note that I typically run two simulation instances simultaneously for different scenarios, each from a separate folder. |
This process is supposed to occur after the simulation is completed. Below is the part of the code that involves running SUMO and converting XML files to CSV files: for k in Nruns: |
It is expected that XML parsing after a SUMO crash won't work because the XML files are not complete. @usamael2000 Can you post your sumocfg? |
Here you are the configuration file:
|
Try running without option threads. |
I removed the threads option from my configuration files and ran the simulation again. So far, no errors have occurred. I also tried re-enabling the threads option, and after some time, the error reappeared. It seems that the threads option was the source of the issue. Thank you so much for your help! |
Hi Everyone,
I have started encountering the following error over the past couple of days. I am currently using the latest development version of SUMO, which I compiled about a week ago. Initially, I thought recompiling SUMO would resolve the issue, but the error persists.
It’s worth noting that the error appears randomly, making it challenging to reproduce or identify the exact steps to replicate it.
For additional context, I am running SUMO through a Python script executed in Jupyter Notebook within the Anaconda environment.
In addition, my simulation time is set to 5400 seconds. However, it appears that the simulation does not end correctly. As shown here, it terminates prematurely after step 1540.
I would greatly appreciate any guidance or suggestions on how to avoid this error.
Best regards,
The error:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Integration method was set to 'ballistic', since a default action step length was specified.
Loading net-file from 'test01_signalized.net.xml' ... done (4ms).
Loading additional-files from 'TLS.add.xml' ... done (11ms).
Loading additional-files from 'test01_detectors.add.xml' ... done (14ms).
Loading additional-files from 'Edge_Emissions.add.xml' ... done (1ms).
Loading route-files incrementally from 'test01.rou.xml'
Loading done.
Simulation version v1_21_0+1886-e75a3528e94 started with time: 0.00.
Step #0.00Vehicle 'flow_0.0' does not supply vehicle parameter 'device.ssm.exclude-conflict-types'. Using default of ''.
Step #1540.00800.00Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e3_detector.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e3_nb_detector.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e3_sb_detector.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e3_minor_detector.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e1_Major_EB.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e1_Major_WB.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e1_minor_NB.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e1_minor_SB.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e1_Major_EB_LT.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e1_Major_WB_LT.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e1_Right_Uturn.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e1_Left_Uturn.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e1_Major_EB_RT.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e1_Major_WB_RT.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 3, column 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/edge_emissions.xml:3:0: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 129, column 3
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/e2_detector.xml:129:3: unclosed token
Traceback (most recent call last):
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 217, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unclosed token: line 11774, column 8
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 293, in
main()
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 277, in main
attrFinder = AttrFinder(options.xsd, options.source, options.split, options.keepAttrs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/mainpc/Documents/sumo_source_code/sumo/tools/xml/xml2csv.py", line 89, in init
xml.sax.parse(source, self)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/init.py", line 33, in parse
parser.parse(source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 111, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/xmlreader.py", line 127, in parse
self.close()
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 254, in close
self.feed(b"", isFinal=True)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/expatreader.py", line 221, in feed
self._err_handler.fatalError(exc)
File "/home/mainpc/anaconda3/lib/python3.11/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: output/SSM_Output.xml:11774:8: unclosed token
+++ END of Error ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
My SUMO version is:
$ sumo
Eclipse SUMO sumo Version v1_21_0+1886-e75a3528e94
Build features: Linux-6.12.6-amd64 x86_64 GNU 14.2.0 Release FMI Proj GUI Intl SWIG Eigen GDAL FFmpeg OSG GL2PS JuPedSim
Copyright (C) 2001-2025 German Aerospace Center (DLR) and others; https://sumo.dlr.de
License EPL-2.0: Eclipse Public License Version 2 https://eclipse.org/legal/epl-v20.html
Use --help to get the list of options.
My system information:
OS: Debian GNU/Linux trixie/sid x86_64
The text was updated successfully, but these errors were encountered: