Skip to content

Commit

Permalink
updated product_summary_info function to latest fields returned by CM…
Browse files Browse the repository at this point in the history
…R (product_id --> title) (#218)
  • Loading branch information
jpswinski authored Sep 1, 2021
1 parent b5bba02 commit dc88afc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions icepyx/core/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ def product_summary_info(self):
--------
>>> reg_a = icepyx.query.Query('ATL06',[-55, 68, -48, 71],['2019-02-20','2019-02-28'])
>>> reg_a.product_summary_info()
product_id : ATLAS/ICESat-2 L3A Land Ice Height V002
title : ATLAS/ICESat-2 L3A Land Ice Height V002
short_name : ATL06
version_id : 002
time_start : 2018-10-14T00:00:00.000Z
Expand All @@ -580,7 +580,7 @@ def product_summary_info(self):
if not hasattr(self, "_about_product"):
self._about_product = is2ref.about_product(self._prod)
summ_keys = [
"product_id",
"title",
"short_name",
"version_id",
"time_start",
Expand Down

0 comments on commit dc88afc

Please sign in to comment.