Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/packages/nisar/products/XML/L2/nisar_L2_GCOV.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<!-- product specification version is 1.4.0 -->
<!-- product specification version is 1.5.0 -->
<algorithm name="L2_GeocodedCovariance"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<product template="L2_GCOV_template">
Expand Down
2 changes: 1 addition & 1 deletion python/packages/nisar/products/XML/L2/nisar_L2_GSLC.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<!-- product specification version is 1.4.0 -->
<!-- product specification version is 1.5.0 -->
<algorithm name="L2_GeocodedSlc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<product template="L2_GSLC_template">
Expand Down
2 changes: 1 addition & 1 deletion python/packages/nisar/products/XML/L2/nisar_L2_STATIC.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<!-- product specification version is 1.4.0 -->
<!-- product specification version is 1.5.0 -->
<algorithm name="L2_StaticLayers"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<product template="L2_STATIC_template">
Expand Down
4 changes: 2 additions & 2 deletions python/packages/nisar/products/insar/InSAR_products_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import isce3

ISCE3_VERSION = isce3.__version__
PRODUCT_SPECIFICATION_VERSION = "1.4.0"
PRODUCT_SPECIFICATION_VERSION = "1.5.0"

@dataclass
class InSARProductsInfo:
Expand All @@ -15,7 +15,7 @@ class InSARProductsInfo:
Attributes
----------
ProductSpecificationVersion : str
Product specification version (default is '1.4.0')
Product specification version (default is '1.5.0')
ProductType : str
Product type, one of 'RIFG', 'ROFF', 'RUNW', 'GOFF', 'GUNW'
ProductLevel : str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def populate_identification_common(self):

self.set_value(
'identification/productSpecificationVersion',
'1.4.0')
'1.5.0')

self.copy_from_input(
'identification/lookDirection',
Expand Down
2 changes: 1 addition & 1 deletion python/packages/nisar/products/writers/SLC.py
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ def copy_identification(self, raw: Raw, *, track: int = 0, frame: int = 0,
has_input_data_exception: int = None,
is_urgent: Optional[bool] = None,
is_joint: Optional[bool] = None,
product_spec_version: str = "1.4.0",
product_spec_version: str = "1.5.0",
processing_center: str = "JPL",
granule_id: str = "None",
product_version: str = "0.1.0",
Expand Down
2 changes: 1 addition & 1 deletion python/packages/nisar/workflows/h5_prep.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def cp_geocode_meta(cfg, output_hdf5, dst):

# Assign product specification version
dst_h5[f'{ident_path}/productSpecificationVersion'] = \
np.bytes_('1.4.0')
np.bytes_('1.5.0')

# Assign granule ID
dst_h5[f'{ident_path}/granuleId'] = \
Expand Down
Loading