Skip to content

Commit

Permalink
commented out the hard coded granule beginning/ending datetime
Browse files Browse the repository at this point in the history
  • Loading branch information
Yen, David (398B-Affiliate) committed Aug 2, 2023
1 parent 5e0ee55 commit d2e2e11
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,8 @@ private JSONObject exportTemporal() {
range.put("BeginningDateTime", TimeConversion.convertDate(granule.getStartTime()).toString());
range.put("EndingDateTime", TimeConversion.convertDate(granule.getStopTime()).toString());
//TODO hard coded value for testing. Remove them later:
range.put("BeginningDateTime", "2022-12-16T22:41:48.323Z");
range.put("EndingDateTime", "2022-12-17T19:30:21.553Z");
// range.put("BeginningDateTime", "2022-12-16T22:41:48.323Z");
// range.put("EndingDateTime", "2022-12-17T19:30:21.553Z");

temporal.put("RangeDateTime", range);
return temporal;
Expand Down

0 comments on commit d2e2e11

Please sign in to comment.