IGNF / route-graph-generator

Script collection used to generate routing data for Road2 (https://github.com/IGNF/road2)
https://ignf.github.io/route-graph-generator/
GNU General Public License v3.0
7 stars 3 forks source link

Remove of prefix _ for python file #12

Open jmkerloch opened 1 year ago

jmkerloch commented 1 year ago

@azarz @lgrd All python files are prefixed with _.

Is there any reason for that ?

I'm afraid this kind of naming could be misinterpreted by some parser. It may be better to remove all prefix.

azarz commented 1 year ago

It was because those files are "internal" / "private", and the methods in those modules shout not be imported when one writes

from r2gg import *

However if this causes errors in parsers, we can remove this prefix.