Revision 376
(checked in by cbc, 14 years ago)
|
Rename config file to reflect platform location.
|
Line | |
---|
1 |
#!/usr/bin/env python |
---|
2 |
|
---|
3 |
"""Expand module config for mini_andi platform.""" |
---|
4 |
|
---|
5 |
import os |
---|
6 |
|
---|
7 |
ZIPDIR = "/seacoos/data/nccoos/level0/largo/mini_andi/zip" |
---|
8 |
XMLDIR = "/seacoos/data/nccoos/level0/largo/mini_andi/xml" |
---|
9 |
ZIPDIR_PATTERN = "[0-9][0-9][0-9][0-9]_[0-9][0-9]" |
---|
10 |
ZIPFILE_PATTERN = "[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]T" \ |
---|
11 |
"[0-9][0-9][0-9][0-9][0-9][0-9]-" \ |
---|
12 |
"[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]T" \ |
---|
13 |
"[0-9][0-9][0-9][0-9][0-9][0-9].zip" |
---|
14 |
XMLFILE_PATTERN = "[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]T" \ |
---|
15 |
"[0-9][0-9][0-9][0-9][0-9][0-9].xml" |
---|