I got errors when using GraphHopper Core v4 to importOrLoad

Hello, I got this error when using latest GraphHopper v.4.0

GraphHopper graphHopperOsm = new GraphHopper();
graphHopperOsm.setOSMFile(osmFile);
graphHopperOsm.setGraphHopperLocation(graphHopperLocation);

graphHopperOsm.setProfiles(
new Profile(“car”).setVehicle(“car”).setWeighting(“shortest”),
new Profile(“motorcycle”).setVehicle(“motorcycle”).setWeighting(“shortest”)
);

graphHopperOsm.getCHPreparationHandler().setCHProfiles(
new CHProfile(“car”),
new CHProfile(“motorcycle”)
);
graphHopperOsm.importOrLoad();

errors from this class com/graphhopper/reader/DataReader.
Anybody face this issue ?

Which error do yo get :smiley: ?

Is this Eclipse? First thing I would do is trying to start from the command line. To me this looks like your IDE’s cache is corrupted. The DataReader interface no longer exists in v4.

Yess that’s Eclipse. Yeah I’m so confused, why GraphHopper throw error like that.
Okey I will try to project clean, and my temp folder

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.