Commit ba94157097b3ddf384abe97eb6ebc7087c0b4a9f
1 parent
b264ceef
Exists in
master
Move files in dataset_getter directory
Showing
3 changed files
with
1 additions
and
1 deletions
Show diff stats
resources/blacklist renamed to dataset_getter/blacklist
create_granules.py renamed to dataset_getter/create_granules.py
... | ... | @@ -36,7 +36,7 @@ GRANULE_KEYWORD = '/Granules/' |
36 | 36 | WORKING_DIR = op.dirname(op.abspath(__file__)) # current directory |
37 | 37 | SPASE_DIR = op.join(WORKING_DIR, 'DATA') # /!\ Double-check this : this directory will be recursively deleted. |
38 | 38 | LOG_FILE_PATH = op.join(WORKING_DIR, 'log', 'create_granules.log') |
39 | -BLACKLIST_PATH = op.join(WORKING_DIR, 'resources', 'blacklist') | |
39 | +BLACKLIST_PATH = op.join(WORKING_DIR, 'dataset_getter', 'blacklist') | |
40 | 40 | |
41 | 41 | LOG_FILE = open(LOG_FILE_PATH, 'w+') # Please set to None if you want to log in stdout instead of a file. |
42 | 42 | ... | ... |
nc_parser.py renamed to dataset_getter/nc_parser.py