diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4355945 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# Ignore PyCharm project files +.idea + +# Ignore Mac .DS_Store +.DS_Store + +# Ignore folders +__pycache__ +emit_utils.egg-info diff --git a/CHANGELOG.md b/CHANGELOG.md index 250093d..4191cc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. Dates are displayed in UTC. +#### [v1.3.4](https://github.com/emit-sds/emit-utils/compare/v1.3.3...v1.3.4) + +> 7 Oct 2025 + +* License update by @adamchlus in https://github.com/emit-sds/emit-utils/pull/18 + #### [v1.3.3](https://github.com/emit-sds/emit-utils/compare/v1.3.2...v1.3.3) > 24 June 2025 diff --git a/emit_utils/daac_converter.py b/emit_utils/daac_converter.py index 632df7f..42f2d9e 100644 --- a/emit_utils/daac_converter.py +++ b/emit_utils/daac_converter.py @@ -192,7 +192,7 @@ def makeGlobalAttrBase(nc_ds: netCDF4.Dataset): # nc_ds.processing_version = "V1.0" nc_ds.Conventions = "CF-1.63" nc_ds.institution = "NASA Jet Propulsion Laboratory/California Institute of Technology" - nc_ds.license = "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/" + nc_ds.license = "https://www.earthdata.nasa.gov/engage/open-data-services-software-policies/data-use-guidance" nc_ds.naming_authority = "LPDAAC" dt_now = datetime.now() nc_ds.date_created = dt_now.strftime("%Y-%m-%dT%H:%M:%SZ") diff --git a/setup.py b/setup.py index c0364fc..923dee2 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup(name='emit_utils', packages=find_packages(), include_package_data=True, - version='1.3.3', + version='1.3.4', install_requires=[ 'gdal>=2.0', 'spectral>=0.21',