Indeed.
If you get bored, have a look at the raw data... e00 are basically a text format, so it shouldnt be too hard to understand bits of what youre looking at... Position Data is the first major block of data (LAB Block), while Label data tends to be in the last half/third of the file (IFO Block)... You should be able to spot it...
The LAB Block will look like (in the case of AEPOINT);
Code: Select all
1 1 1.9982750E+01 5.4941087E+01
1.9982750E+01 5.4941087E+01 1.9982750E+01 5.4941087E+01
2 2 2.0183059E+01 5.4885978E+01
2.0183059E+01 5.4885978E+01 2.0183059E+01 5.4885978E+01
3 3 2.0245757E+01 5.4953854E+01
2.0245757E+01 5.4953854E+01 2.0245757E+01 5.4953854E+01
4 4 2.0377546E+01 5.4781510E+01
2.0377546E+01 5.4781510E+01 2.0377546E+01 5.4781510E+01
5 5 2.0582700E+01 5.4914105E+01
2.0582700E+01 5.4914105E+01 2.0582700E+01 5.4914105E+01
Now these positions SHOULD correspond to the NAMES in the IFO Block:
Code: Select all
0.0000000E+00 0.0000000E+00 1 205 5BRYUSTERORT
101990 5 13519870214
0.0000000E+00 0.0000000E+00 2 58 5MARIENKHOF
101990 5 21019870214
0.0000000E+00 0.0000000E+00 3 57 5PIONERSKIY
101990 5 9999919870214
0.0000000E+00 0.0000000E+00 4 59 5PROVEREN
101990 5 11119870214
0.0000000E+00 0.0000000E+00 5 60 5KHKABROVO
101990 5 2919870214
IF the name and positions in the e00 DONT correspond to what you see in the TDF, i would suggest that we have a problem with DEM2L...
If this does happen, look for a pattern... Some like the FIRST set of co-ords in the LAB has been named with the label from the SECOND entry in the IFO... OR perhaps the WRONG set of numbers is being read from the IFO to index the Label to the Location... Those are the two that are most likely (cos they'd be the easiest things to screw up programming!)...
Its probably best to first try this on a SMALL piece of data (like Taiwan or Switzerland or something, before checking some of the larger datasets (like Russia! hahaha)...
Of course, it could just be the Data is Screwy for some places, tho i tend to trust the data at least a little; it was what was being used to generate aeronautical charts at one stage!
But yeah, if you get bored, have a potter around... If you can come up with a pattern, i can write something to 'pre-process' the e00's, so others following do not have to endure like we have endured!