I am quite a newbie with xml. I used XML in R to parse content in xml and put into R objects. I have to deal with nearly 1TB xml data and it took me around 5 hours to parse 2.4 GB data. I know that xmlschema is used to generate xml. I wonder if there is any better method to convert xml to data or another method to use xmlschema to read xml and put values back into raw data other than xmlParse? I now have 5 xmlschema and xml. (I thought it is complex xml)
- xmlns:nxce="http://tfm.faa.gov/tfms/NasXCoreElements"
- xmlns:mmd="http://tfm.faa.gov/tfms/MessageMetaData"
- xmlns:nxcm="http://tfm.faa.gov/tfms/NasXCommonMessages"
- xmlns:idr="http://tfm.faa.gov/tfms/TFMS_IDRS"
- xmlns:xis="http://tfm.faa.gov/tfms/TFMS_XIS"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://tfm.faa.gov/tfms/TFMS_XIS
sample data: http://www.fly.faa.gov/ASDI/asdidocs/asdi_sample_data.zip I want to extract all flightManagementInfomation data out using SAX
Thanks in advance.