-
Notifications
You must be signed in to change notification settings - Fork 292
version 2 roadmap
Zhang Yunjun edited this page May 5, 2023
·
7 revisions
The mintpy version 2.0 in mind:
-
Use snake_case for all APIs, the rules are: snake_case for all functions and their arguments, the "_" can be omitted only if 1) it's a func argument, AND 2) the leading word can be abbreviated as one letter, e.g. fname, dname, xstep, etc. The incomplete list is as below:
readfile.read(fname, dname=None, xstep=1, ystep=1, dtype=None, no_data_values=None, verbose=True)
-
Use
verboseto replaceprint_msgas the arg name.