Commit 815676b723db02a8b47e37923d457506222a4dc0
1 parent
4dd48d61
Exists in
master
and in
42 other branches
I have changed DD Time to DOY TIME
Showing
3 changed files
with
4 additions
and
4 deletions
Show diff stats
src/InputOutput/IHMImpl/Params/DownloadImpl/IHMInputOutputParamsDownloadClass.php
... | ... | @@ -50,8 +50,8 @@ class IHMInputOutputParamsDownloadClass extends IHMInputOutputParamsAbstractClas |
50 | 50 | case 'YYYY-MM-DDThh:mm:ss' : |
51 | 51 | $downloadNode->setTimeFormat(RequestOutputDownloadTimeFormatEnum::ISO); |
52 | 52 | break; |
53 | - case 'DD Time' : | |
54 | - $downloadNode->setTimeFormat(RequestOutputDownloadTimeFormatEnum::DDTIME); | |
53 | + case 'DOYTIME' : | |
54 | + $downloadNode->setTimeFormat(RequestOutputDownloadTimeFormatEnum::DOYTIME); | |
55 | 55 | break; |
56 | 56 | case 'Timestamp' : |
57 | 57 | $downloadNode->setTimeFormat(RequestOutputDownloadTimeFormatEnum::TIMESTAMP); | ... | ... |
src/InputOutput/IHMImpl/TimeTables/IHMInputOutputTTClass.php
... | ... | @@ -85,7 +85,7 @@ class IHMInputOutputTTClass implements InputOutputInterface |
85 | 85 | case 'YYYY-MM-DDThh:mm:ss' : |
86 | 86 | $processData->setOutputTimeFormat(TTRequestTimeFormatEnum::ISO); |
87 | 87 | break; |
88 | - case 'DD Time' : | |
88 | + case 'DOY TIME' : | |
89 | 89 | $processData->setOutputTimeFormat(TTRequestTimeFormatEnum::DDTIME); |
90 | 90 | break; |
91 | 91 | case 'Timestamp' : | ... | ... |
src/Request/ParamsRequestImpl/Nodes/Requests/RequestOutputDownloadNodeClass.php