Will check that too.
ADDED:
I don't have the complete set. So not as many as you have. Need to buy more gum.
I'm not sure you're aware, but you don't have to import the sector data by hand. Travellermap has a pretty good api and several different methods to grab the data.
I just grabbed all of the sector data with
https://travellermap.com/data, grabbed the "Sectors" from that, filtered that for M1105 and (Official, InReview, Preserve) and OTU, then just iterated through that list with the published API, first getting the sector coordinates with
https://travellermap.com/data/SECTOR/coordinates then pulling down the actual T5 data in TSV with
https://travellermap.com/data/SECTOR/tab, then processing that.
I had to do a little in the way of gymnastics to compute world positions from that but that's not strictly necessary, but pretty easy too. The whole thing - pulling down all of the data from travellermap, doing the appropriate local database queries to get what you want, build the associations and parse the data takes about 25 seconds all in, and I'm using a really naive approach.
There might be some reason that I'm not aware of that you're doing it by hand, but you will probably save some frustration later on by putting together the code to do it automatically. Also, I presume the map data on travellermap is updated periodically, having an automated system to collect the data and import it will save having to do this all again.