use of uk.me.parabola.imgfmt.app.trergn.RGNFileReader in project mkgmap by openstreetmap.
the class StructureTest method init.
/**
* Read in the file and open all the sections, leave references to them
* in fields so that the other tests can check things.
*/
@BeforeClass
public static void init() throws FileNotFoundException {
TestUtils.deleteOutputFiles();
Main.mainNoSystemExit(Args.TEST_STYLE_ARG, Args.TEST_RESOURCE_OSM + "uk-test-1.osm.gz");
fs = ImgFS.openFs(Args.DEF_MAP_FILENAME);
ImgChannel tre = fs.open(Args.DEF_MAP_ID + ".TRE", "r");
treFile = new TREFileReader(tre);
ImgChannel lbl = fs.open(Args.DEF_MAP_ID + ".LBL", "r");
lblFile = new LBLFileReader(lbl);
ImgChannel rgn = fs.open(Args.DEF_MAP_ID + ".RGN", "r");
rgnFile = new RGNFileReader(rgn);
}
Aggregations